:root {
  --font-family: "Nunito", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 2.01;

  --max-w: 1020px;
  --space-x: 1.71rem;
  --space-y: 1.5rem;
  --gap: 1.17rem;
  --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.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.37rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.04);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 34px rgba(0,0,0,0.07);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 350ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #4B2E83;
  --brand-contrast: #FFFFFF;
  --accent: #D4A017;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7F5FA;
  --neutral-300: #D1C7E0;
  --neutral-600: #6B5B8A;
  --neutral-800: #2D1B4E;
  --neutral-900: #1A0F2E;

  --page-bg: #FFFFFF;
  --page-fg: #2D1B4E;
  --muted-bg: #F7F5FA;
  --muted-fg: #6B5B8A;
  --card-bg: #FFFFFF;
  --card-fg: #2D1B4E;
  --card-border: #E0D9EC;
  --inverse-bg: #2D1B4E;
  --inverse-fg: #FFFFFF;
  --primary-bg: #4B2E83;
  --primary-fg: #FFFFFF;
  --primary-hover: #3A2268;
  --accent-bg: #D4A017;
  --accent-fg: #FFFFFF;
  --accent-hover: #B8860B;
  --gradient-hero-bg: linear-gradient(135deg, #4B2E83 0%, #6A4C93 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #D4A017 0%, #E8B84B 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #4B2E83;

  --link: #4B2E83;
  --link-hover: #D4A017;

  --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;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }

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

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

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

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

  .nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
    color: var(--primary-fg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background-color: var(--muted-bg);
  }

  .burger-line {
    display: block;
    width: 20px;
    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.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

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

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

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

    .main-nav {
      display: none;
      width: 100%;
      order: 4;
      margin-top: calc(var(--space-y) * 0.5);
    }

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

    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
      width: 100%;
    }

    .nav-link {
      display: block;
      width: 100%;
      padding: 0.625rem 0.75rem;
      font-size: var(--font-size-md);
    }
  }

  @media (min-width: 768px) {
    .main-nav {
      display: flex !important;
    }
  }

