:root {
  --font-family: "Source Serif 4", sans-serif;
  --font-size-base: 17.5px;
  --line-height-base: 1.75;

  --max-w: 1680px;
  --space-x: 2.25rem;
  --space-y: 1.5rem;
  --gap: 1.89rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.32rem;
  --radius-lg: 0.88rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.24);

  --overlay: rgba(10, 30, 40, 0.6);
  --anim-duration: 360ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #2A7F8E;
  --brand-contrast: #FFFFFF;
  --accent: #D96C4A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F8F9;
  --neutral-300: #D0DDE0;
  --neutral-600: #5A6E75;
  --neutral-800: #2C3E45;
  --neutral-900: #1A2B31;

  --page-bg: #F5F8F9;
  --page-fg: #2C3E45;
  --muted-bg: #E8F0F2;
  --muted-fg: #5A6E75;
  --card-bg: #FFFFFF;
  --card-fg: #2C3E45;
  --card-border: #D0DDE0;
  --inverse-bg: #1A2B31;
  --inverse-fg: #FFFFFF;
  --primary-bg: #2A7F8E;
  --primary-fg: #FFFFFF;
  --primary-hover: #226A77;
  --accent-bg: #D96C4A;
  --accent-fg: #FFFFFF;
  --accent-hover: #C05A3C;
  --gradient-hero-bg: linear-gradient(135deg, #2A7F8E 0%, #5BA3B5 50%, #8FC5D0 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #D96C4A 0%, #E89B7A 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2A7F8E;

  --link: #2A7F8E;
  --link-hover: #D96C4A;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
    width: 100%;
    background-color: var(--page-bg);
    border-bottom: 1px solid var(--card-border);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }

  .logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--page-fg);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .main-nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-block);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    font-size: var(--font-size-md);
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-bg);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .header-cta {
    display: flex;
    align-items: center;
  }

  .cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-bg);
    color: var(--primary-fg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
  }

  .cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .burger-menu:hover {
    background-color: var(--muted-bg);
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--page-fg);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-inner {
      flex-wrap: wrap;
      padding: var(--space-y) var(--space-x);
    }

    .logo {
      font-size: var(--font-size-md);
      order: 1;
    }

    .header-cta {
      order: 2;
      margin-left: auto;
    }

    .cta-btn {
      padding: 0.5rem 1rem;
      font-size: var(--font-size-sm);
    }

    .burger-menu {
      display: flex;
      order: 3;
    }

    .main-nav {
      display: none;
      width: 100%;
      order: 4;
      margin-top: var(--space-y);
      border-top: 1px solid var(--card-border);
      padding-top: var(--space-y);
    }

    .main-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-block);
    }

    .nav-link {
      display: block;
      width: 100%;
      padding: 0.5rem 0;
      font-size: var(--font-size-lg);
    }

    .nav-link::after {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .header-cta {
      display: none;
    }

    .burger-menu {
      margin-left: auto;
    }
  }

