
    :root {
      --navy: #0b2545;
      --navy-2: #12365f;
      --teal: #177e89;
      --green: #2f7d5c;
      --soft-blue: #eaf4f7;
      --soft-green: #eef8f2;
      --cream: #fbf7ef;
      --white: #ffffff;
      --grey: #f5f7fa;
      --text: #233142;
      --muted: #5f6f7e;
      --border: #d8e1e8;
      --warning: #fff3cd;
      --shadow: 0 18px 45px rgba(11, 37, 69, 0.12);
      --radius: 22px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a,
    button,
    [role="button"],
    [onclick],
    summary,
    label,
    select,
    input[type="checkbox"],
    input[type="radio"],
    input[type="submit"],
    input[type="button"],
    input[type="reset"],
    input[type="file"],
    input[type="date"],
    input[type="image"] {
      cursor: pointer;
    }

    button:disabled,
    input:disabled,
    select:disabled,
    a[aria-disabled="true"] {
      cursor: not-allowed;
    }

    .top-note {
      background: var(--navy);
      color: var(--white);
      font-size: 0.9rem;
      padding: 10px 20px;
      text-align: center;
    }

    .top-note strong {
      color: #bce7ef;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 12px 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      column-gap: 20px;
      min-height: 72px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-self: start;
      min-width: 0;
      line-height: 0;
    }

    .logo img {
      display: block;
      height: 48px;
      width: auto;
      max-width: min(240px, 46vw);
      object-fit: contain;
    }

    .footer-brand {
      display: grid;
      gap: 14px;
    }

    .footer-brand .footer-logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      background: #ffffff;
      padding: 10px 14px;
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .footer-brand .footer-logo img {
      display: block;
      height: 48px;
      width: auto;
      max-width: 230px;
      object-fit: contain;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: center;
      justify-self: center;
      gap: 2px;
      font-size: 0.875rem;
      color: #30465a;
      white-space: nowrap;
    }

    nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 11px;
      border-radius: 10px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: #30465a;
      transition: color 0.18s ease, background-color 0.18s ease;
    }

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

    nav a:focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: 2px;
    }

    .nav-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-self: end;
      flex-wrap: nowrap;
    }

    .nav-actions .btn {
      padding: 10px 14px;
      font-size: 0.84rem;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
      font-size: 0.95rem;
      font-family: inherit;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 10px 22px rgba(11, 37, 69, 0.2);
    }

    .btn-primary:hover {
      background: var(--navy-2);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: var(--soft-blue);
      color: var(--navy);
      border: 1px solid #cde3ea;
    }

    .btn-secondary:hover {
      background: #dceff4;
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--border);
    }

    .mobile-toggle {
      display: none;
      background: var(--soft-blue);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 14px;
      color: var(--navy);
      font-weight: 800;
      font-size: 0.9rem;
      cursor: pointer;
      justify-self: end;
      align-items: center;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 86px 24px;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
    }

    .hero {
      background:
        radial-gradient(circle at top right, rgba(23, 126, 137, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
      padding: 74px 24px 66px;
    }

    .hero-grid {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--soft-blue);
      color: var(--teal);
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(2.35rem, 5vw, 4.8rem);
      line-height: 1.03;
      letter-spacing: -0.065em;
      color: var(--navy);
      margin-bottom: 22px;
    }

    .hero p.lead {
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      color: #42576b;
      max-width: 760px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .hero-checks {
      display: grid;
      grid-template-columns: repeat(2, minmax(180px, 1fr));
      gap: 12px;
      max-width: 620px;
    }

    .check {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      color: #364e62;
      font-weight: 650;
      font-size: 0.95rem;
    }

    .tick {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--soft-green);
      color: var(--green);
      display: inline-grid;
      place-items: center;
      flex: 0 0 22px;
      font-size: 0.82rem;
      font-weight: 900;
    }

    .hero-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 16px -16px -16px 16px;
      background: linear-gradient(135deg, rgba(23,126,137,0.12), rgba(11,37,69,0.08));
      border-radius: 32px;
      z-index: -1;
    }

    .visual-panel {
      border-radius: 24px;
      background: linear-gradient(135deg, var(--navy), #175e6a);
      color: var(--white);
      padding: 30px;
      min-height: 245px;
      position: relative;
      overflow: hidden;
    }

    .visual-panel::after {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(255,255,255,0.09);
      right: -50px;
      bottom: -70px;
    }

    .visual-panel h3 {
      font-size: 1.55rem;
      line-height: 1.2;
      margin-bottom: 16px;
      max-width: 320px;
      position: relative;
      z-index: 2;
    }

    .visual-panel p {
      color: rgba(255,255,255,0.82);
      position: relative;
      z-index: 2;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .mini-stat {
      background: var(--grey);
      border-radius: 18px;
      padding: 16px;
      border: 1px solid var(--border);
    }

    .mini-stat strong {
      color: var(--navy);
      font-size: 1rem;
      display: block;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 0.86rem;
    }

    .guidance {
      margin-top: 16px;
      background: var(--warning);
      color: #624b00;
      border: 1px solid #f1d383;
      border-radius: 16px;
      padding: 14px 16px;
      font-size: 0.92rem;
    }

    .trust-strip {
      background: var(--navy);
      color: var(--white);
      padding: 28px 24px;
    }

    .trust-intro {
      max-width: 1240px;
      margin: 0 auto 16px;
      text-align: center;
    }

    .trust-intro h2 {
      font-size: 1.18rem;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      color: var(--white);
    }

    .trust-intro p {
      color: rgba(255,255,255,0.78);
      font-size: 0.94rem;
      max-width: 820px;
      margin: 0 auto;
    }

    .trust-row {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      align-items: stretch;
    }

    .trust-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 14px;
      text-align: center;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 36px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section-label {
      color: var(--teal);
      font-weight: 850;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    h2 {
      color: var(--navy);
      font-size: clamp(1.9rem, 3.3vw, 3.1rem);
      line-height: 1.08;
      letter-spacing: -0.045em;
      margin-bottom: 16px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.08rem;
    }

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

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 10px 28px rgba(11, 37, 69, 0.055);
      transition: 0.2s ease;
      min-height: 100%;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 35px rgba(11, 37, 69, 0.09);
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--soft-blue);
      color: var(--teal);
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .card h3 {
      color: var(--navy);
      font-size: 1.2rem;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .card p {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .card ul {
      margin-top: 12px;
      padding-left: 18px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .soft {
      background: var(--grey);
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: center;
    }

    .feature-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow);
      padding: 34px;
    }

    .feature-list {
      display: grid;
      gap: 12px;
    }

    .feature-list .check {
      background: var(--grey);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
    }

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

    .audience-card {
      padding: 30px;
      border-radius: 26px;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: 0 12px 30px rgba(11, 37, 69, 0.07);
    }

    .audience-card.highlight {
      background: linear-gradient(135deg, var(--navy), #176977);
      color: var(--white);
      border: 0;
    }

    .audience-card.highlight h3,
    .audience-card.highlight p,
    .audience-card.highlight li {
      color: var(--white);
    }

    .audience-card h3 {
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .audience-card p,
    .audience-card li {
      color: var(--muted);
    }

    .audience-card ul {
      padding-left: 18px;
      margin: 14px 0 20px;
    }

    .safe-section {
      background: linear-gradient(135deg, #eef8f2 0%, #eaf4f7 100%);
      border-top: 1px solid #d7ebe8;
      border-bottom: 1px solid #d7ebe8;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      counter-reset: step;
    }

    .step {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px 18px;
      box-shadow: 0 10px 24px rgba(11, 37, 69, 0.055);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .step h3 {
      color: var(--navy);
      font-size: 1.02rem;
      margin-bottom: 8px;
    }

    .step p {
      color: var(--muted);
      font-size: 0.92rem;
    }

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

    .impact-card {
      background: var(--soft-blue);
      border-radius: 20px;
      padding: 22px;
      border: 1px solid #cfe5eb;
    }

    .impact-card:nth-child(even) {
      background: var(--soft-green);
      border-color: #d5eadc;
    }

    .impact-card h3 {
      color: var(--navy);
      margin-bottom: 8px;
      font-size: 1.06rem;
    }

    .impact-card p {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .case-wrap {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .case-main {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .case-main h3 {
      color: var(--navy);
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .case-main p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .tag {
      background: var(--soft-blue);
      color: var(--navy);
      border: 1px solid #d2e6ed;
      border-radius: 999px;
      padding: 7px 11px;
      font-weight: 700;
      font-size: 0.82rem;
    }

    .quotes {
      display: grid;
      gap: 14px;
    }

    .quote {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 22px;
      color: var(--muted);
      box-shadow: 0 8px 20px rgba(11, 37, 69, 0.05);
    }

    .quote strong {
      display: block;
      margin-top: 12px;
      color: var(--navy);
    }

    .cta {
      background: linear-gradient(135deg, var(--navy), #145e69);
      color: var(--white);
      text-align: center;
      padding: 80px 24px;
    }

    .cta h2 {
      color: var(--white);
    }

    .cta p {
      color: rgba(255,255,255,0.84);
      max-width: 740px;
      margin: 0 auto 26px;
      font-size: 1.08rem;
    }

    .cta .btn-secondary {
      background: var(--white);
      border: 0;
      color: var(--navy);
    }

    footer {
      background: #071a31;
      color: rgba(255,255,255,0.78);
      padding: 58px 24px 24px;
    }

    .footer-grid {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.7fr repeat(4, 1fr);
      gap: 28px;
    }

    footer h3, footer h4 {
      color: var(--white);
      margin-bottom: 12px;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 8px;
      font-size: 0.94rem;
    }

    footer a:hover {
      color: #bce7ef;
    }

    .footer-bottom {
      max-width: 1240px;
      margin: 36px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.12);
      font-size: 0.88rem;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .floating-guide {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 2000;
      width: min(360px, calc(100vw - 36px));
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 18px 45px rgba(11,37,69,0.22);
      overflow: hidden;
    }

    .guide-head {
      background: var(--navy);
      color: var(--white);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-weight: 800;
    }

    .guide-head button {
      background: rgba(255,255,255,0.12);
      border: 0;
      color: var(--white);
      border-radius: 10px;
      padding: 7px 9px;
      cursor: pointer;
    }

    .guide-body {
      padding: 16px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .guide-body ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    .guide-closed {
      display: none;
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 2000;
      background: var(--navy);
      color: var(--white);
      border: 0;
      border-radius: 999px;
      padding: 13px 18px;
      box-shadow: 0 12px 28px rgba(11,37,69,0.24);
      cursor: pointer;
      font-weight: 800;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 26, 49, 0.62);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 3000;
    }

    .modal {
      width: min(940px, 100%);
      background: var(--white);
      border-radius: 28px;
      padding: 26px;
      box-shadow: 0 24px 70px rgba(0,0,0,0.28);
      max-height: 90vh;
      overflow: auto;
      font-size: 1rem;
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .modal h3 {
      color: var(--navy);
      font-size: 1.6rem;
      line-height: 1.1;
    }

    .modal-head p,
    #modalIntro {
      font-size: 1rem;
      line-height: 1.55;
    }

    .close-modal {
      border: 0;
      background: var(--grey);
      border-radius: 12px;
      padding: 8px 11px;
      cursor: pointer;
      font-weight: 900;
      color: var(--navy);
    }

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

    .field {
      display: grid;
      gap: 6px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label,
    .checkbox-line,
    .privacy-check {
      font-size: 1rem;
      font-weight: 750;
      color: var(--navy);
    }

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

    textarea {
      min-height: 110px;
      resize: vertical;
    }



    .section-title-small {
      grid-column: 1 / -1;
      margin-top: 8px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      color: var(--navy);
      font-weight: 900;
      font-size: 1rem;
    }

    .checkbox-grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .checkbox-line {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
      color: var(--text);
      font-weight: 600;
    }

    .checkbox-line input {
      width: auto;
      margin-top: 4px;
    }

    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 14px;
      padding: 13px;
      border-radius: 14px;
      background: var(--cream);
      border: 1px solid #eadfc9;
      font-weight: 600;
      color: var(--text);
    }

    .privacy-check input {
      width: auto;
      margin-top: 4px;
    }

    .urgent-note {
      background: #fff3cd;
      border: 1px solid #f1d28a;
      color: #684d00;
      border-radius: 14px;
      padding: 12px;
      margin: 12px 0 16px;
      font-size: 1rem;
    }

    .form-note {
      background: var(--soft-blue);
      color: #31566a;
      border: 1px solid #cde3ea;
      border-radius: 14px;
      padding: 12px;
      margin: 16px 0;
      font-size: 1rem;
    }

    .submit-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-top: 16px;
    }

    .modal .btn,
    form .btn {
      font-size: 1rem;
    }

    @media (max-width: 1180px) {
      .nav-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 20px;
        min-height: auto;
      }

      nav, .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .nav-wrap.mobile-open {
        align-items: stretch;
        padding-bottom: 18px;
      }

      .nav-wrap.mobile-open nav,
      .nav-wrap.mobile-open .nav-actions {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-self: stretch;
        white-space: normal;
      }

      .nav-wrap.mobile-open nav {
        gap: 4px;
        padding-top: 8px;
        border-top: 1px solid var(--border);
      }

      .nav-wrap.mobile-open nav a {
        justify-content: flex-start;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
      }

      .nav-wrap.mobile-open .nav-actions {
        gap: 10px;
        padding-top: 4px;
      }

      .nav-wrap.mobile-open .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.92rem;
      }

      .hero-grid, .split, .case-wrap {
        grid-template-columns: 1fr;
      }

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

      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 760px) {
      .section {
        padding: 64px 18px;
      }

      .hero {
        padding: 54px 18px;
      }

      .hero-checks, .cards, .audience-grid, .impact-grid, .steps, .trust-row, .mini-stats, .footer-grid, .form-grid, .checkbox-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .floating-guide {
        display: none;
      }

      .guide-closed {
        display: none !important;
      }
    }
  

/* Multi-page production additions */
nav a.active {
  color: var(--teal);
  font-weight: 600;
  background: var(--soft-blue);
}

.logo[href="index.html"] { cursor: pointer; }

@media (max-width: 760px) {
  .logo img {
    height: 38px;
    max-width: min(180px, 54vw);
  }
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(23, 126, 137, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
  padding: 72px 24px 58px;
  border-bottom: 1px solid #d7ebe8;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 860px;
}

.page-hero p {
  color: #42576b;
  font-size: 1.12rem;
  max-width: 820px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.page-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.page-panel h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.page-panel p, .page-panel li {
  color: var(--muted);
}

.page-panel ul {
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(11,37,69,0.065);
}

.wide-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.wide-card p, .wide-card li {
  color: var(--muted);
}

.wide-card ul {
  padding-left: 18px;
  margin-top: 12px;
}

.notice {
  background: var(--cream);
  border: 1px solid #eadfc9;
  border-radius: 20px;
  padding: 18px 20px;
  color: #5d4b22;
}

.notice strong {
  color: var(--navy);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: timeline;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(11,37,69,0.055);
}

.timeline-item::before {
  counter-increment: timeline;
  content: counter(timeline);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.timeline-item h3 {
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list .check {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(11,37,69,0.055);
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.form-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(11, 37, 69, 0.045);
  transition: 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.policy-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 37, 69, 0.08);
  border-color: #c5dde4;
}

.policy-item h3 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.policy-item p {
  color: var(--muted);
  margin: 0;
}

.policy-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--navy);
  border: 1px solid #cde3ea;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.policy-item:hover .policy-link {
  background: #dceff4;
}

@media (max-width: 760px) {
  .policy-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-link {
    width: 100%;
  }
}

footer .footer-grid {
  grid-template-columns: 1.5fr repeat(5, 1fr);
}

@media (max-width: 1050px) {
  .page-hero .container, .two-col, .three-col, .contact-grid {
    grid-template-columns: 1fr;
  }
  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 54px 18px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
}

.form-status {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  font-size: 1rem;
}

.form-status--success {
  background: #e8f5ef;
  border-color: #b7dcc8;
  color: #145237;
}

.form-status--error {
  background: #fdeeee;
  border-color: #efc0c0;
  color: #8b1e1e;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: #163530;
  color: #f7f4ef;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  line-height: 1.45;
}

.cookie-banner a {
  color: #d7eee4;
  text-decoration: underline;
}

.cookie-banner .btn {
  flex: 0 0 auto;
}

.page-hero .container.hero-single {
  grid-template-columns: 1fr;
}

.cards.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 760px) {
  .cards.cards-2 {
    grid-template-columns: 1fr;
  }
}
