:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.69;

  --max-w: 940px;
  --space-x: 1.15rem;
  --space-y: 1.5rem;
  --gap: 0.77rem;
  --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: 0.69rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.09);

  --overlay: rgba(15, 23, 42, 0.55);
  --anim-duration: 460ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1D4ED8;
  --brand-contrast: #FFFFFF;
  --accent: #10B981;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --page-bg: #F8FAFC;
  --page-fg: #1E293B;
  --muted-bg: #F1F5F9;
  --muted-fg: #475569;
  --card-bg: #FFFFFF;
  --card-fg: #1E293B;
  --card-border: #E2E8F0;
  --inverse-bg: #0F172A;
  --inverse-fg: #F8FAFC;
  --primary-bg: #1D4ED8;
  --primary-fg: #FFFFFF;
  --primary-hover: #1E40AF;
  --accent-bg: #10B981;
  --accent-fg: #FFFFFF;
  --accent-hover: #059669;
  --gradient-hero-bg: linear-gradient(135deg, #1D4ED8 0%, #10B981 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #3B82F6;

  --link: #1D4ED8;
  --link-hover: #10B981;

  --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-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: var(--gap);
  }

  .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: opacity var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    opacity: 0.8;
  }

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

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

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

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

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

  .nav-link:hover::after {
    transform: scaleX(1);
  }

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

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

  .burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
  }

  .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-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-wrapper {
      flex-wrap: wrap;
      padding: 0.75rem var(--space-x);
      gap: 0.5rem;
    }

    .logo {
      order: 1;
      margin-right: auto;
    }

    .burger-btn {
      display: flex;
      order: 2;
    }

    .cta-btn {
      display: none;
    }

    .main-nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav.is-open {
      max-height: 400px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0 1rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 0;
      font-size: var(--font-size-md);
      border-bottom: 1px solid var(--card-border);
    }

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

    .nav-list li:last-child .nav-link {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .main-nav {
      margin: 0 auto;
    }
  }