.site-footer{padding:var(--space-section-y) var(--space-section-x);font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.2fr 2fr 1.2fr;gap:var(--gap);align-items:start}.footer-brand{display:flex;flex-direction:column;gap:var(--space-y)}.footer-logo{font-size:var(--font-size-h3);font-weight:bold;color:inherit;text-decoration:none;transition:color var(--anim-duration) var(--anim-ease)}.footer-logo:hover{}.footer-tagline{margin:0;font-size:var(--font-size-sm);opacity:0.85;max-width:30ch}.footer-nav{display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--space-x)}.footer-nav-column{display:flex;flex-direction:column;gap:var(--space-y)}.footer-nav-column a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:color var(--anim-duration) var(--anim-ease)}.footer-nav-column a:hover{text-decoration:underline;color:inherit}.footer-contact{display:flex;flex-direction:column;gap:var(--space-y)}.footer-contact-info{display:flex;flex-direction:column;gap:var(--space-y)}.footer-contact-info p{margin:0;font-size:var(--font-size-sm)}.footer-contact-info a{color:inherit;text-decoration:none;transition:color var(--anim-duration) var(--anim-ease)}.footer-contact-info a:hover{text-decoration:underline;color:inherit}.footer-disclaimer{margin:0;font-size:var(--font-size-sm);opacity:0.8;line-height:var(--line-height-base);border-top:1px solid rgba(255, 255, 255, 0.1);padding-top:var(--space-y)}.footer-bottom{max-width:var(--max-w);margin:var(--space-y) auto 0;border-top:1px solid rgba(255, 255, 255, 0.1);padding-top:var(--space-y);text-align:center}.footer-bottom p{margin:0;font-size:var(--font-size-sm);opacity:0.7}

  @media (max-width: 768px) {.footer-container{grid-template-columns:1fr;gap:var(--space-section-y)}.footer-nav{grid-template-columns:repeat(2, 1fr)}
  }

  @media (max-width: 480px) {.footer-nav{grid-template-columns:1fr}
  }

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--card-bg);
    color: var(--card-fg);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--card-border);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
  }

  .cookie-bar {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    flex-wrap: wrap;
  }

  .cookie-copy {
    flex: 1 1 60%;
    min-width: 240px;
  }

  .cookie-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: inherit;
  }

  .cookie-text {
    margin: 0;
    color: inherit;
    opacity: 0.9;
  }

  .cookie-actions {
    display: flex;
    align-items: center;
    gap: var(--space-x);
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  .cookie-btn {
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cookie-btn:hover {
    background: var(--primary-hover);
  }

  .cookie-btn.cookie-reject {
    background: transparent;
    color: var(--card-fg);
    border: 1px solid var(--card-border);
  }

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

  .cookie-link {
    background: none;
    border: none;
    padding: 0.5rem 0.5rem;
    color: var(--link);
    text-decoration: underline;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  @media (max-width: 640px) {
    .cookies {
      padding: var(--space-y) var(--space-x);
    }

    .cookie-bar {
      flex-direction: column;
      align-items: flex-start;
    }

    .cookie-copy {
      flex: 1 1 auto;
      min-width: 100%;
    }

    .cookie-actions {
      width: 100%;
      justify-content: flex-start;
      gap: var(--space-x);
    }
  }

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

  .intro-focus .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .intro-focus h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 800;
  }

  .intro-focus .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
  }

  .intro-focus .route {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .intro-focus .action {
    display: inline-block;
    background: var(--brand-primary-bg);
    color: var(--brand-primary-fg);
    padding: 0.7rem 1.4rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .intro-focus .action:hover {
    background: var(--brand-primary-hover);
  }

  .intro-focus .aside {
    color: var(--brand-primary-bg);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--brand-accent-bg);
    padding-bottom: 0.15rem;
  }

  .intro-focus .aside:hover {
    color: var(--brand-primary-hover);
  }

  .intro-focus .note {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted-fg);
    margin: 0;
    max-width: 34rem;
  }

.intro-focus {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.wp-accent-intro-focus-glint{position:relative;overflow:hidden;isolation:isolate;}
.wp-accent-intro-focus-glint>*{position:relative;z-index:1;}
.wp-accent-intro-focus-glint::after{content:"";position:absolute;top:12%;bottom:12%;left:calc(var(--random-number,1) * 8%);width:1px;background:linear-gradient(180deg,transparent,color-mix(in srgb,currentColor 28%,transparent),transparent);opacity:.45;animation:wpAccentGlint calc(18s + (var(--random-number, 1) * 5s)) ease-in-out infinite alternate;pointer-events:none;}
@keyframes wpAccentGlint{from{transform:translateX(0);opacity:.24;}to{transform:translateX(calc(var(--random-number,1) * 2rem));opacity:.55;}}
@media (prefers-reduced-motion: reduce){.wp-accent-intro-focus-glint::before,.wp-accent-intro-focus-glint::after{animation:none!important;}}

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

  .clarifications .inner {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid var(--card-border, #E0D9EC);
    padding-top: 2.5rem;
  }

  .clarifications h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    font-weight: 700;
  }

  .clarifications p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--muted-fg, #6B5B8A);
  }

  .clarifications p:last-child {
    margin-bottom: 0;
  }

.clarifications {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

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

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

    .recommendations .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg, #6B5B8A);
    }

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

    .recommendations .entry:first-of-type {
      padding-top: 0;
    }

    .recommendations .entry:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
    }

    .recommendations h3 {
      font-size: 1.25rem;
      line-height: 1.4;
      margin: 0 0 0.5rem;
      font-weight: 700;
    }

    .recommendations h3 a {
      color: var(--primary-bg, #4B2E83);
      text-decoration: none;
    }

    .recommendations h3 a:hover {
      text-decoration: underline;
    }

    .recommendations .entry p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
    }

    .recommendations .route {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--accent-bg, #D4A017);
      text-decoration: none;
    }

    .recommendations .route:hover {
      text-decoration: underline;
    }

.recommendations {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

    .plans-overview h2 {
        font-size: 2rem;
        margin: 0 0 16px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .plans-overview .lead {
        max-width: 640px;
        margin: 0 0 48px;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--muted-fg);
    }

    .plans-overview .plan-row {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .plans-overview .plan-item {
        border-top: 2px solid var(--card-border);
        padding-top: 24px;
    }

    .plans-overview .plan-item h3 {
        font-size: 1.3rem;
        margin: 0 0 12px;
        font-weight: 700;
    }

    .plans-overview .plan-item p {
        margin: 0 0 12px;
        line-height: 1.6;
        font-size: 0.98rem;
    }

    .plans-overview .plan-item .detail {
        color: var(--muted-fg);
        font-size: 0.92rem;
        margin-bottom: 20px;
    }

    .plans-overview .choose {
        display: inline-block;
        background: var(--primary-bg);
        color: var(--primary-fg);
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: background 0.2s ease;
    }

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

    @media (min-width: 768px) {
        .plans-overview {
            padding: 96px 32px;
        }

        .plans-overview h2 {
            font-size: 2.4rem;
        }

        .plans-overview .plan-row {
            gap: 56px;
        }

        .plans-overview .plan-item {
            padding-top: 32px;
        }
    }

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

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px 56px;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 620px;
    color: var(--muted-fg);
  }

  @media (min-width: 768px) {
    .second-hero-block {
      padding: 96px 32px 72px;
    }

    .second-hero-block h1 {
      font-size: 2.6rem;
      margin-bottom: 20px;
    }

    .second-hero-block p {
      font-size: 1.1rem;
    }
  }

.second-hero-block {
  background: var(--page-bg);
  color: var(--page-fg);
}

.mission {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

  .mission .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .mission h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    color: var(--brand-primary-bg);
  }

  .mission p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.1rem;
  }

  .mission p:last-child {
    margin-bottom: 0;
  }

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

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

