@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #071936;
  --navy-2: #0b2349;
  --blue: #0d4ed8;
  --blue-soft: #eaf1ff;
  --ice: #f7faff;
  --text: #0b1730;
  --muted: #607086;
  --line: #dfe7f3;
  --white: #ffffff;
  --success: #0f7b46;
  --error: #b42318;
  --shadow: 0 20px 60px rgba(7, 25, 54, 0.10);
  --soft-shadow: 0 10px 28px rgba(7, 25, 54, 0.07);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--ice);
  font-size: 15px;
  line-height: 1.55;
}

a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.header {
  height: 72px;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(7, 25, 54, 0.055);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 210px;
  max-height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  transition: color .2s ease;
}

.nav a:hover { color: var(--blue); }

.header-cta {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(13, 78, 216, .18);
}

.menu-toggle { display: none; }

.section {
  position: relative;
  padding: 64px 0;
}

.hero {
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 0% 68%, rgba(13, 78, 216, 0.07), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(13, 78, 216, 0.09), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.background-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13, 78, 216, 0.06);
  background: rgba(13, 78, 216, 0.04);
  pointer-events: none;
}

.orb-left { width: 500px; height: 500px; left: -290px; bottom: -190px; }
.orb-right { width: 450px; height: 450px; right: -170px; top: -185px; }

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 62px;
}

.pill,
.small-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #dce8ff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  color: var(--navy);
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
}

.image-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid rgba(223, 231, 243, 0.9);
  box-shadow: var(--shadow);
  background-color: #e8edf5;
  overflow: hidden;
}

.hero-image {
  min-height: 400px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.08)),
    url("assets/hero-clinic-reception.jpg") center/cover;
}

.clinic-image {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.08)),
    url("assets/lead-dashboard.jpg") center/cover;
}



.trust-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  align-items: center;
  max-width: 560px;
}

.trust-row div {
  padding: 0 24px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.trust-row div:first-child { padding-left: 0; }
.trust-row div:last-child { border-right: 0; }

.mini-icon,
.feature-icon,
.package-icon { color: var(--blue); }

.trust-row strong {
  font-size: 12.5px;
  color: var(--navy);
}

.about-section {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-copy h2,
.section-title h2,
.contact-info h2 {
  position: relative;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(31px, 3.35vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.about-copy h2::after,
.section-title.compact h2::after,
.contact-info h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--blue);
}

.large-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-row article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 22px rgba(7,25,54,.045);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--blue-soft);
  font-size: 18px;
}

.feature-row h3 {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--navy);
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.packages-section {
  padding-top: 54px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 50% 0%, rgba(13,78,216,.055), transparent 32%),
    #ffffff;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title.compact h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.06em;
}

.section-title.compact h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: #bdd1ff;
  box-shadow: var(--shadow);
}

.package-card.featured {
  border-color: rgba(13,78,216,.35);
  box-shadow: 0 22px 64px rgba(13,78,216,.12);
}

.popular {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.package-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.package-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--blue-soft);
  font-weight: 900;
  font-size: 20px;
}