.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:1fr 1.5fr 1.5fr;gap:var(--space-block)}.footer-column{display:flex;flex-direction:column}.footer-brand{gap:var(--space-y)}.footer-logo{font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;letter-spacing:-0.02em}.footer-logo:hover{color:inherit;opacity:0.9}.footer-tagline{margin:0;font-size:var(--font-size-sm);color:inherit;opacity:0.8}.footer-heading{font-size:var(--font-size-md);font-weight:600;margin:0 0 var(--space-y);color:inherit}.footer-nav{gap:var(--space-y)}.footer-links{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2, 1fr);column-gap:var(--space-x);row-gap:calc(var(--space-y) * 0.5)}.footer-links li{margin:0}.footer-links a,
    .footer-legal a,
    .footer-contact-info a{color:inherit;text-decoration:none;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-links a:hover,
    .footer-legal a:hover,
    .footer-contact-info a:hover{opacity:0.7;text-decoration:underline;text-underline-offset:4px;color:inherit}.footer-legal{display:flex;gap:var(--space-x);margin-top:auto;padding-top:var(--space-y);border-top:1px solid rgba(255, 255, 255, 0.1)}.footer-contact{gap:var(--space-y)}.footer-contact-info{display:flex;flex-direction:column;gap:calc(var(--space-y) * 0.5)}.footer-contact-info p{margin:0;font-size:var(--font-size-sm);color:inherit}.footer-address{line-height:var(--line-height-base)}.footer-disclaimer{margin:var(--space-y) 0 0;font-size:var(--font-size-sm);opacity:0.7;line-height:var(--line-height-base);color:inherit}

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

.cookies {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 760px;
  z-index: 1000;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.notice {
  background: var(--card-bg);
  color: var(--card-fg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-card);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

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

.title {
  font-size: var(--font-size-lg);
  margin: 0;
  font-weight: 600;
}

.text {
  margin: 0;
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.actions button {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.cookie-accept {
  background: var(--primary-bg);
  color: var(--primary-fg);
}

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

.cookie-reject {
  background: var(--btn-ghost-bg);
  color: var(--page-fg);
  border-color: var(--card-border);
}

.cookie-reject:hover {
  background: var(--btn-ghost-bg-hover);
}

.cookie-manage {
  background: transparent;
  color: var(--link);
  text-decoration: underline;
}

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

@media (min-width: 640px) {
  .notice {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .copy {
    flex: 1;
  }

  .actions {
    flex-shrink: 0;
  }
}

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 5rem 1.5rem 4rem;
  }

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

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

  .intro-focus .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 2.2rem;
    max-width: 640px;
    opacity: 0.92;
  }

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

  .intro-focus .action {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease;
  }

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

  .intro-focus .secondary {
    color: var(--gradient-hero-fg);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.9;
  }

  .intro-focus .secondary:hover {
    opacity: 1;
  }

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

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

    .intro-focus .lead {
      font-size: 1rem;
    }
  }

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

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

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

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

    .value-points .inner > p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2.5rem;
      max-width: 640px;
    }

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

    .value-points .note-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
      color: var(--page-fg);
    }

    .value-points .note-text {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      color: var(--muted-fg);
      max-width: 620px;
    }

    .value-points .route {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 2.5rem 0 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
      color: var(--muted-fg);
    }

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

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

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

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

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

  .faq h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
  }

  .faq .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  .faq .entry {
    border-bottom: 1px solid var(--muted-bg);
    padding: 1.25rem 0;
  }

  .faq .entry:first-of-type {
    border-top: 1px solid var(--muted-bg);
  }

  .faq .entry h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem;
  }

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

  .faq .note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2rem 0 0;
  }

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

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

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

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

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

    .next-step h2 {
      font-size: 1.75rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 700;
    }

    .next-step p {
      font-size: 1.0625rem;
      line-height: 1.65;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }

    .next-step .route {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      align-items: center;
    }

    .next-step .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.2s ease;
    }

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

    .next-step .quiet {
      color: var(--brand-primary);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .next-step .quiet:hover {
      color: var(--primary-hover);
    }

.next-step {
  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;
  }

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

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

  .second-hero-block p {
    font-size: 1.125rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.92;
    max-width: 40rem;
  }

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

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

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

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
  }
  .our-story .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .our-story h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }
  .our-story .lead {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: var(--muted-fg);
  }
  .our-story .entry {
    border-left: 2px solid var(--brand-primary-bg);
    padding-left: 20px;
    margin-bottom: 28px;
  }
  .our-story .year {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary-bg);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .our-story .detail {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
  }
  .our-story .note {
    font-size: 15px;
    line-height: 1.6;
    margin: 36px 0 0;
    padding: 16px 20px;
    background: var(--muted-bg);
    color: var(--muted-fg);
    border-radius: 6px;
  }

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

.identity {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 5rem 1.5rem;
  }

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

  .identity .lead {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
  }

  .identity h1 {
    margin: 0 0 1.5rem;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .identity p {
    margin: 0 0 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .identity .note {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
  }

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

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

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

  .timeline h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 600;
  }

  .timeline > .inner > p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 48px;
  }

  .timeline .entry {
    border-left: 2px solid var(--card-border);
    padding: 0 0 40px 28px;
    margin-left: 8px;
    position: relative;
  }

  .timeline .entry:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }

  .timeline .entry::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-bg);
  }

  .timeline .date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-bg);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .timeline .entry h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px;
  }

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

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

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

    .timeline .entry {
      padding-left: 20px;
    }
  }

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

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px;
    border-bottom: 1px solid var(--muted-bg);
  }

  .second-hero-block .inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }

  .second-hero-block .lead {
    flex: 0 0 62%;
  }

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

  .second-hero-block .lead p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 34em;
  }

  .second-hero-block .note {
    flex: 0 0 30%;
    border-left: 3px solid var(--accent-bg);
    padding-left: 20px;
    margin-top: 8px;
  }

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

  @media (max-width: 760px) {
    .second-hero-block {
      padding: 48px 20px;
    }

    .second-hero-block .inner {
      flex-direction: column;
      gap: 24px;
    }

    .second-hero-block .lead,
    .second-hero-block .note {
      flex: 1 1 auto;
    }

    .second-hero-block .note {
      border-left: none;
      border-top: 3px solid var(--accent-bg);
      padding-left: 0;
      padding-top: 16px;
    }
  }