.mission {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

  .identity .inner {
    max-width: 56rem;
    margin: 0 auto;
  }

  .identity h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: var(--page-fg);
  }

  .identity .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 46rem;
  }

  .identity .note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
    background: var(--muted-bg);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    max-width: 46rem;
    margin: 0;
  }

.identity {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

  .people-behind .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .people-behind h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 16px 0;
    font-weight: 700;
  }

  .people-behind > .inner > p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 640px;
    color: var(--muted-fg);
  }

  .people-behind .member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .people-behind .member {
    border-top: 2px solid var(--accent-bg);
    padding-top: 20px;
  }

  .people-behind .member h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 6px 0;
    font-weight: 700;
  }

  .people-behind .role {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-primary-bg);
    margin: 0 0 12px 0;
  }

  .people-behind .bio {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
  }

  @media (max-width: 768px) {
    .people-behind .member-list {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }

.people-behind {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4.5rem 1.5rem 4rem;
  }

  .second-hero-block .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 40rem;
    color: var(--inverse-fg);
    opacity: 0.85;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem 4.5rem;
    }

    .second-hero-block h1 {
      font-size: 2.4rem;
    }

    .second-hero-block p {
      font-size: 1.1rem;
    }
  }

.second-hero-block {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

  .capabilities h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    color: var(--page-fg);
  }

  .capabilities p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    color: var(--page-fg);
  }

  .capabilities .note {
    font-size: 0.95rem;
    color: var(--muted-fg);
    background: var(--muted-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
  }

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

  .capabilities .note a:hover {
    color: var(--primary-hover);
  }

.capabilities {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

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

    .plans-overview h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0 0 1rem;
        font-weight: 700;
    }

    .plans-overview .lead {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }

    .plans-overview .entry {
        border-top: 1px solid var(--card-border);
        padding: 1.5rem 0;
    }

    .plans-overview .entry h3 {
        font-size: 1.15rem;
        margin: 0 0 0.6rem;
        font-weight: 700;
    }

    .plans-overview .entry p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 0.8rem;
    }

    .plans-overview .entry a {
        color: var(--primary-bg);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .plans-overview .entry a:hover {
        color: var(--primary-hover);
    }

    .plans-overview .note {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 2rem 0 0;
        padding-top: 1.5rem;
        border-top: 1px solid var(--card-border);
        color: var(--muted-fg);
    }

.plans-overview {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }
  .value-points .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 700;
  }
  .value-points .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
  }
  .value-points .note {
    border-top: 1px solid var(--card-border, #E0D9EC);
    padding: 1.25rem 0;
  }
  .value-points .note h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
  }
  .value-points .note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .value-points .tail {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 1.5rem 0 0;
  }
  .value-points .tail a {
    color: var(--brand-primary-bg, #4B2E83);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .value-points .tail a:hover {
    color: var(--brand-primary-hover, #3A2268);
  }

.value-points {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 72px 24px 56px;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      font-weight: 800;
      margin: 0 0 16px;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (max-width: 600px) {
      .second-hero-block {
        padding: 48px 20px 40px;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

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

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

  .clarifications h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    font-weight: 700;
  }

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

  .clarifications p:last-of-type {
    margin-bottom: 0;
  }

  .clarifications a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

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

.clarifications {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }
    .capabilities .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--page-fg);
    }
    .capabilities p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 1.1rem;
      color: var(--page-fg);
    }
    .capabilities p:last-of-type {
      margin-bottom: 0;
    }
    .capabilities .route {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--card-border, #E0D9EC);
      font-size: 0.95rem;
      color: var(--muted-fg, #6B5B8A);
      line-height: 1.5;
    }
    .capabilities .route a {
      color: var(--primary-bg, #4B2E83);
      text-decoration: underline;
      text-underline-offset: 0.15em;
      font-weight: 600;
      transition: color 0.2s ease;
    }
    .capabilities .route a:hover {
      color: var(--primary-hover, #3A2268);
    }
    .capabilities .route a + a {
      margin-left: 1.2rem;
    }

.why-choose {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4.5rem 1.25rem;
    }

    .why-choose .inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .why-choose h2 {
        font-size: 1.9rem;
        line-height: 1.25;
        margin: 0 0 1.5rem;
        font-weight: 700;
        color: var(--page-fg);
    }

    .why-choose p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0 0 1.4rem;
        color: var(--page-fg);
    }

    .why-choose p:last-of-type {
        margin-bottom: 0;
    }

    .why-choose .route {
        margin-top: 2.2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--card-border, #E0D9EC);
        font-size: 0.95rem;
        color: var(--muted-fg, #6B5B8A);
    }

    .why-choose .route a {
        color: var(--primary-bg, #4B2E83);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 600;
    }

    .why-choose .route a:hover {
        color: var(--primary-hover, #3A2268);
    }

    @media (max-width: 640px) {
        .why-choose {
            padding: 3rem 1.25rem;
        }

        .why-choose h2 {
            font-size: 1.6rem;
        }
    }

.why-choose {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.5rem 3.5rem;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.1rem;
      line-height: 1.25;
      margin: 0 0 1.1rem;
      font-weight: 700;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0;
      max-width: 60ch;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 5.5rem 2rem 4rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.1rem;
      }
    }

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

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

    .support .intro {
      margin-bottom: 3rem;
    }

    .support h2 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 700;
    }

    .support .intro p {
      margin: 0 0 0.75rem;
      line-height: 1.6;
      max-width: 70ch;
    }

    .support .channels {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .support .channel {
      flex: 1 1 220px;
    }

    .support .channel h3 {
      font-size: 1.1rem;
      margin: 0 0 0.5rem;
      font-weight: 700;
    }

    .support .channel p {
      margin: 0;
      line-height: 1.55;
      font-size: 0.95rem;
    }

    .support .channel a {
      color: var(--brand-primary-bg, #4B2E83);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .support .response-time {
      padding-top: 1.5rem;
    }

    .support .response-time h3 {
      font-size: 1.1rem;
      margin: 0 0 0.75rem;
      font-weight: 700;
    }

    .support .response-time p {
      margin: 0 0 0.75rem;
      line-height: 1.6;
      max-width: 70ch;
    }

    .support .route {
      margin-top: 1.5rem;
      font-size: 0.95rem;
    }

    .support .route a {
      color: var(--brand-primary-bg, #4B2E83);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

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

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

      .support .channels {
        gap: 1.5rem;
      }
    }

.support {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

  .how-it-works h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
  }

  .how-it-works .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 640px;
  }

  .how-it-works .setup,
  .how-it-works .next {
    border-top: 2px solid var(--card-border);
    padding-top: 1.5rem;
  }

  .how-it-works .setup {
    margin-bottom: 2rem;
  }

  .how-it-works h3 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
  }

  .how-it-works p {
    line-height: 1.6;
    margin: 0 0 1rem;
    max-width: 620px;
  }

  .how-it-works p:last-child {
    margin-bottom: 0;
  }

  @media (min-width: 700px) {
    .how-it-works .inner {
      display: block;
    }

    .how-it-works .setup,
    .how-it-works .next {
      display: inline-block;
      vertical-align: top;
      width: calc(50% - 1.5rem);
    }

    .how-it-works .setup {
      margin-right: 3rem;
      margin-bottom: 0;
    }
  }

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

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4.5rem 1.5rem 5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      margin: 0 0 1rem;
      font-size: 2.1rem;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      margin: 0;
      font-size: 1.1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.88);
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 5.5rem 2rem 6rem;
      }
      .second-hero-block h1 {
        font-size: 2.6rem;
      }
      .second-hero-block p {
        font-size: 1.2rem;
      }
    }

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

  .support .inner {
    max-width: 880px;
    margin: 0 auto;
  }

  .support .intro {
    max-width: 640px;
    margin-bottom: 48px;
  }

  .support h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: 700;
  }

  .support .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .support .channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 1px solid var(--card-border);
    padding-top: 40px;
    margin-bottom: 40px;
  }

  .support .channel h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
  }

  .support .channel p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 12px;
    color: var(--muted-fg);
  }

  .support .channel a {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--accent-bg);
    padding-bottom: 2px;
  }

  .support .channel a:hover {
    color: var(--primary-hover);
  }

  .support .note {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
  }

  .support .note p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: var(--muted-fg);
    max-width: 520px;
  }

  .support .route {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border-bottom: 1px solid var(--accent-bg);
    padding-bottom: 2px;
  }

  .support .route:hover {
    color: var(--primary-hover);
  }

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

    .support .channels {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .support .note {
      flex-direction: column;
      align-items: flex-start;
    }
  }

