:root {
      --bg: #ffffff;
      --surface: #f6fbf8;
      --surface-strong: #eef8f3;
      --line: #d8e6de;
      --text: #13222d;
      --muted: #5c6a74;
      --accent: #12b981;
      --accent-dark: #0c8a61;
      --accent-button: #0e7b58;
      --accent-button-dark: #096f4e;
      --dark: #102132;
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 16px;
      --shadow: 0 18px 42px rgba(16, 33, 50, 0.08);
      --container: 1100px;
      --header-height: 82px;
      --header-cta-width: 214px;
      --lp-hero-grid-min-height: 650px;
      --lp-hero-min-height: 800px;
    }

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

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(18, 185, 129, 0.11), transparent 30%),
        linear-gradient(180deg, #fbfefd 0%, #ffffff 100%);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

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

    .skip-link {
      position: absolute;
      left: -999px;
      top: 0;
      background: var(--dark);
      color: #fff;
      padding: 12px 16px;
      border-radius: 0 0 12px 0;
      z-index: 100;
    }

    .skip-link:focus {
      left: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(216, 230, 222, 0.9);
    }

    .site-header-inner {
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      min-width: 0;
    }

    .brand-link {
      display: inline-flex;
      align-items: center;
    }

    .brand-logo {
      width: auto;
      height: 32px;
    }

    .header-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
    }

    .header-nav a {
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 400;
      white-space: nowrap;
    }

    .header-nav a:hover {
      color: var(--dark);
      text-decoration: underline;
    }

    .header-nav a.is-active,
    .header-nav a[aria-current="page"] {
      color: var(--dark);
      font-weight: 700;
    }

    .header-cta {
      flex: 0 0 var(--header-cta-width);
      width: var(--header-cta-width);
      margin-left: auto;
      white-space: nowrap;
    }

    .header-menu-toggle,
    .header-menu-panel {
      display: none;
    }

    .header-menu-toggle {
      flex: 0 0 auto;
      width: 52px;
      height: 52px;
      padding: 0;
      margin-left: auto;
      border: 1px solid rgba(16, 33, 50, 0.12);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.94);
      color: var(--dark);
      box-shadow: 0 12px 28px rgba(16, 33, 50, 0.08);
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .header-menu-toggle:hover,
    .header-menu-toggle:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(12, 138, 97, 0.28);
      box-shadow: 0 16px 32px rgba(16, 33, 50, 0.12);
      outline: none;
    }

    .header-menu-toggle-lines {
      display: inline-grid;
      gap: 5px;
    }

    .header-menu-toggle-lines span {
      display: block;
      width: 19px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.18s ease, opacity 0.18s ease;
      transform-origin: center;
    }

    .header-menu-toggle[aria-expanded="true"] .header-menu-toggle-lines span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .header-menu-toggle[aria-expanded="true"] .header-menu-toggle-lines span:nth-child(2) {
      opacity: 0;
    }

    .header-menu-toggle[aria-expanded="true"] .header-menu-toggle-lines span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .header-menu-panel {
      width: 100%;
      border: 1px solid rgba(216, 230, 222, 0.95);
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 248, 0.98) 100%);
      box-shadow: var(--shadow);
    }

    .header-menu-nav {
      display: grid;
      gap: 8px;
    }

    .header-menu-nav a {
      display: block;
      padding: 12px 14px;
      border-radius: 14px;
      color: var(--muted);
      font-size: 0.98rem;
      font-weight: 500;
      line-height: 1.35;
      transition: background-color 0.18s ease, color 0.18s ease;
    }

    .header-menu-nav a:hover,
    .header-menu-nav a:focus-visible {
      color: var(--dark);
      background: rgba(18, 185, 129, 0.08);
      outline: none;
    }

    .header-menu-nav a.is-active,
    .header-menu-nav a[aria-current="page"] {
      color: var(--dark);
      font-weight: 700;
      background: rgba(18, 185, 129, 0.1);
    }

    .header-menu-cta {
      width: 100%;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      max-width: 100%;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 1rem;
      line-height: 1;
      font-weight: 700;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      cursor: pointer;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .button-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--accent-button) 0%, var(--accent-button-dark) 100%);
      box-shadow: 0 18px 30px rgba(9, 111, 78, 0.24);
    }

    .button-primary:hover,
    .button-primary:focus-visible {
      box-shadow: 0 20px 34px rgba(9, 111, 78, 0.3);
    }

    .section {
      padding: 88px 0;
    }

    .hero {
      padding: 60px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 40px;
      align-items: stretch;
      min-height: 520px;
    }

    .hero-grid > *,
    .audience-grid > *,
    .cards > *,
    .steps > *,
    .about-top > *,
    .contact-grid > * {
      min-width: 0;
    }

    .eyebrow,
    .about-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(18, 185, 129, 0.1);
      color: #0b6b4b;
      font-weight: 800;
      font-size: 0.88rem;
      letter-spacing: 0.01em;
      margin-bottom: 18px;
    }

    .eyebrow::before,
    .about-eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(18, 185, 129, 0.14);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      letter-spacing: -0.04em;
      color: var(--dark);
    }

    h1 {
      font-size: clamp(2.35rem, 4.8vw, 4.2rem);
      line-height: 0.98;
      margin-bottom: 18px;
    }

    h2 {
      font-size: clamp(1.75rem, 3vw, 2.6rem);
      line-height: 1.02;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 1.2rem;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .hero-copy {
      font-size: 1.1rem;
      line-height: 1.68;
      color: var(--muted);
      margin: 0 0 26px;
    }

    .quick-list,
    .fit-list,
    .card-list,
    .about-trust-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .fit-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-list {
      margin-bottom: 28px;
      gap: 12px;
    }

    .quick-list li,
    .fit-list li,
    .card-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--dark);
      font-weight: 600;
    }

    .quick-list li::before,
    .fit-list li::before,
    .card-list li::before {
      content: "✓";
      flex: 0 0 auto;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(18, 185, 129, 0.12);
      color: #0b6b4b;
      font-weight: 800;
      font-size: 0.9rem;
      margin-top: 1px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .micro-copy {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--muted);
      font-weight: 600;
      max-width: 34ch;
    }

    .surface-card,
    .hero-card,
    .fit-box,
    .card,
    .steps,
    .faq,
    .cta-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .surface-card-soft {
      background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    }

    .hero-card {
      padding: 28px;
      display: grid;
      gap: 18px;
      background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    }

    .hero-card-top {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(18, 185, 129, 0.08);
      color: #0b6b4b;
      font-weight: 700;
      font-size: 0.88rem;
    }

    .partner-badge {
      width: auto;
      max-width: min(240px, 100%);
      height: auto;
    }

    .hero-card-copy,
    .card p,
    .step p,
    details p,
    .about-copy p,
    .contact-social p {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .hero-card-copy {
      font-size: 1.04rem;
    }

    .card p,
    .step p,
    details p,
    .contact-social p {
      font-size: 1.02rem;
    }

    .person-note {
      display: grid;
      gap: 4px;
      padding-top: 18px;
      border-top: 1px solid rgba(216, 230, 222, 0.9);
    }

    .person-note strong,
    .about-person strong {
      color: var(--dark);
      font-size: 1rem;
    }

    .person-note span,
    .about-person span {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.45;
    }

    .section-intro {
      max-width: 62ch;
      color: var(--muted);
      margin: 0 0 28px;
      font-size: 1.06rem;
      line-height: 1.68;
    }

    .section-head {
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
      max-width: 62ch;
    }

    .section-head h2 {
      margin: 0;
      max-width: none;
    }

    .section-head .section-intro {
      margin: 0;
    }

    .page-surface {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at top right, rgba(18, 185, 129, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fbfefd 56%, #eef8f3 100%);
      box-shadow: var(--shadow);
    }

    .page-surface::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -80px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(18, 185, 129, 0.12) 0%, rgba(18, 185, 129, 0) 72%);
      pointer-events: none;
    }

    .page-surface > * {
      position: relative;
      z-index: 1;
    }

    .fit-box {
      padding: 30px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
    }

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

    .card {
      padding: 28px;
      background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    }

    .steps {
      padding: 32px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .step {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(18, 185, 129, 0.12);
      color: #0b6b4b;
      font-weight: 800;
    }

    .faq {
      padding: 12px 26px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
    }

    details {
      border-bottom: 1px solid rgba(216, 230, 222, 0.85);
      padding: 16px 0;
    }

    details:last-of-type {
      border-bottom: 0;
    }

    summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--dark);
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(18, 185, 129, 0.1);
      color: #0b6b4b;
      font-size: 1.1rem;
      font-weight: 800;
    }

    details[open] summary::after {
      content: "–";
    }

    details p {
      margin-top: 14px;
      max-width: 62ch;
    }

    .about-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 28px;
      padding: 34px;
      background:
        radial-gradient(circle at top right, rgba(18, 185, 129, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f8fcfa 58%, #eef8f3 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .about-panel::after {
      content: "";
      position: absolute;
      right: -72px;
      bottom: -96px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(18, 185, 129, 0.14) 0%, rgba(18, 185, 129, 0) 72%);
      pointer-events: none;
    }

    .about-top,
    .about-copy,
    .about-trust {
      position: relative;
      z-index: 1;
    }

    .about-top {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 24px;
      align-items: start;
    }

    .about-copy {
      display: grid;
      gap: 28px;
      align-content: start;
    }

    .about-copy h2 {
      max-width: none;
      white-space: nowrap;
    }

    .about-copy p {
      margin: 0;
      max-width: 60ch;
      font-size: 1.08rem;
    }

    .about-trust {
      align-self: stretch;
      padding: 26px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(18, 185, 129, 0.16);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 14px 30px rgba(16, 33, 50, 0.08);
    }

    .about-proof {
      display: grid;
      gap: 18px;
      margin: 0;
    }

    .about-portrait {
      width: 100%;
      aspect-ratio: 5 / 4;
      border-radius: 24px;
      object-fit: cover;
      object-position: center 18%;
      box-shadow: 0 18px 34px rgba(16, 33, 50, 0.14);
    }

    .partner-badge-small {
      max-width: min(220px, 100%);
    }

    .about-person {
      margin: 0;
      display: grid;
      gap: 6px;
    }

    .about-person strong {
      font-size: 1.24rem;
      line-height: 1.15;
    }

    .about-person span {
      font-size: 0.98rem;
      line-height: 1.35;
    }

    .about-trust-grid {
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: about-points;
      display: grid;
      gap: 14px;
      max-width: 56ch;
    }

    .about-trust-grid li {
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.4;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(18, 185, 129, 0.12);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 12px 22px rgba(16, 33, 50, 0.05);
    }

    .about-trust-grid li::before {
      counter-increment: about-points;
      content: "0" counter(about-points);
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(18, 185, 129, 0.16) 0%, rgba(20, 64, 90, 0.12) 100%);
      color: #0b6b4b;
      font-size: 0.95rem;
      font-weight: 800;
    }

    .cta-panel {
      padding: 38px 34px;
      display: grid;
      justify-items: center;
      gap: 22px;
      background: linear-gradient(135deg, #102132 0%, #17364e 100%);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 54px rgba(16, 33, 50, 0.18);
      text-align: center;
    }

    .cta-panel h2,
    .cta-panel h3 {
      color: #fff;
      max-width: 18ch;
    }

    .cta-panel p {
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
      max-width: 52ch;
      font-size: 1.02rem;
      line-height: 1.72;
    }

    .cta-side {
      width: min(100%, 320px);
    }

    .cta-panel .button {
      width: 100%;
    }

    .site-footer {
      padding: 30px 0 48px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
    }

    .site-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
      border-top: 1px solid rgba(216, 230, 222, 0.9);
      padding-top: 22px;
    }

    .footer-meta {
      display: grid;
      gap: 10px;
    }

    .footer-contact-links,
    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      min-width: 0;
    }

    .footer-contact-links {
      font-weight: 700;
    }

    .footer-contact-links a {
      color: var(--dark);
    }

    .footer-contact-links a,
    .footer-links a {
      overflow-wrap: anywhere;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .about-top,
      .steps {
        grid-template-columns: 1fr;
      }

      .cta-side {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        padding-top: 4px;
      }

      .cards,
      .fit-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .site-header {
        position: static;
      }

      .header-nav {
        display: none;
      }

      .site-header-inner {
        min-height: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px 16px;
        padding: 18px 0 20px;
      }

      .hero {
        padding: 32px 0 68px;
      }

      .section {
        padding: 68px 0;
      }

      .brand {
        width: auto;
      }

      .header-cta {
        display: none;
      }

      .header-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .header-menu-panel {
        display: grid;
        grid-column: 1 / -1;
        gap: 16px;
        padding: 18px;
      }

      .header-menu-panel[hidden] {
        display: none;
      }

      .hero-grid {
        min-height: 0;
        gap: 24px;
      }

      .hero-card,
      .fit-box,
      .about-panel,
      .about-trust,
      .card,
      .steps,
      .faq,
      .cta-panel {
        border-radius: 22px;
      }

      .site-footer-inner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 14px;
      }

      .footer-contact-links,
      .footer-links {
        display: grid;
        gap: 8px;
        justify-items: start;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(var(--container), calc(100% - 28px));
      }

      h1 {
        font-size: clamp(2.1rem, 10vw, 3rem);
      }

      .hero-actions,
      .footer-contact-links {
        align-items: flex-start;
      }

      .hero-actions .button,
      .cta-panel .button {
        width: 100%;
      }

      .header-cta {
        width: min(100%, 240px);
      }

      .cta-panel {
        padding: 28px;
      }

      .about-panel {
        padding: 28px;
      }

      .about-trust {
        padding: 22px;
      }

      .about-copy h2 {
        white-space: normal;
      }
    }

    .button-secondary {
      background: transparent;
      color: var(--dark);
      border-color: rgba(16, 33, 50, 0.18);
      box-shadow: none;
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      box-shadow: none;
      border-color: rgba(16, 33, 50, 0.32);
    }

    .hero-compact {
      padding: 60px 0 40px;
    }

    .hero-lp {
      min-height: var(--lp-hero-min-height);
    }

    .hero-lp .hero-grid {
      min-height: var(--lp-hero-grid-min-height);
    }

    .hero-lp .hero-card {
      min-height: var(--lp-hero-grid-min-height);
      height: 100%;
      grid-template-rows: auto auto auto 1fr auto;
      align-content: start;
    }

    .hero-lp .person-note {
      margin-top: auto;
    }

    .hero-home {
      padding: 56px 0 44px;
    }

    .hero-home-stack {
      display: grid;
      justify-items: start;
      align-content: start;
    }

    .hero-actions-home {
      flex-wrap: wrap;
    }

    .section-tight {
      padding-top: 8px;
    }

    .narrow {
      width: min(1024px, calc(100% - 40px));
      margin: 0 auto;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      font-weight: 700;
      color: var(--dark);
    }

    .text-link:hover,
    .text-link:focus-visible {
      text-decoration: underline;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .audience-panel {
      padding: 42px;
      background: #ffffff;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: 1px solid rgba(216, 230, 222, 0.9);
    }

    .audience-panel-dark {
      background: #102132;
      color: #eff6f3;
      border-color: rgba(255, 255, 255, 0.08);
    }

    .audience-panel-dark h2 {
      color: #ffffff;
    }

    .audience-panel-dark .button-secondary {
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.35);
    }

    .audience-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      border-radius: 16px;
      font-size: 1.4rem;
      background: rgba(18, 185, 129, 0.12);
      color: var(--accent-dark);
    }

    .audience-panel-dark .audience-icon {
      background: rgba(18, 185, 129, 0.16);
      color: #7ef0c7;
    }

    .audience-panel h2 {
      margin: 0;
    }

    .audience-panel p {
      margin: 0;
    }

    .audience-panel p:not(.audience-lead) {
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.72;
    }

    .audience-lead {
      margin: 0;
      font-weight: 700;
      color: var(--dark);
    }

    .audience-panel-dark .audience-lead {
      color: #ffffff;
    }

    .audience-panel-dark p:not(.audience-lead) {
      color: rgba(255, 255, 255, 0.88);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
      gap: 28px;
      align-items: start;
    }

    .contact-copy-card,
    .contact-form-card,
    .legal-panel {
      padding: 30px;
      border-radius: var(--radius-xl);
      background: #ffffff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .contact-copy-card,
    .contact-form-card {
      background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    }

    .contact-copy-card h2,
    .contact-form-card h2,
    .legal-panel h2:first-of-type {
      margin-top: 0;
    }

    .contact-address {
      display: grid;
      gap: 4px;
      margin: 18px 0 22px;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.72;
    }

    .contact-links {
      display: grid;
      gap: 10px;
      margin-bottom: 26px;
    }

    .contact-links a {
      color: var(--dark);
      font-weight: 700;
    }

    .contact-social {
      display: grid;
      gap: 14px;
    }

    .contact-social p {
      max-width: 34ch;
    }

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

    .form-field {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
      font-weight: 600;
      color: var(--dark);
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--surface);
      color: var(--text);
      font: inherit;
      padding: 14px 16px;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: rgba(18, 185, 129, 0.65);
      box-shadow: 0 0 0 4px rgba(18, 185, 129, 0.14);
    }

    .checkbox-field {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 4px 0 14px;
      color: var(--muted);
    }

    .checkbox-field input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--accent);
      flex: 0 0 auto;
    }

    .checkbox-field span {
      font-size: 1rem;
      line-height: 1.65;
    }

    .checkbox-field a {
      color: var(--dark);
      text-decoration: underline;
    }

    .field-error {
      color: #b42318;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.5;
    }

    .field-error-inline {
      display: block;
      margin: -8px 0 16px 0;
    }

    .form-message {
      margin-bottom: 18px;
      padding: 14px 16px;
      border-radius: 16px;
      font-weight: 600;
    }

    .form-message.is-success {
      background: rgba(18, 185, 129, 0.12);
      color: var(--accent-dark);
    }

    .form-message.is-error {
      background: rgba(180, 35, 24, 0.09);
      color: #b42318;
    }

    .button-full {
      width: 100%;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .section-legal {
      padding-top: 20px;
    }

    .legal-panel {
      padding-bottom: 46px;
    }

    .legal-panel-head {
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(216, 230, 222, 0.9);
    }

    .legal-content h1,
    .legal-content h2 {
      color: var(--dark);
      margin-top: 44px;
      margin-bottom: 16px;
      line-height: 1.08;
    }

    .legal-content h1:first-child,
    .legal-content h2:first-child {
      margin-top: 0;
    }

    .legal-content p,
    .legal-content ul,
    .legal-content ol {
      color: var(--muted);
      margin: 0 0 22px;
      font-size: 1.02rem;
      line-height: 1.74;
      max-width: 66ch;
    }

    .legal-content ul,
    .legal-content ol {
      padding-left: 20px;
    }

    .legal-content li + li {
      margin-top: 0.48em;
    }

    .legal-content a {
      color: var(--dark);
      text-decoration: underline;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.16em;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    @media (max-width: 980px) {
      .audience-grid,
      .contact-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .hero-lp,
      .hero-lp .hero-grid,
      .hero-lp .hero-card {
        min-height: 0;
        height: auto;
      }
    }

    @media (max-width: 760px) {
      .page-surface {
        padding: 22px;
      }

      .audience-panel {
        padding: 30px;
      }

      .narrow {
        width: min(1024px, calc(100% - 28px));
      }
    }