.site-footer {
      background: var(--inverse-bg, #1a2e1a);
      color: var(--inverse-fg, #f5f5f0);
      font-family: var(--font-family, 'Georgia', serif);
      font-size: var(--font-size-base, 1rem);
      line-height: var(--line-height-base, 1.6);
      padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
      width: 100%;
    }

    .footer-container {
      max-width: var(--max-w, 1200px);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: var(--gap, 1.5rem);
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-address,
    .footer-phone,
    .footer-email {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: baseline;
    }

    .contact-label {
      font-weight: 600;
      color: var(--accent-fg, #c8a86e);
      min-width: 4.5rem;
    }

    .contact-value {
      color: var(--inverse-fg, #f5f5f0);
      text-decoration: none;
      word-break: break-word;
    }

    .footer-phone a,
    .footer-email a {
      color: var(--inverse-fg, #f5f5f0);
      transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .footer-phone a:hover,
    .footer-email a:hover {
      color: var(--accent-fg, #c8a86e);
    }

    .footer-brand {
      text-align: center;
      padding: 0.5rem 0;
    }

    .footer-logo {
      font-size: var(--font-size-h2, 1.75rem);
      font-weight: 700;
      color: var(--inverse-fg, #f5f5f0);
      text-decoration: none;
      letter-spacing: 0.02em;
    }

    .footer-nav {
      text-align: center;
    }

    .footer-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .footer-menu a {
      color: var(--inverse-fg, #f5f5f0);
      text-decoration: none;
      font-size: var(--font-size-md, 1.05rem);
      padding: 0.25rem 0.5rem;
      border-radius: var(--radius-sm, 4px);
      transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), background-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .footer-menu a:hover {
      color: var(--accent-fg, #c8a86e);
      background-color: rgba(255, 255, 255, 0.08);
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-legal a {
      color: var(--muted-fg, #b0b0a8);
      text-decoration: none;
      font-size: var(--font-size-sm, 0.9rem);
      transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }

    .footer-legal a:hover {
      color: var(--accent-fg, #c8a86e);
    }

    .footer-disclaimer {
      text-align: center;
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-md, 8px);
      border-left: 3px solid var(--accent-bg, #c8a86e);
    }

    .footer-disclaimer p {
      margin: 0;
      font-size: var(--font-size-sm, 0.9rem);
      color: var(--muted-fg, #b0b0a8);
      line-height: 1.5;
    }

    .footer-copyright {
      text-align: center;
      font-size: var(--font-size-sm, 0.9rem);
      color: var(--muted-fg, #b0b0a8);
      padding-top: 0.5rem;
    }

    .footer-copyright p {
      margin: 0;
    }

    @media (max-width: 768px) {
      .site-footer {
        padding: var(--space-y, 2rem) var(--space-x, 1rem);
      }

      .footer-contact {
        align-items: flex-start;
      }

      .footer-menu {
        gap: 1rem;
      }

      .footer-legal {
        gap: 1rem;
      }
    }

.cookies {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 480px);
    background: var(--card-bg);
    color: var(--card-fg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-card);
    z-index: 1000;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    box-sizing: border-box;
    border: 1px solid var(--card-border);
  }

  .cookies .notice {
    display: flex;
    flex-direction: column;
    gap: var(--space-block);
  }

  .cookies .title {
    margin: 0;
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.3;
  }

  .cookies .copy {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--muted-fg);
  }

  .cookies .actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    margin-top: var(--space-y);
  }

  .cookies .choice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s var(--anim-ease), border-color 0.2s var(--anim-ease);
    background: var(--primary-bg);
    color: var(--primary-fg);
  }

  .cookies .choice:hover {
    background: var(--primary-hover);
  }

  .cookies .cookie-reject {
    background: transparent;
    color: var(--muted-fg);
    border-color: var(--card-border);
  }

  .cookies .cookie-reject:hover {
    background: var(--muted-bg);
    color: var(--muted-fg);
    border-color: var(--muted-fg);
  }

  .cookies .cookie-manage {
    background: transparent;
    color: var(--link);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .cookies .cookie-manage:hover {
    color: var(--link-hover);
    background: transparent;
  }

  @media (max-width: 480px) {
    .cookies {
      width: 94vw;
      padding: var(--space-card);
    }
    .cookies .actions {
      flex-direction: column;
      align-items: stretch;
    }
    .cookies .choice {
      width: 100%;
    }
  }

.intro-focus {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 6rem 1.5rem;
  }

  .intro-focus .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

  .intro-focus p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--muted-fg);
  }

  .intro-focus .note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--muted-bg);
    color: var(--muted-fg);
  }

  @media (max-width: 640px) {
    .intro-focus {
      padding: 4rem 1.25rem;
    }

    .intro-focus h1 {
      font-size: 1.9rem;
    }
  }

.wp-accent-intro-focus-ring{position:relative;overflow:hidden;isolation:isolate;}
.wp-accent-intro-focus-ring>*{position:relative;z-index:1;}
.wp-accent-intro-focus-ring::after{content:"";position:absolute;right:clamp(1rem,5vw,4rem);top:18%;width:clamp(5rem,13vw,9rem);aspect-ratio:1;border:1px solid color-mix(in srgb,currentColor 18%,transparent);border-radius:999px;opacity:.55;animation:wpAccentRing calc(18s + (var(--random-number, 1) * 5s)) var(--anim-ease) infinite alternate;pointer-events:none;}
@keyframes wpAccentRing{from{transform:scale(.96);}to{transform:scale(1.04) translateY(calc(var(--random-number,1) * .4rem));}}
@media (prefers-reduced-motion: reduce){.wp-accent-intro-focus-ring::before,.wp-accent-intro-focus-ring::after{animation:none!important;}}

.how-it-works {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .how-it-works .inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .how-it-works h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            letter-spacing: -0.01em;
        }

        .how-it-works .inner > p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--muted-fg);
            margin: 0 0 2.5rem 0;
            max-width: 560px;
        }

        .how-it-works .step {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-top: 1px solid var(--card-border);
        }

        .how-it-works .step:last-child {
            border-bottom: 1px solid var(--card-border);
        }

        .how-it-works .step-number {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-bg);
            min-width: 2.5rem;
            padding-top: 0.2rem;
        }

        .how-it-works .step-body h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0 0 0.4rem 0;
        }

        .how-it-works .step-body p {
            font-size: 0.95rem;
            line-height: 1.55;
            color: var(--muted-fg);
            margin: 0;
            max-width: 620px;
        }

        @media (max-width: 640px) {
            .how-it-works {
                padding: 3rem 1.25rem;
            }

            .how-it-works .step {
                gap: 1rem;
            }

            .how-it-works .step-number {
                min-width: 2rem;
            }
        }

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.5rem;
  }

  .next-step .inner {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .next-step .step-copy h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
  }

  .next-step .step-copy p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .next-step .step-action {
    flex-shrink: 0;
  }

  .next-step .step-link {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .step-link:hover {
    background: var(--accent-hover);
  }

  @media (max-width: 640px) {
    .next-step .inner {
      flex-direction: column;
      text-align: center;
    }
  }

.social-proof {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .social-proof .inner {
        max-width: 960px;
        margin: 0 auto;
    }

    .social-proof h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0 0 1rem;
        letter-spacing: -0.01em;
    }

    .social-proof .lead {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--muted-fg);
        margin: 0 0 2.5rem;
        max-width: 720px;
    }

    .social-proof .quotes {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .social-proof blockquote {
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
    }

    .social-proof blockquote p {
        font-size: 1.05rem;
        line-height: 1.65;
        margin: 0 0 0.5rem;
    }

    .social-proof blockquote footer {
        font-size: 0.9rem;
        color: var(--muted-fg);
        font-style: normal;
    }

    @media (min-width: 768px) {
        .social-proof {
            padding: 5rem 2rem;
        }

        .social-proof .quotes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            align-items: start;
        }

        .social-proof h2 {
            font-size: 2rem;
        }
    }

.recommendations {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .recommendations .inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .recommendations h2 {
            font-size: 1.9rem;
            font-weight: 600;
            margin: 0 0 1rem;
            line-height: 1.2;
        }

        .recommendations > .inner > p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 2.5rem;
            max-width: 640px;
        }

        .recommendations .entry {
            border-top: 1px solid var(--card-border);
            padding: 1.75rem 0;
        }

        .recommendations .entry:last-child {
            border-bottom: 1px solid var(--card-border);
        }

        .recommendations .entry h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0 0 0.35rem;
            line-height: 1.35;
        }

        .recommendations .entry h3 a {
            color: var(--page-fg);
            text-decoration: none;
        }

        .recommendations .entry h3 a:hover {
            color: var(--primary-bg);
        }

        .recommendations .entry .meta {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .recommendations .entry p:last-child {
            font-size: 0.98rem;
            line-height: 1.6;
            margin: 0;
            color: var(--muted-fg);
        }

        @media (max-width: 600px) {
            .recommendations {
                padding: 3rem 1.25rem;
            }

            .recommendations h2 {
                font-size: 1.6rem;
            }
        }

.plans-overview {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .plans-overview .inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .plans-overview h2 {
        font-size: 1.9rem;
        margin: 0 0 1rem;
        font-weight: 600;
    }

    .plans-overview .intro {
        max-width: 640px;
        margin: 0 0 2.5rem;
        line-height: 1.6;
        color: var(--muted-fg);
    }

    .plans-overview .plans-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .plans-overview .plan-item {
        flex: 1 1 240px;
        background: var(--card-bg);
        color: var(--card-fg);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .plans-overview .plan-item h3 {
        font-size: 1.2rem;
        margin: 0 0 0.75rem;
        font-weight: 600;
    }

    .plans-overview .plan-item p {
        margin: 0 0 1.25rem;
        line-height: 1.55;
        font-size: 0.95rem;
        flex-grow: 1;
    }

    .plans-overview .plan-link {
        display: inline-block;
        background: var(--primary-bg);
        color: var(--primary-fg);
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        text-decoration: none;
        font-size: 0.9rem;
        align-self: flex-start;
        transition: background 0.2s ease;
    }

    .plans-overview .plan-link:hover {
        background: var(--primary-hover);
    }

    @media (max-width: 640px) {
        .plans-overview .plans-list {
            flex-direction: column;
        }
    }

.feedback {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }

    .feedback .inner {
        max-width: 760px;
        margin: 0 auto;
    }

    .feedback .subtitle {
        color: var(--brand-primary-bg);
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        margin: 0 0 0.5rem;
        text-transform: uppercase;
    }

    .feedback h2 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 1.25rem;
    }

    .feedback .text {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        max-width: 640px;
    }

    .feedback .note {
        margin-bottom: 2.5rem;
    }

    .feedback .note:last-child {
        margin-bottom: 0;
    }

    .feedback .meta {
        color: var(--muted-fg);
        font-size: 0.85rem;
        margin: 0 0 0.5rem;
    }

    .feedback .item-text {
        font-size: 1.05rem;
        line-height: 1.65;
        margin: 0 0 0.75rem;
    }

    .feedback .label {
        color: var(--brand-primary-bg);
        font-size: 0.85rem;
        font-weight: 500;
        margin: 0;
    }

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .capabilities .inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .capabilities h2 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 1rem;
      max-width: 640px;
      line-height: 1.2;
    }

    .capabilities .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 560px;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
    }

    .capability-list {
      display: block;
      margin: 0 0 2.5rem;
    }

    .capability-item {
      padding: 1.4rem 0;
      border-bottom: 1px solid var(--muted-bg);
      max-width: 720px;
    }

    .capability-item:first-child {
      border-top: 1px solid var(--muted-bg);
    }

    .capability-item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
      line-height: 1.3;
    }

    .capability-item p {
      margin: 0;
      line-height: 1.55;
      font-size: 0.95rem;
      color: var(--muted-fg);
    }

    .capabilities .closing {
      font-size: 0.95rem;
      line-height: 1.5;
      max-width: 560px;
      margin: 0;
      color: var(--muted-fg);
    }

.form {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .form .inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

  .form p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: var(--muted-fg);
  }

  .form form {
    margin: 0;
  }

  .form .field {
    margin-bottom: 1.25rem;
  }

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--page-fg);
  }

  .form input[type="text"],
  .form input[type="tel"] {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--card-fg);
    box-sizing: border-box;
    transition: border-color 0.2s;
  }

  .form input[type="text"]:focus,
  .form input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-bg);
  }

  .form button {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
  }

  .form button:hover {
    background: var(--primary-hover);
  }

  .form .note {
    font-size: 0.9rem;
    color: var(--muted-fg);
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--muted-bg);
    line-height: 1.5;
  }