.how-it-works {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .how-it-works .inner {
        max-width: 760px;
        margin: 0 auto;
    }
    .how-it-works h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 1rem;
        letter-spacing: -0.02em;
    }
    .how-it-works p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 1rem;
    }
    .how-it-works .steps {
        margin: 2.5rem 0 0;
        padding: 0;
        list-style: none;
    }
    .how-it-works .step {
        margin: 0 0 2rem;
        padding: 0 0 0 3rem;
        position: relative;
    }
    .how-it-works .step:last-child {
        margin-bottom: 0;
    }
    .how-it-works .step-num {
        position: absolute;
        left: 0;
        top: 0.1rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--brand-primary-bg, #1D4ED8);
        letter-spacing: 0.05em;
    }
    .how-it-works .step h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.4rem;
    }
    .how-it-works .step p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin: 0;
        color: var(--muted-fg, #475569);
    }
    .how-it-works .route {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--card-border, #E2E8F0);
        font-size: 0.9rem;
        color: var(--muted-fg, #475569);
    }
    .how-it-works .route a {
        color: var(--brand-primary-bg, #1D4ED8);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .how-it-works .route a:hover {
        color: var(--brand-primary-hover, #1E40AF);
    }

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

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

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

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

  .faq .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  .faq .entry {
    margin-bottom: 2rem;
  }

  .faq .entry h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }

  .faq .entry p {
    line-height: 1.6;
    margin: 0;
  }

  .faq .more {
    margin-top: 2.5rem;
    line-height: 1.6;
  }

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

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

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

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

    .capabilities h2 {
      font-size: 1.75rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 650;
      letter-spacing: -0.01em;
    }

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

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

    .capabilities .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }

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

    .capabilities .note {
      margin: 1.5rem 0 0;
      padding: 1rem 1.25rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 8px;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .capabilities .route {
      margin: 1.5rem 0 0;
      font-size: 0.95rem;
    }

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

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

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

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

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

  .second-hero-block h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
  }

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

  @media (max-width: 640px) {
    .second-hero-block {
      padding: 64px 20px;
    }

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

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

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

    .next-step .inner {
        max-width: 42rem;
        margin: 0 auto;
        text-align: center;
    }

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

    .next-step p {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin: 0 0 2rem;
    }

    .next-step .action {
        display: inline-block;
        background: var(--primary-bg);
        color: var(--primary-fg);
        padding: 0.75rem 1.75rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

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

    .next-step .route {
        font-size: 0.875rem;
        color: var(--muted-fg);
        margin: 2rem 0 0;
    }

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

    .next-step .route a:hover {
        border-bottom-color: var(--primary-bg);
    }

.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.75rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    max-width: 640px;
  }
  .social-proof .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 720px;
    opacity: 0.85;
  }
  .social-proof .notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .social-proof .note {
    background: rgba(248, 250, 252, 0.06);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-bg);
  }
  .social-proof .note-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1rem;
  }
  .social-proof .note-meta {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.7;
  }
  .social-proof .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    opacity: 0.75;
  }
  @media (max-width: 700px) {
    .social-proof .notes {
      grid-template-columns: 1fr;
    }
  }

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

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem 4rem;
    }
    .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: 700;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.7;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 6rem 2rem 4.5rem;
      }
      .second-hero-block h1 {
        font-size: 2.75rem;
      }
    }

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

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

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

  .support .intro h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.25rem;
    max-width: 620px;
  }

  .support .intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
    color: var(--inverse-fg);
    opacity: 0.85;
  }

  .support .route {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 250, 252, 0.2);
  }

  .support .route a {
    color: var(--inverse-fg);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(248, 250, 252, 0.4);
    transition: text-decoration-color 0.2s ease;
  }

  .support .route a:hover {
    text-decoration-color: var(--inverse-fg);
  }

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

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

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

        .timeline h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0 0 1rem 0;
            letter-spacing: -0.02em;
        }

        .timeline .inner > p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 2.5rem 0;
        }

        .timeline .line {
            border-left: 2px solid var(--muted-bg);
            padding-left: 1.5rem;
        }

        .timeline .entry {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--muted-bg);
        }

        .timeline .entry:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .timeline .entry h3 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            color: var(--brand-primary-bg);
        }

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

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

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

  .value-points h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
  }

  .value-points .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    opacity: 0.85;
    max-width: 540px;
  }

  .value-points .entry {
    border-left: 3px solid var(--accent-bg);
    padding: 0 0 1.5rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  .value-points .entry:last-of-type {
    margin-bottom: 2.5rem;
  }

  .value-points .entry h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
  }

  .value-points .entry p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0.85;
  }

  .value-points .note {
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.75;
    margin: 0;
    max-width: 520px;
  }

  .value-points .note a {
    color: var(--accent-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .value-points .note a:hover {
    color: var(--accent-hover);
  }

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

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem 3rem;
    }
    .second-hero-block .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.25rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 2.5rem 1.25rem 2rem;
      }
      .second-hero-block h1 {
        font-size: 1.75rem;
      }
      .second-hero-block p {
        font-size: 1rem;
      }
    }

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

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

  .contact-intro h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 700;
  }

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

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

  .contact-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-fg);
    margin-bottom: 0.25rem;
  }

  .contact-value {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--page-fg);
    text-decoration: none;
  }

  .contact-note {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted-fg);
    margin: 1.5rem 0 0;
  }

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

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

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

    .support h2 {
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      letter-spacing: -0.01em;
    }

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

    .support .route {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--muted-bg);
    }

    .support .route-note {
      font-size: 0.95rem;
      color: var(--muted-fg);
      margin-bottom: 1.25rem;
      max-width: 60ch;
    }

    .support .choices {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .support .choice-link {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }

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

    .support .choice-link:last-child {
      background: transparent;
      color: var(--brand-primary);
      border: 1px solid var(--brand-primary);
      padding: 0.5rem 1.1rem;
    }

    .support .choice-link:last-child:hover {
      background: var(--muted-bg);
    }

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

.recommendations {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4.5rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 42rem;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .recommendations p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1rem;
      color: var(--inverse-fg);
      opacity: 0.85;
    }
    .recommendations .route {
      margin-top: 2rem;
      border-top: 1px solid rgba(248, 250, 252, 0.2);
      padding-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .recommendations .route a {
      color: var(--inverse-fg);
      text-decoration: none;
      font-size: 0.95rem;
      line-height: 1.5;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
      width: fit-content;
    }
    .recommendations .route a:hover {
      border-bottom-color: var(--accent-bg);
      color: var(--accent-bg);
    }
    @media (max-width: 640px) {
      .recommendations {
        padding: 3rem 1.25rem;
      }
      .recommendations h2 {
        font-size: 1.5rem;
      }
    }

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

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }
    @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.125rem;
      }
    }

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

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

  .next-step h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: inherit;
  }

  .next-step p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    color: inherit;
  }

  .next-step .route {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .next-step .route:hover {
    background: var(--primary-hover);
  }

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

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

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

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

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

  .social-proof .quote {
    background: var(--card-bg);
    color: var(--card-fg);
    border-left: 3px solid var(--primary-bg);
    padding: 1.5rem 1.75rem;
  }

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

  .social-proof .meta {
    font-size: 0.875rem;
    color: var(--muted-fg);
    margin: 0;
  }

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

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

.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: 2rem;
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .second-hero-block .lead {
      font-size: 1.125rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
      max-width: 640px;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 96px 32px 72px;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block .lead {
        font-size: 1.25rem;
      }
    }

.clarifications {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4.5rem 1.5rem;
  }
  .clarifications .inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .clarifications h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    max-width: 640px;
  }
  .clarifications .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 560px;
  }
  .clarifications .notes {
    display: block;
    margin: 0 0 2rem;
  }
  .clarifications .note {
    border-left: 3px solid var(--accent-bg);
    padding: 0.25rem 0 1.5rem 1.5rem;
    margin: 0 0 0.25rem;
    max-width: 720px;
  }
  .clarifications .note h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
  }
  .clarifications .note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  .clarifications .footnote {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    max-width: 640px;
    opacity: 0.75;
  }
  @media (min-width: 640px) {
    .clarifications .note {
      padding-left: 2rem;
    }
  }

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

