@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1f23;
  --muted: #5a6570;
  --accent: #2b6cb0;
  --accent-soft: #e5f1ff;
  --surface: #f7f6f2;
  --surface-deep: #eef0f4;
  --shadow: rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 6%;
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  background: #ffe8d6;
  color: #4a2e1b;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 10px 20px var(--shadow);
  z-index: 10;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--surface);
}

.section.deep {
  background: var(--surface-deep);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfd8e3;
  color: #0f172a;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7dde6;
  color: #0f172a;
}

.section-title {
  font-size: 32px;
  margin: 0 0 12px 0;
}

.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 0;
}

.hero {
  background: #ffffff;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.cta-btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.img-frame {
  background: #d8dee6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px var(--shadow);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  font-size: 15px;
  font-family: inherit;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  background: #ffffff;
}

.footer {
  padding: 40px 6%;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #cbd5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #f9fafb;
  padding: 18px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #22c55e;
  color: #0f172a;
}

.cookie-btn.reject {
  background: transparent;
  border: 1px solid #94a3b8;
  color: #e2e8f0;
}

.page-hero {
  padding: 48px 6%;
  background: #f8fafc;
}

.two-col {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 22px var(--shadow);
}

.meta-line {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