.support {
  background: var(--page-bg);
  color: var(--page-fg);
}

.stay-in-touch {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4rem 1.5rem;
  }
  .stay-in-touch .inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .stay-in-touch .intro {
    max-width: 640px;
  }
  .stay-in-touch h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: 700;
  }
  .stay-in-touch .intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
  }
  .stay-in-touch .contact-lines {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .stay-in-touch .line {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .stay-in-touch .line span {
    font-weight: 700;
    min-width: 5.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding-top: 0.15rem;
  }
  .stay-in-touch a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
  }
  .stay-in-touch a:hover {
    text-decoration-color: #fff;
  }

.stay-in-touch {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.5rem 4rem;
  }

  .second-hero-block .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--muted-fg);
    max-width: 640px;
  }

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

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

    .social-proof h2 {
        font-size: 1.9rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 1rem 0;
    }

    .social-proof .inner > p {
        font-size: 1.05rem;
        line-height: 1.6;
        opacity: 0.85;
        margin: 0 0 2.5rem 0;
        max-width: 60ch;
    }

    .social-proof .quotes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .social-proof .quote {
        margin: 0;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.06);
        border-left: 3px solid var(--accent-bg);
        border-radius: 8px;
    }

    .social-proof .quote p {
        font-size: 0.98rem;
        line-height: 1.65;
        margin: 0 0 1.2rem 0;
    }

    .social-proof .quote footer {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .social-proof .name {
        font-weight: 700;
        font-size: 0.95rem;
    }

    .social-proof .role {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    @media (max-width: 700px) {
        .social-proof .quotes {
            grid-template-columns: 1fr;
        }
    }

.social-proof {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.clarifications {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4.5rem 1.25rem;
  }

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

  .clarifications h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    font-weight: 700;
  }

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

  .clarifications p:last-child {
    margin-bottom: 0;
  }

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

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

    .recommendations h2 {
        font-size: 1.8rem;
        line-height: 1.25;
        margin: 0 0 1rem;
        color: var(--page-fg);
    }

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

    .recommendations .notes {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .recommendations .note {
        border-left: 3px solid var(--accent-bg);
        padding-left: 1.25rem;
    }

    .recommendations .note h3 {
        font-size: 1.15rem;
        line-height: 1.4;
        margin: 0 0 0.5rem;
        color: var(--page-fg);
    }

    .recommendations .note p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--muted-fg);
        margin: 0 0 0.75rem;
        max-width: 620px;
    }

    .recommendations .note a {
        color: var(--primary-bg);
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

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

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

    @media (min-width: 640px) {
        .recommendations {
            padding: 4.5rem 2rem;
        }

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

        .recommendations .notes {
            gap: 2rem;
        }
    }

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 72px 24px 64px;
    }
    .second-hero-block .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      font-weight: 800;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.65;
      margin: 0;
      max-width: 640px;
    }
    @media (max-width: 600px) {
      .second-hero-block {
        padding: 48px 20px 44px;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

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

  .next-step .inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }

  .next-step h2 {
    grid-column: 1 / -1;
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.25rem;
    max-width: 640px;
  }

  .next-step .lead {
    grid-column: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
  }

  .next-step .note {
    grid-column: 2;
    grid-row: 2;
    background: rgba(255, 255, 255, 0.08);
    color: var(--inverse-fg);
    border-left: 3px solid var(--accent-bg);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }

  .next-step .route {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

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

  .next-step .secondary {
    color: var(--inverse-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.95rem;
    opacity: 0.85;
  }

  .next-step .secondary:hover {
    opacity: 1;
  }

  @media (max-width: 640px) {
    .next-step .inner {
      grid-template-columns: 1fr;
    }

    .next-step .note {
      grid-column: 1;
      grid-row: auto;
    }
  }

.next-step {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

  .clarifications h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 24px;
    font-weight: 700;
  }

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

  .clarifications p:last-child {
    margin-bottom: 0;
  }

.recommendations {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.6rem;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      font-weight: 700;
    }
    .recommendations p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1rem;
      max-width: 40rem;
    }
    .recommendations .route {
      margin-top: 2rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .recommendations .route a {
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      width: fit-content;
    }
    .recommendations .route a:hover {
      text-decoration: underline;
    }

.second-hero-block {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.25rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
      max-width: 40rem;
      opacity: 0.9;
    }
    @media (min-width: 768px) {
      .second-hero-block {
        padding: 6.5rem 2rem;
      }
      .second-hero-block h1 {
        font-size: 2.75rem;
      }
    }

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

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

    .mission h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      color: var(--page-fg);
      letter-spacing: -0.01em;
    }

    .mission p {
      font-size: 1.0625rem;
      line-height: 1.7;
      margin: 0 0 1.25rem 0;
      color: var(--page-fg);
    }

    .mission p:last-child {
      margin-bottom: 0;
    }

    @media (min-width: 640px) {
      .mission {
        padding: 5rem 2rem;
      }

      .mission h1 {
        font-size: 2.5rem;
        line-height: 1.15;
        max-width: 15ch;
      }

      .mission p {
        font-size: 1.125rem;
      }
    }

.mission {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

        .people-behind .inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .people-behind h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: var(--page-fg);
        }

        .people-behind .inner > p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 2.5rem;
            max-width: 720px;
            color: var(--page-fg);
        }

        .people-behind .team-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .people-behind .member {
            border-left: 3px solid var(--primary-bg);
            padding: 0.25rem 0 0.25rem 1.25rem;
        }

        .people-behind .member h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.25rem;
            color: var(--page-fg);
        }

        .people-behind .role {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--muted-fg);
            margin: 0 0 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .people-behind .member p:last-child {
            font-size: 0.95rem;
            line-height: 1.55;
            margin: 0;
            color: var(--page-fg);
        }

        @media (min-width: 640px) {
            .people-behind {
                padding: 5rem 2rem;
            }

            .people-behind .team-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem 2rem;
                align-items: start;
            }

            .people-behind .member:first-child {
                grid-column: 1 / -1;
            }
        }