.capabilities {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .capabilities .inner {
        max-width: 720px;
        margin: 0 auto;
    }
    .capabilities h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin: 0 0 1.25rem;
        font-weight: 600;
    }
    .capabilities p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 1rem;
    }
    .capabilities .route {
        margin-top: 1.5rem;
        font-size: 0.95rem;
        color: var(--muted-fg);
    }
    .capabilities .route a {
        color: var(--primary-bg);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .capabilities .route a:hover {
        color: var(--primary-hover);
    }

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 72px 24px;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 700;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.9;
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 48px 20px;
      }
      .second-hero-block h1 {
        font-size: 1.7rem;
      }
    }

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

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

  .feedback h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem;
    max-width: 640px;
  }

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

  .feedback .entries {
    display: block;
  }

  .feedback .entry {
    border-left: 3px solid var(--primary-bg);
    padding: 0 0 0 1.25rem;
    margin: 0 0 2rem;
  }

  .feedback .quote {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 0.5rem;
  }

  .feedback .author {
    font-size: 0.875rem;
    margin: 0;
  }

  .feedback .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    max-width: 640px;
  }

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

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

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

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

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

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

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

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

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

  .second-hero-block .inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

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

  .second-hero-block p {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0;
    color: var(--muted-fg);
    border-left: 3px solid var(--accent-bg);
    padding-left: 20px;
  }

  @media (max-width: 720px) {
    .second-hero-block {
      padding: 48px 20px 40px;
    }

    .second-hero-block .inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

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

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

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

  .feedback .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
  }

  .feedback .note {
    border-left: 3px solid var(--primary-bg);
    padding: 0.25rem 0 0.25rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .feedback .note h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
  }

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

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

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

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

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

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

  .social-proof .list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .social-proof .item {
    padding: 1.5rem 0;
    border-top: 1px solid var(--card-border);
  }

  .social-proof .item:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .social-proof .text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
  }

  .social-proof .meta {
    font-size: 0.875rem;
    color: var(--muted-fg);
    margin: 0;
  }

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

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

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

  .second-hero-block h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
  }

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

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

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

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

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

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

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

    .timeline .entry {
      border-left: 2px solid var(--primary-bg);
      padding: 0 0 2rem 1.5rem;
      margin-left: 0.25rem;
    }

    .timeline .entry:last-of-type {
      padding-bottom: 1.5rem;
    }

    .timeline .date {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--accent-bg);
      margin: 0 0 0.35rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .timeline h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }

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

    .timeline .closing {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 1.5rem 0 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
      color: var(--muted-fg);
    }

