    :root {
      --navy: #213246;
      --navy-soft: #30445b;
      --cream: #f9f4f4;
      --white: #ffffff;
      --taupe: #b6a9a8;
      --rose: #a37276;
      --ink: #263a50;
      --muted: #6f7985;
      --line: #e8dfdf;
      --shadow: 0 18px 52px rgba(33, 50, 70, 0.10);
      --radius: 12px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--cream);
      color: var(--navy);
      font-family: "Assistant", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    img { display: block; max-width: 100%; }
    :focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

    .skip-link {
      position: fixed;
      top: 10px;
      right: 12px;
      z-index: 200;
      padding: 10px 16px;
      border-radius: 8px;
      color: var(--white);
      background: var(--navy);
      transform: translateY(-160%);
    }
    .skip-link:focus { transform: translateY(0); }
    .container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
    .section { padding: 96px 0; scroll-margin-top: 86px; }
    .section.white { background: var(--white); }
    .section.cream { background: var(--cream); }
    .section.navy { background: var(--navy); color: var(--white); }
    .section-title {
      max-width: 780px;
      margin: 0;
      font-size: clamp(30px, 3.2vw, 42px);
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .section-lead {
      max-width: 760px;
      margin: 18px 0 0;
      color: var(--ink);
      font-size: 19px;
      line-height: 1.75;
    }
    .eyebrow {
      margin: 0 0 16px;
      color: var(--rose);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
    }
    .nav-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      min-width: 225px;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 3px;
      line-height: 1.1;
    }
    .brand-logo, .brand img { display: none !important; }
    .brand-name {
      color: var(--navy);
      font-size: 20px;
      font-weight: 700;
    }
    .brand-description {
      color: var(--navy-soft);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }
    .nav-links { display: flex; align-items: center; gap: 25px; }
    .nav-links a { font-size: 14px; transition: color 180ms ease; }
    .nav-links a:hover { color: var(--rose); }
    .nav-cta, .btn-primary, .btn-form {
      border: 1px solid var(--navy);
      border-radius: 9px;
      color: var(--white);
      background: var(--navy);
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .nav-cta { padding: 10px 20px; white-space: nowrap; font-size: 14px; }
    .nav-cta:hover, .btn-primary:hover, .btn-form:hover {
      background: var(--navy-soft);
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(33, 50, 70, 0.16);
    }
    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      padding: 10px;
      border: 0;
      border-radius: 8px;
      background: transparent;
    }
    .menu-button span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); }
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 82px 0 auto;
      z-index: 99;
      padding: 14px 24px 22px;
      border-bottom: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .mobile-menu.open { display: grid; }
    .mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }

    .hero { padding: 74px 0 60px; }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
      align-items: center;
      gap: clamp(44px, 6vw, 86px);
    }
    .hero h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.06;
      font-weight: 700;
      letter-spacing: -0.035em;
    }
    .hero-support { max-width: 700px; margin: 24px 0 0; color: var(--ink); font-size: 20px; line-height: 1.75; }
    .hero-diff { margin: 16px 0 0; font-size: 17px; font-weight: 700; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
    .btn-primary, .btn-secondary { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 24px; }
    .btn-secondary {
      border: 1px solid var(--navy);
      border-radius: 9px;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      transition: background 180ms ease, transform 180ms ease;
    }
    .btn-secondary:hover { background: #f3ecec; transform: translateY(-1px); }
    .hero-photo-wrap { position: relative; width: min(100%, 360px); justify-self: center; }
    .hero-photo-wrap::before {
      content: "";
      position: absolute;
      inset: 28px -22px -22px 28px;
      z-index: 0;
      border-radius: var(--radius);
      background: var(--rose);
      opacity: 0.24;
    }
    .hero-photo { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 675 / 804; border-radius: var(--radius); box-shadow: var(--shadow); }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
    .trust-line { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--ink); font-size: 18px; line-height: 1.55; }
    .trust-line span { position: relative; padding-right: 15px; }
    .trust-line span::before { content: ""; position: absolute; right: 0; top: 0.72em; width: 5px; height: 5px; border-radius: 50%; background: var(--rose); }

    .trust-strip { padding: 48px 0; border-block: 1px solid var(--line); background: var(--white); }
    .trust-title { margin: 0 0 30px; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.2; }
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .trust-item { display: flex; align-items: flex-start; gap: 14px; }
    .trust-number { color: var(--rose); font-size: 18px; font-weight: 700; }
    .trust-label { color: var(--ink); font-size: 17px; line-height: 1.55; }

    .cards-three, .cards-two { display: grid; gap: 24px; margin-top: 46px; }
    .cards-three { grid-template-columns: repeat(3, 1fr); }
    .cards-two { grid-template-columns: repeat(2, 1fr); }
    .card, .service-card, .case-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 10px 30px rgba(33, 50, 70, 0.035);
    }
    .card { padding: 32px 28px; }
    .card-number { margin-bottom: 12px; color: var(--rose); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
    .card-title, .service-title, .case-title { margin: 0; line-height: 1.3; font-weight: 700; }
    .card-title { font-size: 20px; }
    .card-body { margin: 12px 0 0; color: var(--ink); font-size: 15px; }

    .service-card { display: flex; flex-direction: column; padding: 35px 30px; }
    .service-title { font-size: 22px; }
    .service-body { margin: 14px 0 18px; color: var(--ink); }
    .service-list { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
    .service-list li { position: relative; padding-right: 16px; color: var(--ink); font-size: 14px; }
    .service-list li::before { content: ""; position: absolute; right: 0; top: 0.7em; width: 5px; height: 5px; border-radius: 50%; background: var(--rose); }
    .service-result { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 600; }
    .service-link { align-self: flex-start; margin-top: 22px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--navy); font-weight: 700; }

    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 48px; }
    .process-number { color: var(--taupe); font-size: 44px; font-weight: 300; line-height: 1; }
    .process-title { margin: 14px 0 8px; font-size: 20px; }
    .process-body { margin: 0; color: var(--ink); font-size: 15px; }

    .about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 62px; align-items: start; margin-top: 42px; }
    .about-text p { margin: 0 0 17px; color: var(--ink); font-size: 17px; line-height: 1.85; }
    .about-accent { padding: 38px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
    .about-circles { display: flex; align-items: center; gap: 12px; }
    .about-circles span { display: block; border-radius: 50%; background: var(--rose); }
    .about-quote { margin: 28px 0 0; font-size: 24px; font-weight: 700; line-height: 1.4; }

    .case-card { padding: 32px 28px; }
    .case-label { margin-bottom: 10px; color: var(--rose); font-size: 13px; font-weight: 700; }
    .case-title { margin-bottom: 20px; font-size: 20px; }
    .case-section { margin-top: 15px; }
    .case-section h4 { margin: 0 0 5px; font-size: 14px; }
    .case-section p { margin: 0; color: var(--ink); font-size: 14px; }
    .case-section.result { padding-top: 15px; border-top: 1px solid var(--line); }

    .faq-list { max-width: 880px; margin-top: 42px; }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 23px 0; border: 0; background: transparent; color: var(--navy); text-align: right; font-weight: 700; }
    .faq-icon {
      position: relative;
      width: 30px;
      height: 30px;
      display: block;
      flex: 0 0 auto;
      overflow: hidden;
      border: 1px solid var(--taupe);
      border-radius: 50%;
      color: transparent;
      font-size: 0;
      transition: transform 180ms ease, color 180ms ease, background 180ms ease;
    }
    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      border-radius: 2px;
      background: var(--navy);
    }
    .faq-icon::before {
      width: 12px;
      height: 2px;
      top: 13px;
      left: 8px;
    }
    .faq-icon::after {
      width: 2px;
      height: 12px;
      top: 8px;
      left: 13px;
    }
    .faq-button[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--white); background: var(--navy); }
    .faq-button[aria-expanded="true"] .faq-icon::before,
    .faq-button[aria-expanded="true"] .faq-icon::after { background: var(--white); }
    .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { max-width: 780px; margin: 0; padding: 0 0 23px; color: var(--ink); }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }

    .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 78px; }
    .contact-title { margin: 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.18; }
    .contact-text { margin: 18px 0 24px; color: rgba(255, 255, 255, 0.84); font-size: 17px; }
    .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
    .contact-action { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border: 1px solid rgba(255, 255, 255, 0.74); border-radius: 9px; color: var(--white); font-weight: 700; }
    .contact-action.light { color: var(--navy); background: var(--white); }
    .contact-details { display: grid; gap: 9px; color: rgba(255, 255, 255, 0.88); font-size: 14px; }
    .contact-details a { text-decoration: underline; text-underline-offset: 3px; }
    .form-field { margin-bottom: 17px; }
    .form-label { display: block; margin-bottom: 6px; color: rgba(255, 255, 255, 0.9); font-size: 13px; font-weight: 700; }
    .required { color: #efbec1; }
    .form-control { width: 100%; padding: 13px 14px; border: 1px solid transparent; border-radius: 8px; outline: none; color: var(--navy); background: var(--white); }
    .form-control:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(163, 114, 118, 0.24); }
    textarea.form-control { min-height: 108px; resize: vertical; }
    .field-error { min-height: 18px; margin-top: 4px; color: #ffd7da; font-size: 12px; }
    .btn-form { width: 100%; min-height: 50px; border-color: var(--white); color: var(--navy); background: var(--white); }
    .btn-form:hover { color: var(--white); }
    .form-note { margin: 12px 0 0; color: rgba(255, 255, 255, 0.67); text-align: center; font-size: 12px; }
    .consent-check {
      display: grid;
      grid-template-columns: 20px 1fr;
      align-items: start;
      gap: 9px;
      margin: 2px 0 17px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      line-height: 1.55;
      cursor: pointer;
    }
    .consent-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--rose); }
    .form-success { display: none; margin-top: 16px; padding: 18px; border-radius: 9px; color: var(--navy); background: var(--white); text-align: center; }
    .form-success.visible { display: block; }
    .form-success strong { display: block; margin-bottom: 4px; }
    .form-error-message { margin-top: 16px; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 9px; color: var(--white); background: rgba(255, 255, 255, 0.1); text-align: center; }
    .form-error-message[hidden] { display: none; }
    .btn-form:disabled { cursor: wait; opacity: 0.72; transform: none; box-shadow: none; }

    .footer { padding: 42px 0; border-top: 1px solid var(--line); background: var(--white); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      line-height: 1.2;
    }
    .footer-logo, .footer-brand img, .footer-line-two { display: none !important; }
    .footer-brand-name { color: var(--navy); font-size: 20px; font-weight: 700; }
    .footer-brand-description { color: var(--muted); font-size: 13px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; color: var(--muted); font-size: 13px; }
    .footer-links a:hover { color: var(--rose); }
    .link-button { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
    .link-button:hover { color: var(--rose); }

    .cookie-banner {
      position: fixed;
      right: 20px;
      bottom: 20px;
      left: 20px;
      z-index: 300;
      display: none;
      width: min(760px, calc(100% - 40px));
      margin-inline: auto;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--navy);
      background: var(--white);
      box-shadow: 0 20px 60px rgba(33, 50, 70, 0.24);
    }
    .cookie-banner.visible { display: block; }
    .cookie-title { margin: 0 0 6px; font-size: 18px; }
    .cookie-text { margin: 0; color: var(--ink); font-size: 14px; }
    .cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
    .cookie-button { min-height: 42px; padding: 9px 15px; border: 1px solid var(--navy); border-radius: 8px; color: var(--navy); background: var(--white); font-weight: 700; }
    .cookie-button.primary { color: var(--white); background: var(--navy); }
    .cookie-settings { display: none; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
    .cookie-settings.visible { display: block; }
    .cookie-choice { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 9px 0; }
    .cookie-choice strong { display: block; }
    .cookie-choice span { display: block; color: var(--muted); font-size: 12px; }
    .cookie-choice input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--rose); }

    .policy-dialog { width: min(680px, calc(100% - 32px)); max-height: 82vh; padding: 0; border: 0; border-radius: 12px; color: var(--navy); background: var(--white); box-shadow: var(--shadow); }
    .policy-dialog::backdrop { background: rgba(33, 50, 70, 0.68); }
    .policy-inner { padding: 28px; }
    .policy-inner h2 { margin: 0 0 16px; }
    .policy-inner h3 { margin: 22px 0 7px; font-size: 17px; }
    .policy-inner p { margin: 0 0 10px; color: var(--ink); }
    .policy-close { float: left; min-height: 40px; padding: 8px 14px; border: 1px solid var(--navy); border-radius: 8px; color: var(--navy); background: var(--white); font-weight: 700; }

    @media (max-width: 1040px) {
      .nav-links, .nav-cta { display: none; }
      .menu-button { display: block; }
      .hero-grid { grid-template-columns: 1fr 0.58fr; gap: 42px; }
      .hero h1 { font-size: 46px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .cards-three { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 760px) {
      html { scroll-padding-top: 76px; }
      body { overflow-x: hidden; font-size: 16px; line-height: 1.65; }
      .container { width: calc(100% - 32px); max-width: 100%; }
      .section { padding: 60px 0; scroll-margin-top: 76px; }
      .section-title { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.2; }
      .section-lead { margin-top: 14px; font-size: 17px; line-height: 1.7; }
      .eyebrow { margin-bottom: 12px; font-size: 13px; line-height: 1.5; }
      .nav { backdrop-filter: blur(10px); }
      .nav-inner { min-height: 76px; gap: 12px; }
      .brand { min-width: 0; }
      .brand-name { font-size: 18px; }
      .brand-description { font-size: 11.5px; line-height: 1.35; }
      .menu-button { width: 48px; height: 48px; flex: 0 0 48px; }
      .mobile-menu { inset-block-start: 76px; max-height: calc(100dvh - 76px); overflow-y: auto; padding: 10px 16px 18px; }
      .mobile-menu a { min-height: 48px; display: flex; align-items: center; padding: 12px 2px; }
      .hero { padding: 40px 0 48px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero h1 { max-width: 100%; font-size: clamp(34px, 10.4vw, 44px); line-height: 1.08; }
      .hero-support { margin-top: 18px; font-size: 18px; line-height: 1.65; }
      .hero-diff { margin-top: 13px; font-size: 16px; line-height: 1.55; }
      .hero-actions { margin-top: 26px; }
      .btn-primary, .btn-secondary { min-height: 52px; padding: 13px 18px; }
      .trust-line { display: grid; gap: 9px; margin-top: 24px; font-size: 17px; }
      .trust-line span { padding-right: 14px; }
      .hero-photo-wrap { width: min(88%, 350px); margin-top: 0; }
      .hero-photo-wrap::before { inset: 18px -12px -12px 18px; }
      .trust-strip { padding: 38px 0; }
      .trust-title { margin-bottom: 22px; font-size: clamp(28px, 8.4vw, 36px); }
      .trust-grid { gap: 18px; }
      .trust-item { gap: 12px; }
      .cards-three, .cards-two { margin-top: 32px; gap: 18px; }
      .cards-two, .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .card, .service-card, .case-card { padding: 27px 22px; }
      .card-title, .case-title { font-size: 19px; }
      .service-title { font-size: 21px; }
      .service-body { margin-top: 12px; }
      .process-grid { margin-top: 34px; gap: 28px 20px; }
      .process-number { font-size: 38px; }
      .process-title { margin-top: 10px; font-size: 19px; }
      .about-grid, .contact-grid { gap: 34px; margin-top: 32px; }
      .about-text p { font-size: 16px; line-height: 1.8; }
      .about-accent { padding: 29px 23px; }
      .about-circles { gap: 8px; }
      .about-quote { margin-top: 22px; font-size: 22px; }
      .faq-list { margin-top: 28px; }
      .faq-button { min-height: 64px; gap: 14px; padding: 18px 0; font-size: 16px; line-height: 1.45; }
      .faq-icon { width: 30px; height: 30px; }
      .faq-answer p { padding-bottom: 20px; font-size: 15px; line-height: 1.7; }
      .contact-title { font-size: 34px; }
      .contact-text { font-size: 16px; line-height: 1.7; }
      .contact-action { min-height: 52px; }
      .form-control { min-height: 50px; padding: 13px 14px; font-size: 16px; }
      textarea.form-control { min-height: 120px; }
      .consent-check { grid-template-columns: 22px 1fr; gap: 10px; font-size: 13px; }
      .consent-check input { width: 20px; height: 20px; }
      .btn-form { min-height: 52px; }
      .footer { padding: 34px 0; }
      .footer-inner, .footer-brand { align-items: flex-start; }
      .footer-inner { flex-direction: column; gap: 24px; }
      .footer-links { gap: 14px 18px; line-height: 1.6; }
      .policy-dialog { width: calc(100% - 24px); max-height: 88dvh; }
      .policy-inner { padding: 22px 18px; }
      .policy-close { min-height: 44px; }
    }
    @media (max-width: 520px) {
      .container { width: calc(100% - 28px); }
      .section { padding: 54px 0; }
      .nav-inner { min-height: 72px; }
      .mobile-menu { inset-block-start: 72px; max-height: calc(100dvh - 72px); }
      .brand-name { font-size: 17px; }
      .brand-description { font-size: 11px; }
      .hero { padding: 34px 0 44px; }
      .hero h1 { font-size: clamp(32px, 10.2vw, 38px); }
      .hero-support { font-size: 17px; }
      .hero-actions, .contact-actions { display: grid; }
      .btn-primary, .btn-secondary, .contact-action { width: 100%; }
      .trust-grid, .process-grid { grid-template-columns: 1fr; }
      .process-grid { gap: 26px; }
      .card, .service-card, .case-card { padding: 25px 20px; }
      .brand { max-width: calc(100% - 58px); }
      .hero-photo-wrap { width: min(90%, 330px); }
      .about-accent { padding: 26px 20px; }
      .about-circles span:nth-child(4) { width: 46px !important; height: 46px !important; }
      .contact-grid { gap: 30px; }
      .cookie-banner { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; width: calc(100% - 20px); max-height: calc(100dvh - 20px); overflow-y: auto; padding: 17px; }
      .cookie-actions { display: grid; }
      .cookie-button { width: 100%; min-height: 46px; }
      .cookie-choice { gap: 12px; }
      .footer-brand-description { font-size: 12px; }
    }
    @media (max-width: 360px) {
      .container { width: calc(100% - 24px); }
      .brand-description { font-size: 10px; }
      .menu-button { width: 44px; height: 44px; flex-basis: 44px; }
      .hero h1 { font-size: 30px; }
      .section-title { font-size: 27px; }
      .card, .service-card, .case-card { padding: 23px 18px; }
      .about-circles { gap: 6px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    }

/* Supporting pages and Netlify form protection */
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.legal-page { min-height: 100vh; background: var(--cream); }
.legal-header { border-bottom: 1px solid var(--line); background: var(--white); }
.legal-nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-main { padding: 72px 0 96px; }
.legal-content { max-width: 880px; }
.legal-content h1 { margin: 0 0 36px; font-size: clamp(34px, 5vw, 54px); line-height: 1.1; }
.legal-content h2 { margin: 36px 0 10px; font-size: 24px; line-height: 1.3; }
.legal-content p, .legal-content li { color: var(--ink); font-size: 17px; line-height: 1.85; }
.legal-content ul { padding-right: 22px; }
.legal-content li { margin: 7px 0; }
.legal-updated { margin-top: 44px; color: var(--muted) !important; font-size: 14px !important; }
.thank-you-box { max-width: 760px; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.thank-you-box p { margin-bottom: 28px; }
@media (max-width: 760px) {
  .legal-nav { min-height: 76px; }
  .legal-nav .btn-secondary { padding: 10px 14px; font-size: 14px; }
  .legal-main { padding: 52px 0 70px; }
  .legal-content h1 { margin-bottom: 28px; }
  .legal-content h2 { margin-top: 30px; font-size: 22px; }
  .legal-content p, .legal-content li { font-size: 16px; }
  .thank-you-box { padding: 30px 22px; }
}