.second-hero-block {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4.5rem 1.5rem;
  }

  .second-hero-block .inner {
    max-width: 48rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    margin: 0 0 1.25rem;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .second-hero-block p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 36rem;
  }

  @media (max-width: 640px) {
    .second-hero-block {
      padding: 3rem 1.25rem;
    }

    .second-hero-block h1 {
      font-size: 1.75rem;
    }
  }

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }
  .next-step .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .next-step h2 {
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 700;
  }
  .next-step p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
  }
  .next-step .route {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .next-step .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .next-step .route a:hover {
    color: var(--primary-hover);
  }
  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
  }
  .next-step .action:hover {
    background: var(--accent-hover);
  }

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

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

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

  .social-proof h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
  }

  .social-proof .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    opacity: 0.9;
    max-width: 720px;
  }

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

  .social-proof .quote {
    margin: 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .social-proof .quote:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .social-proof .quote p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1rem;
  }

  .social-proof .quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .social-proof .quote cite {
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .social-proof .quote footer span {
    font-size: 0.85rem;
    opacity: 0.75;
  }

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

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

    .social-proof .quotes {
      gap: 2.5rem;
    }
  }

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.25rem;
  }

  .second-hero-block .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem;
    }

    .second-hero-block h1 {
      font-size: 2.5rem;
    }

    .second-hero-block p {
      font-size: 1.2rem;
    }
  }

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

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

    .faq h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      font-weight: 700;
    }

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

    .faq .item {
      border-bottom: 1px solid var(--card-border);
      padding: 1.5rem 0;
    }

    .faq .item:first-of-type {
      border-top: 1px solid var(--card-border);
    }

    .faq .item h3 {
      font-size: 1.15rem;
      line-height: 1.35;
      margin: 0 0 0.6rem;
      font-weight: 700;
    }

    .faq .item p {
      font-size: 0.98rem;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0;
      max-width: 660px;
    }

    .faq .route {
      margin: 2.5rem 0 0;
      font-size: 0.98rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

    .faq .route a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .faq .route a:hover {
      color: var(--primary-hover);
    }

.faq {
  background: var(--page-bg);
  color: var(--page-fg);
}

.value-points {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .value-points .inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .value-points h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1.2rem;
    color: var(--page-fg);
  }
  .value-points p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--page-fg);
  }
  .value-points .route {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .value-points .route a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .value-points .route a:hover {
    background: var(--primary-hover);
  }
  .value-points .route a:last-child {
    background: transparent;
    color: var(--primary-bg);
    border: 1px solid var(--primary-bg);
  }
  .value-points .route a:last-child:hover {
    background: var(--muted-bg);
  }

.value-points {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

    .capabilities h2 {
      font-size: 1.8rem;
      line-height: 1.3;
      margin: 0 0 1rem;
      max-width: 640px;
    }

    .capabilities .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 2.5rem;
      max-width: 620px;
    }

    .capabilities .route {
      display: block;
      margin: 0 0 2rem;
    }

    .capabilities .route-item {
      border-left: 3px solid var(--accent-bg, #D4A017);
      padding: 0 0 1.5rem 1.25rem;
      margin: 0 0 1.5rem 0;
    }

    .capabilities .route-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .capabilities .route-item h3 {
      font-size: 1.1rem;
      line-height: 1.4;
      margin: 0 0 0.5rem;
    }

    .capabilities .route-item p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      max-width: 560px;
    }

    .capabilities .note {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 2rem 0 0;
      max-width: 560px;
    }

    .capabilities .note a {
      color: var(--primary-bg, #4B2E83);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .capabilities .note a:hover {
      color: var(--primary-hover, #3A2268);
    }

    @media (min-width: 640px) {
      .capabilities {
        padding: 5rem 2rem;
      }

      .capabilities h2 {
        font-size: 2rem;
      }

      .capabilities .lead {
        font-size: 1.1rem;
      }
    }

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 72px 24px;
    }
    .second-hero-block .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.1rem;
      line-height: 1.25;
      margin: 0 0 18px 0;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
      max-width: 640px;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 96px 32px;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.1rem;
      }
    }

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

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

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

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

  .clarifications .notes {
    margin-top: 2rem;
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.5rem;
  }

  .clarifications .note {
    padding: 1rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }

  .clarifications .note:last-child {
    border-bottom: none;
  }

  .clarifications .note h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
  }

  .clarifications .note p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

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

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

  .feedback h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 700;
  }

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

  .feedback .entries {
    display: block;
  }

  .feedback .entry {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .feedback .entry:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .feedback .entry-author {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.75;
  }

.feedback {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.partners {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 56px 20px 64px;
    }
    .partners .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .partners h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }
    .partners .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 36px;
      color: var(--muted-fg);
    }
    .partners .list {
      border-top: 1px solid var(--card-border);
    }
    .partners .entry {
      padding: 20px 0;
      border-bottom: 1px solid var(--card-border);
    }
    .partners .entry h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 6px;
    }
    .partners .entry .meta {
      font-size: 0.92rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (min-width: 640px) {
      .partners {
        padding: 72px 24px 80px;
      }
      .partners h2 {
        font-size: 1.8rem;
      }
      .partners .lead {
        font-size: 1.05rem;
      }
    }

.partners {
  background: var(--page-bg);
  color: var(--page-fg);
}

.blog-item {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3.5rem 1.25rem 4rem;
        }
        .blog-item .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .blog-item .date {
            font-size: 0.85rem;
            color: var(--muted-fg);
            margin: 0 0 0.75rem;
            letter-spacing: 0.02em;
        }
        .blog-item h1 {
            font-size: 2rem;
            line-height: 1.25;
            margin: 0 0 1.25rem;
            font-weight: 700;
        }
        .blog-item .lead {
            font-size: 1.1rem;
            line-height: 1.65;
            margin: 0 0 1.25rem;
        }
        .blog-item p {
            line-height: 1.7;
            margin: 0 0 1.1rem;
        }
        .blog-item .note {
            background: var(--muted-bg);
            color: var(--muted-fg);
            padding: 1rem 1.25rem;
            border-radius: 12px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .blog-item .more {
            margin-top: 1.75rem;
            font-size: 0.95rem;
            color: var(--muted-fg);
        }
        .blog-item .more a {
            color: var(--brand-primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .blog-item .more a:hover {
            color: var(--brand-primary-hover);
        }

.blog-item {
  background: var(--page-bg);
  color: var(--page-fg);
}

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  
  .blog-item .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .blog-item .meta {
    font-size: 0.9rem;
    color: var(--muted-fg);
    margin: 0 0 1.5rem;
  }
  
  .blog-item h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 700;
  }
  
  .blog-item .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 2rem;
  }
  
  .blog-item .divider {
    border-top: 1px solid var(--card-border);
    margin: 2rem 0;
  }
  
  .blog-item p {
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 1rem;
  }
  
  .blog-item .note {
    font-size: 0.95rem;
    color: var(--muted-fg);
    margin-bottom: 0.75rem;
  }
  
  .blog-item .route {
    margin: 0;
  }
  
  .blog-item .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
  }
  
  .blog-item .route a:hover {
    color: var(--primary-hover);
  }

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 48px 20px;
  }
  
  .blog-item .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .blog-item .date {
    font-size: 14px;
    color: var(--muted-fg);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-item h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
  }
  
  .blog-item .lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 24px;
  }
  
  .blog-item p {
    line-height: 1.7;
    margin: 0 0 18px;
    font-size: 16px;
  }
  
  .blog-item h2 {
    font-size: 22px;
    margin: 32px 0 12px;
    font-weight: 700;
  }
  
  .blog-item .notes {
    margin: 24px 0;
    padding-left: 20px;
  }
  
  .blog-item .notes li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
  }
  
  .blog-item .route {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 15px;
    line-height: 1.7;
  }
  
  .blog-item a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  .blog-item a:hover {
    color: var(--primary-hover);
  }

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem 3rem;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    margin: 0 0 1.25rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding-top: 5rem;
    }

    .second-hero-block h1 {
      font-size: 2.4rem;
    }

    .second-hero-block p {
      font-size: 1.1rem;
    }
  }

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

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

  .contacts h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .contacts p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
  }

  .contacts .channels {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .contacts .channel {
    display: flex;
    flex-direction: column;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--card-border, #E0D9EC);
  }

  .contacts .channel:last-child {
    border-bottom: none;
  }

  .contacts .channel-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-primary-bg, #4B2E83);
    margin-bottom: 0.25rem;
  }

  .contacts .channel-value {
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
    text-decoration: none;
  }

  .contacts a.channel-value:hover {
    color: var(--brand-primary-hover, #3A2268);
    text-decoration: underline;
  }

  @media (min-width: 640px) {
    .contacts .channel {
      flex-direction: row;
      align-items: baseline;
      gap: 1.5rem;
    }

    .contacts .channel-label {
      min-width: 160px;
      margin-bottom: 0;
    }
  }

.contacts {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.map {
    background: #FFFFFF;
    color: #2D1B4E;
    padding: 3.5rem 1.5rem;
  }

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

  .map h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.2rem;
    color: #2D1B4E;
    line-height: 1.2;
  }

  .map p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: #2D1B4E;
  }

  .map p:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid #E0D9EC;
  }

  @media (min-width: 640px) {
    .map {
      padding: 4.5rem 2rem;
    }

    .map h2 {
      font-size: 2rem;
    }
  }