.how-it-works {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .how-it-works .inner {
        max-width: 860px;
        margin: 0 auto;
    }
    .how-it-works h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin: 0 0 0.75rem;
    }
    .how-it-works .lead {
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }
    .how-it-works .steps {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .how-it-works .step {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--card-border);
    }
    .how-it-works .step:first-child {
        padding-top: 0;
    }
    .how-it-works .step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .how-it-works .step-number {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: var(--primary-bg);
        margin-bottom: 0.4rem;
    }
    .how-it-works h3 {
        font-size: 1.15rem;
        line-height: 1.3;
        margin: 0 0 0.5rem;
    }
    .how-it-works p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    .how-it-works .note {
        margin-top: 2rem;
        font-size: 0.9rem;
        color: var(--muted-fg);
    }
    .how-it-works .note a {
        color: var(--primary-bg);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .how-it-works .note a:hover {
        color: var(--primary-hover);
    }

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

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

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

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

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
  }

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

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

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

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

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

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

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

  .how-it-works .steps {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .how-it-works .step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .how-it-works .step:first-child {
    padding-top: 0;
  }

  .how-it-works .step:last-child {
    border-bottom: none;
  }

  .how-it-works .step-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-bg);
    line-height: 1.4;
    min-width: 2rem;
  }

  .how-it-works .step-body h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 0.35rem;
  }

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

  .how-it-works .note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 2rem 0 0;
    padding-left: 3.25rem;
  }

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

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

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

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

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

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

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