.clarifications {
        background: var(--inverse-bg);
        color: var(--inverse-fg);
        padding: 3.5rem 1.5rem;
    }

    .clarifications .inner {
        max-width: 760px;
        margin: 0 auto;
    }

    .clarifications h2 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 1.2rem 0;
    }

    .clarifications p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
        opacity: 0.9;
    }

    .clarifications a {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(255, 255, 255, 0.4);
        transition: text-decoration-color 0.2s ease;
    }

    .clarifications a:hover {
        text-decoration-color: inherit;
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .contacts .inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .contacts h2 {
      font-size: 2rem;
      margin: 0 0 1rem;
      color: var(--brand-primary-bg);
    }

    .contacts p {
      line-height: 1.7;
      margin: 0 0 2.5rem;
      max-width: 65ch;
    }

    .contacts .contact-details {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 2rem;
    }

    .contacts .detail-item h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: var(--muted-fg);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .contacts .detail-item p {
      margin: 0;
      line-height: 1.6;
    }

    .contacts a {
      color: var(--brand-primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .contacts a:hover {
      border-bottom-color: var(--brand-primary-bg);
    }

    @media (min-width: 640px) {
      .contacts .contact-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .policy-items .inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .policy-items h2 {
      font-size: 1.8rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.5rem;
    }

    .policy-items h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 2.5rem 0 0.75rem;
    }

    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0 0 1rem;
    }

    .policy-items a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .policy-items a:hover {
      color: var(--primary-hover);
    }

.terms-items {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .terms-items .inner {
            max-width: 780px;
            margin: 0 auto;
        }

        .terms-items h2 {
            font-size: 1.9rem;
            font-weight: 600;
            line-height: 1.25;
            margin: 0 0 1rem;
            letter-spacing: -0.01em;
        }

        .terms-items .lead {
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0 0 2.5rem;
            color: var(--muted-fg);
        }

        .terms-items .rule {
            border-top: 1px solid var(--card-border);
            padding: 1.5rem 0;
        }

        .terms-items .rule:last-child {
            border-bottom: 1px solid var(--card-border);
        }

        .terms-items h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0 0 0.6rem;
        }

        .terms-items p {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            color: var(--muted-fg);
        }

.thank {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }

  .thank .inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .thank .confirm {
    margin-bottom: 48px;
  }

  .thank .mark {
    color: var(--brand-primary-bg);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
  }

  .thank h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
  }

  .thank .lead {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 620px;
  }

  .thank .note {
    color: var(--muted-fg);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
  }

  .thank .next {
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
    margin-bottom: 40px;
  }

  .thank .next h3 {
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 600;
  }

  .thank .next p {
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
  }

  .thank .contact {
    border-top: 1px solid var(--card-border);
    padding-top: 32px;
  }

  .thank .contact h3 {
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 600;
  }

  .thank .contact p {
    line-height: 1.7;
    margin: 0 0 8px;
    max-width: 600px;
  }

  .thank .phone,
  .thank .email {
    font-size: 17px;
    margin-top: 12px;
  }

  .thank .phone a,
  .thank .email a {
    color: var(--brand-primary-bg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .thank .phone a:hover,
  .thank .email a:hover {
    border-bottom-color: var(--brand-primary-bg);
  }

  @media (max-width: 640px) {
    .thank {
      padding: 48px 20px;
    }

    .thank h2 {
      font-size: 28px;
    }

    .thank .lead {
      font-size: 16px;
    }
  }

.404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
  }

  .404 .inner {
    max-width: 620px;
    text-align: left;
  }

  .404 .code {
    color: var(--brand-primary-bg);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
  }

  .404 h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
  }

  .404 p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: var(--muted-fg);
  }

  .404 .options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .404 .options a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
  }

  .404 .options a:hover {
    background: var(--brand-primary-hover);
  }

  .404 .options li:last-child a {
    background: transparent;
    color: var(--brand-primary-bg);
    border: 1px solid var(--brand-primary-bg);
  }

  .404 .options li:last-child a:hover {
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
  }

  @media (min-width: 640px) {
    .404 .options {
      flex-direction: row;
      gap: 1rem;
    }
  }