.map {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

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

  .form h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1.2rem;
    color: var(--page-fg);
  }

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

  .form form {
    margin-top: 2rem;
  }

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

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

  .form input,
  .form select,
  .form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--card-border, #E0D9EC);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--card-fg);
    box-sizing: border-box;
  }

  .form input:focus,
  .form select:focus,
  .form textarea:focus {
    outline: 2px solid var(--primary-bg);
    outline-offset: 1px;
  }

  .form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form button {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
  }

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

  @media (max-width: 600px) {
    .form {
      padding: 3rem 1.2rem;
    }
    .form h2 {
      font-size: 1.5rem;
    }
  }

.form {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

  .policy-items .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .policy-items h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

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

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

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

  .policy-items h2 {
    font-size: 1.15rem;
    margin: 0 0 0.6rem;
  }

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

.policy-items {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

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

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

    .terms-items h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 800;
    }

    .terms-items .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 3rem;
      color: var(--muted-fg);
    }

    .terms-items .rules {
      display: block;
    }

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

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

    .terms-items .rule h2 {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0 0 0.5rem;
      color: var(--primary-bg);
    }

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

    .terms-items .closing {
      margin-top: 3rem;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

.terms-items {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 72px 24px 80px;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      margin: 0 0 18px;
      font-size: 2.1rem;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 60ch;
    }
    @media (max-width: 600px) {
      .second-hero-block {
        padding: 48px 20px 56px;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
    }

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

  .thank .inner {
    max-width: 960px;
    margin: 0 auto;
    display: block;
  }

  .thank .note {
    max-width: 640px;
    margin-bottom: 48px;
  }

  .thank .note-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-primary-bg);
    margin: 0 0 12px;
  }

  .thank h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 800;
  }

  .thank .note-text {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .thank .media {
    background: var(--muted-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: 0;
  }

  .thank .media-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--brand-primary-bg);
    margin: 0 0 8px;
  }

  .thank .media-text {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
    color: var(--muted-fg);
  }

  .thank .aside {
    max-width: 480px;
    padding: 8px 0 0 24px;
    border-left: 3px solid var(--accent-bg);
    margin-left: 0;
  }

  .thank .aside-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--brand-primary-bg);
    margin: 0 0 8px;
  }

  .thank .aside-text {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
    color: var(--muted-fg);
  }

  .thank .route {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-primary-bg);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-bg);
    padding-bottom: 2px;
    transition: color 0.2s ease;
  }

  .thank .route:hover {
    color: var(--brand-primary-hover);
  }

  @media (min-width: 768px) {
    .thank {
      padding: 96px 32px;
    }

    .thank .inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 48px;
      align-items: start;
    }

    .thank .note {
      grid-column: 1;
      margin-bottom: 0;
    }

    .thank .media {
      grid-column: 2;
      margin-left: 0;
      margin-top: 0;
    }

    .thank .aside {
      grid-column: 1 / -1;
      margin-top: 48px;
      max-width: 480px;
    }
  }