.blog-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 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 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .blog-item h1 {
      font-size: 2rem;
      line-height: 1.25;
      margin: 0 0 1.25rem;
      font-weight: 700;
    }

    .blog-item .lead {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 2rem;
    }

    .blog-item .post-body p {
      font-size: 1rem;
      line-height: 1.75;
      margin: 0 0 1.25rem;
    }

    .blog-item .route {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border);
    }

    .blog-item .route p {
      font-size: 0.95rem;
      color: var(--muted-fg);
      margin: 0 0 0.5rem;
    }

    .blog-item .route a {
      color: var(--primary-bg);
      text-decoration: none;
      font-weight: 500;
    }

    .blog-item .route a:hover {
      text-decoration: underline;
    }

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

      .blog-item h1 {
        font-size: 2.5rem;
      }

      .blog-item .lead {
        font-size: 1.25rem;
      }
    }

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

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

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

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

    .blog-list .intro {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem 0;
      max-width: 640px;
    }

    .blog-list .entry {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-top: 1px solid var(--card-border, #E2E8F0);
    }

    .blog-list .entry:last-of-type {
      border-bottom: 1px solid var(--card-border, #E2E8F0);
    }

    .blog-list .entry img {
      width: 180px;
      height: 130px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      flex-shrink: 0;
    }

    .blog-list .entry-body {
      flex: 1;
    }

    .blog-list time {
      display: block;
      font-size: 0.85rem;
      color: var(--muted-fg, #475569);
      margin-bottom: 0.4rem;
    }

    .blog-list h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }

    .blog-list h3 a {
      color: inherit;
      text-decoration: none;
    }

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

    .blog-list .entry-body p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.75rem 0;
    }

    .blog-list .read {
      color: var(--primary-bg, #1D4ED8);
      font-weight: 500;
      font-size: 0.9rem;
      text-decoration: none;
    }

    .blog-list .read:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .blog-list .entry {
        flex-direction: column;
        gap: 0.75rem;
      }

      .blog-list .entry img {
        width: 100%;
        height: auto;
        max-height: 200px;
      }
    }

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

.blog-item {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 3rem 1.25rem;
    }
    .blog-item .inner {
        max-width: 720px;
        margin: 0 auto;
    }
    .blog-item .date {
        font-size: 0.85rem;
        color: var(--muted-fg);
        margin: 0 0 1rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .blog-item h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 0.75rem;
        font-weight: 700;
    }
    .blog-item .subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        color: var(--muted-fg);
        margin: 0 0 2rem;
        border-bottom: 1px solid var(--muted-bg);
        padding-bottom: 1.5rem;
    }
    .blog-item .content p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1.25rem;
    }
    .blog-item .more {
        font-size: 0.95rem;
        margin: 2.5rem 0 0;
        padding-top: 1.5rem;
        border-top: 1px solid var(--muted-bg);
    }
    .blog-item .more a {
        color: var(--primary-bg);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }
    .blog-item .more a:hover {
        border-bottom-color: var(--primary-bg);
    }