.package-card h3 {
  margin-bottom: 3px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.subtitle {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.highlight {
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
  font-size: 16px;
}

.package-card p:not(.subtitle):not(.highlight) {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14.5px;
}

.package-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 650;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 900;
}

.package-card a {
  margin-top: auto;
  display: block;
  padding: 12px 14px;
  border: 1px solid #b9ccff;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  transition: background .2s ease, color .2s ease;
}

.package-card a:hover {
  background: var(--navy);
  color: white;
}

.contact-section {
  padding: 58px 0 66px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.contact-info p {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 750;
}

.contact-form {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 12px;
}

label span { display: none; }

input,
textarea {
  width: 100%;
  border: 1px solid #cfd7e6;
  border-radius: 10px;
  background: #fff;
  padding: 12px 13px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 78, 216, 0.12);
}

.contact-form button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.contact-form button span { float: right; }

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.footer {
  padding: 24px 18px;
  text-align: center;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer p { margin: 0; }

.cookie-btn {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    border: 0;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(13, 78, 216, 0.25);
}

@media (max-width: 1020px) {
  .header {
    grid-template-columns: auto auto;
    height: 70px;
  }

  .logo img {
    width: 190px;
  }

  .header-cta { display: none; }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    justify-self: end;
    width: 42px;
    height: 40px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
  }

  .menu-toggle span {
    height: 2px;
    background: var(--navy);
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .nav a:hover { background: var(--blue-soft); }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-image {
  min-height: 400px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.08)),
    url("assets/hero-clinic-reception.jpg") center/cover;
}

  .feature-row,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  body { font-size: 14px; }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 46px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .logo img {
    width: 168px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -0.065em;
  }

  .hero-copy > p,
  .large-copy,
  .contact-info p {
    font-size: 15.5px;
  }

  .about-copy h2,
  .section-title h2,
  .contact-info h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .image-card {
    min-height: 250px;
    border-radius: 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-row div,
  .trust-row div:first-child {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .package-card {
    padding: 24px;
  }

  .package-top {
    margin-bottom: 20px;
  }

  .popular {
    position: static;
    width: max-content;
    margin-bottom: 12px;
  }
}

@media (max-width: 420px) {
  .header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo img {
    width: 148px;
  }

  h1 {
    font-size: 40px;
  }

  .pill,
  .small-label {
    font-size: 10px;
  }
}


/* Final screenshot-matching polish */
.header {
  height: 84px;
  box-shadow: 0 7px 22px rgba(7, 25, 54, 0.045);
}

.logo img {
  width: 220px;
  max-height: 62px;
}

.nav a {
  position: relative;
  font-size: 14px;
}

.nav a:first-child::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -18px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
}

.header-cta {
  padding: 13px 24px;
  border-radius: 11px;
  background: #0d4ed8;
}

.hero {
  padding-top: 44px;
  padding-bottom: 34px;
}

.hero-grid {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
}

.pill {
  font-size: 13px;
  padding: 9px 16px;
}

h1 {
  max-width: 560px;
  font-size:56px;
  line-height: 0.98;
  letter-spacing: -0.085em;
}

h1 span {
  color: var(--blue);
  display: inline-block;
}

.hero-copy > p {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.45;
}

.trust-row {
  max-width: 540px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-row div {
  padding: 0 24px;
}

.mini-icon {
  font-size: 26px;
}

.trust-row strong {
  font-size: 14px;
}

.image-card {
  border-radius: 20px;
}

.hero-image {
  min-height: 505px;
  background-position: center;
}

.about-section {
  padding-top: 28px;
  padding-bottom: 46px;
  background: linear-gradient(180deg, #f7faff, #ffffff);
}

.about-grid {
  grid-template-columns: 0.98fr 1.02fr;
  gap: 56px;
}

.clinic-image {
  min-height: 380px;
  background-position: center;
}

.about-copy h2 {
  font-size: clamp(36px, 3.7vw, 54px);
  max-width: 560px;
}

.large-copy {
  font-size: 17px;
  line-height: 1.55;
}

.feature-row {
  gap: 20px;
}

.feature-row article {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
}

.feature-icon {
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.packages-section {
  padding-top: 68px;
}

.section-title.compact h2 {
  font-size: clamp(38px, 4.1vw, 58px);
}

.package-card {
  min-height: 385px;
}

@media (max-width: 1020px) {
  .header {
    height: 72px;
  }

  .nav a:first-child::after {
    display: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-image {
    order: -1;
    min-height: 420px;
  }

  .clinic-image {
    min-height: 340px;
  }

  h1 {
    font-size: 48px;
  }
}

@media (max-width: 680px) {
  .logo img {
    width: 170px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-image,
  .clinic-image {
    min-height: 260px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .logo img {
    width: 150px;
  }

  .hero-image,
  .clinic-image {
    min-height: 230px;
  }
}


/* Package card refinement */
.package-grid {
  gap: 26px;
  align-items: stretch;
}

.package-card {
  min-height: 410px;
  padding: 34px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,253,255,0.98));
  border: 1px solid rgba(191, 207, 235, 0.78);
  box-shadow: 0 20px 55px rgba(7, 25, 54, 0.07);
}

.package-card.featured {
  border: 1px solid rgba(13, 78, 216, 0.28);
  box-shadow:
    0 28px 70px rgba(13, 78, 216, 0.11),
    inset 0 0 0 1px rgba(13, 78, 216, 0.04);
  background:
    radial-gradient(circle at 86% 0%, rgba(13, 78, 216, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f9fbff);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 78, 216, 0.36);
}

.package-top {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.package-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, #f8fbff, #e7efff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(13, 78, 216, 0.06);
}

.package-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  display: block;
}

.package-card h3 {
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 15px;
  color: #5f6f86;
}

.highlight {
  margin-top: 4px;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.3;
}

.package-card > p:not(.subtitle):not(.highlight) {
  color: #5d6c82;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.package-card ul {
  gap: 14px;
  margin-bottom: 28px;
}

.package-card li {
  font-size: 15.5px;
  font-weight: 800;
  color: #071936;
  padding-left: 30px;
}

.package-card li::before {
  width: 18px;
  text-align: center;
  font-size: 18px;
  top: -3px;
}

.package-card a {
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(13, 78, 216, 0.24);
  background: rgba(255,255,255,.82);
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(13, 78, 216, 0.03);
}

.package-card a:hover {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-color: transparent;
}

.popular {
  top: 0;
  right: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0d4ed8;
  font-size: 13px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 22px rgba(13, 78, 216, 0.10);
}

@media (max-width: 1020px) {
  .package-grid {
    gap: 18px;
  }

  .package-card {
    min-height: auto;
    padding: 28px;
  }

  .package-top {
    grid-template-columns: 60px 1fr;
  }

  .package-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .package-icon svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 680px) {
  .package-card {
    padding: 24px;
    border-radius: 22px;
  }

  .package-top {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .package-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .package-icon svg {
    width: 24px;
    height: 24px;
  }

  .package-card h3 {
    font-size: 22px;
  }

  .highlight {
    font-size: 17px;
  }

  .popular {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }
}


/* Web3Forms + marketing logo polish */
.logo img {
  width: 238px;
  max-height: 64px;
}

.form-fallback {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-fallback a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 680px) {
  .logo img {
    width: 184px;
  }
}

@media (max-width: 420px) {
  .logo img {
    width: 160px;
  }
}


/* Launch polish: FAQ, legal pages, thank-you page, footer links, consent */
.faq-section { background: #ffffff; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 25, 54, 0.055);
}

.faq-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.035em;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.consent-row span { display: block; }
.consent-row a { color: var(--blue); font-weight: 800; }

.response-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12.5px;
}

.footer { gap: 14px; }

.footer-links {
  display: inline-flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.legal-page,
.thank-you-page {
  background: linear-gradient(180deg, #f7faff, #ffffff);
  min-height: calc(100vh - 160px);
  padding: 72px 0;
}

.legal-container {
  max-width: 880px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-container h1,
.thank-you-card h1 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.legal-container h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
}

.legal-container p,
.legal-container a {
  color: var(--muted);
}

.legal-updated { margin-bottom: 28px; }

.thank-you-card {
  max-width: 820px;
  text-align: center;
  padding: 58px 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.thank-icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 34px;
  font-weight: 900;
}

.thank-you-card p:not(.small-label) {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 18px;
}

.thank-actions {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.secondary-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
  .legal-container,
  .thank-you-card { padding: 30px 22px; }
}

/* FAQ teaser */
.faq-teaser-card{
  text-align:center;
  padding:48px 32px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}

.faq-teaser-card h2{
  margin:12px 0;
}

.faq-teaser-card p{
  max-width:700px;
  margin:0 auto 24px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  padding: 16px;
  background: rgba(7, 25, 54, 0.08);
  backdrop-filter: blur(8px);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-content {
  width: min(1040px, calc(100% - 24px));
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(7, 25, 54, 0.18);
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-content a {
  color: var(--blue);
  font-weight: 800;
}

#acceptCookies {
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  padding: 11px 20px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 10px;
  }

  .cookie-content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btn {
    width: 100%;
  }
}