.thank {
  background: var(--page-bg);
  color: var(--page-fg);
}

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

  .next-step .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 1.2rem;
    font-weight: 700;
  }

  .next-step .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 60ch;
  }

  .next-step .note {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.8rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-bg, #D4A017);
    color: var(--muted-fg, #6B5B8A);
    max-width: 58ch;
  }

  .next-step .route {
    display: inline-block;
    background: var(--primary-bg, #4B2E83);
    color: var(--primary-fg, #FFFFFF);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
    transition: background 0.2s ease;
  }

  .next-step .route:hover {
    background: var(--primary-hover, #3A2268);
  }

  .next-step .aside {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: var(--muted-fg, #6B5B8A);
  }

  .next-step .aside a {
    color: var(--primary-bg, #4B2E83);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .next-step .aside a:hover {
    text-decoration: none;
  }

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

  .404 .inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .404 .code {
    color: var(--accent-bg);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }

  .404 h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 800;
  }

  .404 .lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 32px;
  }

  .404 .route {
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .404 .route a {
    color: var(--primary-bg);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
  }

  .404 .route a:hover {
    border-bottom-color: var(--accent-bg);
  }

  @media (max-width: 480px) {
    .404 {
      padding: 56px 20px;
    }

    .404 h1 {
      font-size: 26px;
    }

    .404 .route {
      flex-direction: column;
      gap: 8px;
    }
  }

.404 {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}