.blog-list {
    background: #F8FAFC;
    color: #1E293B;
    padding: 72px 24px;
  }

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

  .blog-list h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
  }

  .blog-list .intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 56px 0;
    max-width: 640px;
  }

  .blog-list .entry {
    margin-bottom: 56px;
  }

  .blog-list .entry:last-child {
    margin-bottom: 0;
  }

  .blog-list .entry-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .blog-list .entry-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .blog-list .entry-body {
    padding: 0 4px;
  }

  .blog-list .entry-date {
    font-size: 0.85rem;
    color: #475569;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .blog-list h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .blog-list .entry-description {
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 16px 0;
  }

  .blog-list .entry-more {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1D4ED8;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .blog-list .entry-link:hover .entry-more {
    color: #1E40AF;
  }

  @media (max-width: 600px) {
    .blog-list {
      padding: 48px 20px;
    }

    .blog-list h2 {
      font-size: 1.6rem;
    }

    .blog-list .intro {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .blog-list .entry {
      margin-bottom: 40px;
    }

    .blog-list h3 {
      font-size: 1.2rem;
    }
  }

.blog-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }
  .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;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .blog-item h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    font-weight: 700;
  }
  .blog-item .body p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }
  .blog-item .body p.more {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--muted-bg);
    font-size: 0.95rem;
  }
  .blog-item a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .blog-item a:hover {
    color: var(--primary-hover);
  }

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

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

    .blog-list h2 {
      font-size: 1.9rem;
      font-weight: 700;
      line-height: 1.25;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }

    .blog-list .intro {
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--muted-fg);
      margin: 0 0 3rem;
      max-width: 640px;
    }

    .blog-list .entry {
      border-top: 1px solid var(--card-border);
      padding: 2rem 0;
    }

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

    .blog-list .entry-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .blog-list .entry-image {
      margin-bottom: 1.25rem;
      border-radius: 8px;
      overflow: hidden;
      background: var(--muted-bg);
    }

    .blog-list .entry-image img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .blog-list .entry-content time {
      display: block;
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .blog-list .entry-content h3 {
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      color: var(--page-fg);
    }

    .blog-list .entry-content p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
      margin: 0 0 1rem;
      max-width: 720px;
    }

    .blog-list .entry-more {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--primary-bg);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .blog-list .entry-link:hover .entry-more {
      border-bottom-color: var(--primary-bg);
    }

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

      .blog-list h2 {
        font-size: 2.1rem;
      }

      .blog-list .entry {
        padding: 2.5rem 0;
      }
    }

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem 4rem;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.25rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .second-hero-block p {
      font-size: 1.125rem;
      line-height: 1.65;
      margin: 0;
      max-width: 620px;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding-top: 6rem;
        padding-bottom: 5rem;
      }
      .second-hero-block h1 {
        font-size: 2.75rem;
      }
    }

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

  .map .inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .map h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
  }

  .map p {
    margin: 0 0 1rem;
    max-width: 42rem;
    line-height: 1.6;
  }

  .map-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .map .entry {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--muted-bg);
  }

  .map .entry:last-child {
    border-bottom: none;
  }

  .map .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
  }

  .map .value {
    font-size: 1rem;
    line-height: 1.4;
  }

  .map a {
    color: var(--primary-bg);
    text-decoration: none;
  }

  .map a:hover {
    text-decoration: underline;
  }

  .map-note {
    font-size: 0.9rem;
    color: var(--muted-fg);
    margin-top: 0.5rem;
  }

  .map-visual {
    display: none;
  }

  @media (min-width: 48rem) {
    .map {
      padding: 5rem 2rem;
    }

    .map .inner {
      flex-direction: row;
      align-items: flex-start;
      gap: 4rem;
    }

    .map-info {
      flex: 1;
    }

    .map-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 12rem;
      padding-top: 2rem;
      flex-shrink: 0;
    }

    .map-line {
      display: block;
      height: 1px;
      background: var(--muted-bg);
      width: 100%;
    }

    .map-line:nth-child(2) {
      width: 75%;
    }

    .map-line:nth-child(3) {
      width: 50%;
    }

    .map-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background: var(--accent-bg);
      margin-top: 0.5rem;
    }
  }

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

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

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

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

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

    .contacts .channels {
        border-top: 1px solid var(--card-border);
        margin: 2rem 0 1.5rem;
    }

    .contacts .channel {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--card-border);
    }

    .contacts .channel h3 {
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin: 0 0 0.35rem;
    }

    .contacts .channel p {
        margin: 0;
        font-size: 1rem;
    }

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

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

    .contacts > .inner > p:last-child {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

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

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

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

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

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

  .form form {
    display: block;
  }

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

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
  }

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

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

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

  .form button {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-fg);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
  }

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

.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: 720px;
        margin: 0 auto;
    }
    .policy-items h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 0.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    .policy-items .update {
        font-size: 0.875rem;
        color: var(--muted-fg);
        margin: 0 0 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--muted-bg);
    }
    .policy-items .lead {
        font-size: 1.125rem;
        line-height: 1.6;
        margin: 0 0 2.5rem;
        color: var(--muted-fg);
    }
    .policy-items h2 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 2.5rem 0 0.75rem;
        line-height: 1.3;
    }
    .policy-items p {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin: 0 0 1.25rem;
    }
    .policy-items p:last-child {
        margin-bottom: 0;
    }

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

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

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

        .terms-items h1 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 1rem;
            letter-spacing: -0.02em;
        }

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

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

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

        .terms-items .note h2 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0 0 0.75rem;
            letter-spacing: -0.01em;
        }

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

        .terms-items .contact {
            margin-top: 2.5rem;
            font-size: 0.95rem;
            color: var(--muted-fg);
        }

        .terms-items .contact a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

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

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

            .terms-items h1 {
                font-size: 2.5rem;
            }
        }

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

.second-hero-block {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 96px 24px 72px;
        }
        .second-hero-block .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .second-hero-block h1 {
            font-size: 2.4rem;
            line-height: 1.15;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin: 0 0 20px;
            color: var(--page-fg);
        }
        .second-hero-block .lead {
            font-size: 1.15rem;
            line-height: 1.65;
            margin: 0 0 16px;
            color: var(--page-fg);
        }
        .second-hero-block .note {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            color: var(--muted-fg);
            border-top: 1px solid var(--muted-bg);
            padding-top: 20px;
            max-width: 560px;
        }
        @media (max-width: 640px) {
            .second-hero-block {
                padding: 64px 20px 48px;
            }
            .second-hero-block h1 {
                font-size: 1.9rem;
            }
            .second-hero-block .lead {
                font-size: 1.05rem;
            }
        }

.thank {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 20px;
  }
  .thank .inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .thank h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
  }
  .thank p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 32px;
  }
  .thank .route {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .thank .route a {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .thank .route a:hover {
    border-bottom-color: var(--primary-bg);
  }

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

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

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

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

  .next-step p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 2rem;
  }

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

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

  .next-step .route {
    font-size: 0.9375rem;
    color: var(--muted-fg);
    margin-top: 2.5rem;
  }

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

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

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

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

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

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

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

  .404 .route {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .404 .route a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: var(--primary-bg);
    color: var(--primary-fg);
    transition: background 0.2s ease;
  }

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

  .404 .route a:nth-child(2) {
    background: transparent;
    color: var(--primary-bg);
    border: 1px solid var(--primary-bg);
  }

  .404 .route a:nth-child(2):hover {
    background: var(--muted-bg);
  }

  .404 .route a:nth-child(3) {
    background: transparent;
    color: var(--page-fg);
    border: 1px solid var(--muted-fg);
  }

  .404 .route a:nth-child(3):hover {
    background: var(--muted-bg);
  }

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

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

    .404 .route {
      flex-direction: column;
    }

    .404 .route a {
      text-align: center;
    }
  }

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