:root {
  --font-family: "Rajdhani", sans-serif;
  --font-size-base: 18.4px;
  --line-height-base: 1.78;

  --max-w: 1460px;
  --space-x: 2.09rem;
  --space-y: 1.5rem;
  --gap: 2.31rem;
  --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.33rem;
  --radius-lg: 0.87rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.13);
  --shadow-md: 0 12px 18px rgba(0,0,0,0.17);
  --shadow-lg: 0 26px 32px rgba(0,0,0,0.21);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 280ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #2a7de1;
  --brand-contrast: #ffffff;
  --accent: #1a4f8a;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f2f5fa;
  --neutral-300: #b0b8c8;
  --neutral-600: #4a5568;
  --neutral-800: #1a2332;
  --neutral-900: #0d1420;

  --page-bg: #0d1420;
  --page-fg: #e2e8f0;
  --muted-bg: #141e30;
  --muted-fg: #cbd5e1;
  --card-bg: #1a2332;
  --card-fg: #e2e8f0;
  --card-border: #2d3a50;
  --inverse-bg: #f0f4ff;
  --inverse-fg: #0a1a3a;
  --primary-bg: #2a7de1;
  --primary-fg: #ffffff;
  --primary-hover: #3a8df1;
  --accent-bg: #1a4f8a;
  --accent-fg: #ffffff;
  --accent-hover: #2a5f9a;
  --gradient-hero-bg: linear-gradient(135deg, #0a1a3a 0%, #1a4f8a 50%, #0d1420 100%);
  --gradient-hero-fg: #e2e8f0;
  --gradient-accent-bg: linear-gradient(135deg, #2a7de1, #1a4f8a);
  --gradient-accent-fg: #ffffff;

  --ring: #2a7de1;

  --link: #2a7de1;
  --link-hover: #1a4f8a;

  --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 {
  background: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

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

.logo {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
}

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

.main-nav .nav-list a {
  color: var(--page-fg);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.header-cta .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-bg);
  color: var(--primary-fg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

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

  .main-nav .nav-list {
    flex-direction: column;
    gap: var(--space-y);
  }

  .header-wrapper {
    position: relative;
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 0.5rem;
  }
}

footer {
    background: var(--inverse-bg, #0f1923);
    color: var(--inverse-fg, #e0e6ed);
    font-family: var(--font-family, 'Inter', sans-serif);
    font-size: var(--font-size-sm, 0.875rem);
    line-height: var(--line-height-base, 1.6);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap, 2rem);
    margin-bottom: var(--space-y, 2rem);
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-block, 0.75rem);
  }
  .footer-logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-tagline {
    color: var(--muted-fg, #8899aa);
    font-size: var(--font-size-sm, 0.875rem);
    margin: 0;
  }
  .footer-heading {
    font-size: var(--font-size-md, 1rem);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--inverse-fg, #e0e6ed);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-menu li a {
    color: var(--link, #94a3b8);
    text-decoration: none;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    font-size: var(--font-size-sm, 0.875rem);
  }
  .footer-menu li a:hover {
    color: var(--link-hover, #38bdf8);
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    font-size: var(--font-size-sm, 0.875rem);
  }
  .contact-label {
    font-weight: 600;
    color: var(--inverse-fg, #e0e6ed);
    min-width: 4rem;
  }
  .contact-item a {
    color: var(--link, #94a3b8);
    text-decoration: none;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .contact-item a:hover {
    color: var(--link-hover, #38bdf8);
  }
  .contact-item span:last-child {
    color: var(--muted-fg, #8899aa);
  }
  .footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: var(--space-block, 1rem);
    margin-top: var(--space-y, 1.5rem);
  }
  .footer-disclaimer p {
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #7a8a9a);
    line-height: var(--line-height-base, 1.5);
    margin: 0;
    max-width: 900px;
  }
  .footer-bottom {
    text-align: center;
    padding-top: var(--space-block, 1rem);
    margin-top: var(--space-y, 1rem);
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .footer-bottom p {
    margin: 0;
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #6a7a8a);
  }
  @media (max-width: 640px) {
    .footer-columns {
      grid-template-columns: 1fr;
      gap: var(--gap, 1.5rem);
    }
    .footer-col {
      text-align: center;
      align-items: center;
    }
    .footer-menu {
      align-items: center;
    }
    .contact-item {
      justify-content: center;
    }
    .footer-disclaimer p {
      text-align: center;
    }
  }

.cookie-notice {
  position: fixed;
  top: var(--space-y, 1rem);
  left: var(--space-x, 1rem);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.75rem);
  max-width: 22rem;
  padding: var(--space-card, 1rem);
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-radius: var(--radius-md, 0.5rem);
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
}
.cookie-notice__copy {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}
.cookie-notice__title {
  margin: 0;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
}
.cookie-notice__text {
  margin: 0;
  opacity: 0.85;
}
.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 0.5rem);
}
.cookie-notice__choice {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: var(--radius-sm, 0.25rem);
  font-size: var(--font-size-sm, 0.875rem);
  cursor: pointer;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}
.cookie-notice__choice--accept {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}
.cookie-notice__choice--accept:hover {
  background: var(--primary-hover, #0040cc);
}
.cookie-notice__choice--reject {
  background: var(--muted-bg, #e5e5e5);
  color: var(--muted-fg, #333333);
}
.cookie-notice__choice--reject:hover {
  background: var(--btn-ghost-bg-hover, #d0d0d0);
}
.cookie-notice__choice--manage {
  background: transparent;
  color: var(--link, #0055ff);
  text-decoration: underline;
  padding: 0.4rem 0.2rem;
}
.cookie-notice__choice--manage:hover {
  color: var(--link-hover, #003399);
}

.intro-focus {
  background: var(--gradient-hero-bg);
  color: var(--gradient-hero-fg);
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.intro-focus .body {
  max-width: 640px;
  flex: 1 1 320px;
}
.intro-focus .label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 0.75rem;
}
.intro-focus h1 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.intro-focus .lead {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 0 1.75rem;
  max-width: 560px;
}
.intro-focus .action {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary-fg);
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.intro-focus .action:hover {
  background: var(--primary-hover);
}
.intro-focus .note {
  max-width: 280px;
  flex: 1 1 220px;
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}
.intro-focus .note p {
  margin: 0;
}
@media (max-width: 700px) {
  .intro-focus {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
  }
  .intro-focus h1 {
    font-size: 1.7rem;
  }
  .intro-focus .note {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-left: 0;
    padding-top: 1.25rem;
    max-width: 100%;
  }
}

.clarifications {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
    }
    .clarifications > .inner > p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem 0;
      opacity: 0.85;
    }
    .clarifications .entry {
      margin-bottom: 1.75rem;
    }
    .clarifications .entry h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.3rem 0;
    }
    .clarifications .entry p {
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.85;
    }
    .clarifications .link-more {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--brand-primary-bg, #2a7de1);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: opacity 0.2s;
    }
    .clarifications .link-more:hover {
      opacity: 0.75;
    }

.next-step {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #0a1a3a 0%, #1a4f8a 50%, #0d1420 100%));
      color: var(--gradient-hero-fg, #e2e8f0);
      padding: 4rem 1.5rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .next-step h2 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .next-step .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 1.2rem 0;
      opacity: 0.92;
    }
    .next-step .note {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      opacity: 0.75;
      border-left: 3px solid var(--primary-bg, #2a7de1);
      padding-left: 1rem;
    }
    .next-step .action {
      display: inline-block;
      background: var(--primary-bg, #2a7de1);
      color: var(--primary-fg, #ffffff);
      padding: 0.85rem 2.2rem;
      border-radius: 6px;
      font-size: 1.05rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s ease;
    }
    .next-step .action:hover {
      background: var(--primary-hover, #3a8df1);
    }
    @media (max-width: 600px) {
      .next-step {
        padding: 3rem 1.2rem;
      }
      .next-step h2 {
        font-size: 1.6rem;
      }
      .next-step .lead {
        font-size: 1rem;
      }
    }

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

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

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

    .support p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem 0;
      color: var(--muted-fg, #cbd5e1);
    }

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

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

    .support .channel h3 {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin: 0 0 0.4rem 0;
      color: var(--brand-primary-bg, #2a7de1);
    }

    .support .link {
      display: block;
      font-size: 1rem;
      color: var(--page-fg);
      text-decoration: none;
      margin-bottom: 0.25rem;
      transition: color 0.2s;
    }

    .support .link:hover {
      color: var(--brand-primary-bg, #2a7de1);
    }

    .support .note {
      display: block;
      font-size: 0.85rem;
      color: var(--muted-fg, #94a3b8);
      line-height: 1.4;
    }

    .support .faq-link {
      padding-top: 1.5rem;
      border-top: 1px solid var(--card-border, #2d3a50);
    }

    .support .faq-link .link {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

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

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

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

    .faq .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      opacity: 0.85;
    }

    .faq .questions {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .faq .item {
      border-bottom: 1px solid rgba(10, 26, 58, 0.1);
      padding: 1.25rem 0;
    }

    .faq .item:last-child {
      border-bottom: none;
    }

    .faq dt {
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
      line-height: 1.4;
    }

    .faq dd {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      opacity: 0.9;
    }

    .faq .more {
      margin-top: 2rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }

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

    .faq .more a:hover {
      opacity: 0.8;
    }

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

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

      .faq .item {
        padding: 1.5rem 0;
      }
    }

.partners {
      background: var(--muted-bg, #141e30);
      color: var(--muted-fg, #cbd5e1);
      padding: 3rem 1.5rem;
    }
    .partners .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .partners h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      color: var(--inverse-fg, #f0f4ff);
    }
    .partners p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
      max-width: 720px;
    }
    .partners .logos {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .partners .item {
      flex: 1 1 180px;
      background: var(--card-bg, #1a2332);
      border: 1px solid var(--card-border, #2d3a50);
      border-radius: 6px;
      padding: 1rem 1.2rem;
      display: flex;
      flex-direction: column;
    }
    .partners .name {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--card-fg, #e2e8f0);
      margin-bottom: 0.3rem;
    }
    .partners .meta {
      font-size: 0.85rem;
      line-height: 1.4;
      color: var(--muted-fg, #94a3b8);
    }

.identity {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #0a1a3a 0%, #1a4f8a 50%, #0d1420 100%));
      color: var(--gradient-hero-fg, #e2e8f0);
      padding: 4rem 1.5rem;
    }
    .identity .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem 3rem;
      align-items: flex-start;
    }
    .identity .lead {
      flex: 2 1 340px;
      min-width: 0;
    }
    .identity .lead h2 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.02em;
    }
    .identity .lead p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 1.4rem 0;
      opacity: 0.9;
    }
    .identity .note {
      flex: 1 1 220px;
      background: var(--muted-bg, #141e30);
      color: var(--muted-fg, #cbd5e1);
      padding: 1.5rem 1.6rem;
      border-radius: 12px;
      font-size: 0.95rem;
      line-height: 1.5;
      border-left: 4px solid var(--primary-bg, #2a7de1);
    }
    .identity .note strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--primary-bg, #2a7de1);
    }
    .identity .note ul {
      list-style: none;
      padding: 0;
      margin: 0.8rem 0 0 0;
    }
    .identity .note li {
      padding: 0.25rem 0 0.25rem 1.2rem;
      position: relative;
    }
    .identity .note li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--primary-bg, #2a7de1);
    }
    @media (max-width: 640px) {
      .identity .lead h2 {
        font-size: 1.6rem;
      }
      .identity .inner {
        gap: 1.8rem;
      }
    }

.mission {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }
        .mission .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .mission h2 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0 0 1.5rem;
            letter-spacing: -0.01em;
        }
        .mission p {
            font-size: 1rem;
            line-height: 1.65;
            margin: 0 0 1.25rem;
            opacity: 0.88;
        }
        .mission p:last-child {
            margin-bottom: 0;
        }
        @media (min-width: 640px) {
            .mission {
                padding: 5rem 2rem;
            }
            .mission h2 {
                font-size: 2rem;
            }
            .mission p {
                font-size: 1.0625rem;
            }
        }

.our-story {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .our-story .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .our-story p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.25rem;
    }
    .our-story p:last-of-type {
      margin-bottom: 2rem;
    }
    .our-story .link {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--primary-bg, #2a7de1);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
      transition: opacity 0.2s;
    }
    .our-story .link:hover {
      opacity: 0.75;
    }
    @media (min-width: 640px) {
      .our-story {
        padding: 5rem 2rem;
      }
      .our-story h2 {
        font-size: 2rem;
      }
      .our-story p {
        font-size: 1.0625rem;
      }
    }

.feedback {
      background: var(--inverse-bg, #f0f4ff);
      color: var(--inverse-fg, #0a1a3a);
      padding: 3.5rem 1.5rem;
    }
    .feedback .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      color: var(--inverse-fg, #0a1a3a);
    }
    .feedback .subtitle {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent-bg, #1a4f8a);
      margin: 0 0 1.25rem 0;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .feedback .note {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.75rem 0;
      color: var(--inverse-fg, #0a1a3a);
      opacity: 0.85;
    }
    .feedback .text {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.5rem 0;
      color: var(--inverse-fg, #0a1a3a);
      opacity: 0.8;
    }
    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .feedback .entry {
      border-bottom: 1px solid var(--accent-bg, #1a4f8a);
      padding-bottom: 1.25rem;
    }
    .feedback .entry:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .feedback .entry .meta {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent-bg, #1a4f8a);
      margin: 0 0 0.35rem 0;
    }
    .feedback .entry .title {
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 0.35rem 0;
      color: var(--inverse-fg, #0a1a3a);
    }
    .feedback .entry .label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      background: var(--accent-bg, #1a4f8a);
      color: var(--accent-fg, #ffffff);
      padding: 0.15rem 0.6rem;
      border-radius: 3px;
      margin-bottom: 0.5rem;
    }
    .feedback .entry .item-text {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0.25rem 0 0 0;
      color: var(--inverse-fg, #0a1a3a);
      opacity: 0.8;
    }
    @media (max-width: 480px) {
      .feedback {
        padding: 2rem 1rem;
      }
      .feedback h2 {
        font-size: 1.4rem;
      }
      .feedback .entry .title {
        font-size: 0.95rem;
      }
    }

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

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

        .capabilities h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            letter-spacing: -0.02em;
        }

        .capabilities .subtitle {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--muted-fg);
            margin: 0 0 2.5rem 0;
        }

        .capabilities .item {
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--muted-bg);
        }

        .capabilities .item:last-of-type {
            border-bottom: none;
        }

        .capabilities .item h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0 0 0.6rem 0;
            color: var(--page-fg);
        }

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

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

        .capabilities .action {
            margin-top: 2rem;
            text-align: center;
        }

        .capabilities .button {
            display: inline-block;
            padding: 0.7rem 2rem;
            background: var(--primary-bg);
            color: var(--primary-fg);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 4px;
            transition: background 0.2s;
        }

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

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

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

    .how-it-works h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 8px 0;
      line-height: 1.2;
    }

    .how-it-works .note {
      font-size: 0.95rem;
      margin: 0 0 40px 0;
      opacity: 0.8;
      line-height: 1.5;
    }

    .how-it-works .steps {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .how-it-works .step {
      border-left: 3px solid var(--primary-bg);
      padding-left: 20px;
    }

    .how-it-works .step h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 6px 0;
      line-height: 1.3;
    }

    .how-it-works .step p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.85;
    }

    @media (min-width: 768px) {
      .how-it-works {
        padding: 80px 40px;
      }

      .how-it-works h2 {
        font-size: 2rem;
      }

      .how-it-works .steps {
        flex-direction: row;
        gap: 24px;
      }

      .how-it-works .step {
        flex: 1;
        border-left: none;
        border-top: 3px solid var(--primary-bg);
        padding-left: 0;
        padding-top: 20px;
      }
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      margin: 0 0 1rem;
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .contacts .context {
      margin: 0 0 2rem;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }
    .contacts .line {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.25rem;
      padding: 0.75rem 0;
      border-top: 1px solid var(--muted-bg);
    }
    .contacts .line:last-of-type {
      border-bottom: 1px solid var(--muted-bg);
    }
    .contacts .label {
      min-width: 8rem;
      font-weight: 500;
      color: var(--muted-fg);
      font-size: 0.9rem;
    }
    .contacts .value {
      font-size: 1rem;
      line-height: 1.5;
      word-break: break-word;
    }
    .contacts a.value {
      color: var(--brand-primary-bg);
      text-decoration: none;
    }
    .contacts a.value:hover {
      text-decoration: underline;
    }
    .contacts .note {
      margin: 1.5rem 0 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }

.form {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 600px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.75rem;
      font-weight: 600;
      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(--inverse-fg);
      opacity: 0.85;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .form input,
    .form select {
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 6px;
      padding: 0.65rem 0.85rem;
      font-size: 1rem;
      
      transition: border-color 0.2s;
    }
    .form input:focus,
    .form select:focus {
      outline: none;
      border-color: var(--primary-bg);
    }
    .form input::placeholder {
      color: var(--muted-fg);
      opacity: 0.7;
    }
    .form button {
      background: var(--primary-bg);
      color: var(--primary-fg);
      border: none;
      border-radius: 6px;
      padding: 0.8rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--primary-hover);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
    }

.policy-items {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }
        .policy-items .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            line-height: 1.2;
        }
        .policy-items .intro {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 2rem 0;
            opacity: 0.85;
        }
        .policy-items .entry {
            border-top: 1px solid var(--muted-bg);
            padding: 1.5rem 0;
        }
        .policy-items .entry:first-of-type {
            border-top: none;
        }
        .policy-items .entry h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
        }
        .policy-items .entry p {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            opacity: 0.85;
        }
        .policy-items .entry a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .policy-items .entry a:hover {
            opacity: 0.8;
        }
        @media (max-width: 600px) {
            .policy-items {
                padding: 2.5rem 1rem;
            }
            .policy-items h2 {
                font-size: 1.4rem;
            }
            .policy-items .entry h3 {
                font-size: 1rem;
            }
        }

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

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

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

    .terms-items > .inner > p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 720px;
      color: #334155;
    }

    .terms-items .body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .terms-items .item {
      padding: 0;
    }

    .terms-items .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: #0a1a3a;
    }

    .terms-items .item p {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0;
      color: #1e293b;
    }

    .terms-items .contact-line {
      display: block;
      margin-top: 0.25rem;
      font-style: normal;
    }

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

    .terms-items a:hover {
      color: var(--accent-bg);
    }

    @media (max-width: 680px) {
      .terms-items .body {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }

      .terms-items h2 {
        font-size: 1.5rem;
      }
    }

.thank {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      letter-spacing: -0.02em;
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }
    .thank .next-step {
      margin-top: 2rem;
      padding: 1.5rem;
      background: var(--card-bg);
      color: var(--card-fg);
      border-radius: 8px;
    }
    .thank .next-step h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .thank .next-step p {
      margin: 0 0 1.2rem 0;
    }
    .thank .cta-link {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.6rem 1.4rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .thank .cta-link:hover {
      background: var(--primary-hover);
    }

.not-found {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
    }

    .not-found .inner {
      max-width: 36rem;
      text-align: center;
    }

    .not-found h2 {
      font-size: 2.2rem;
      font-weight: 600;
      margin: 0 0 1.2rem;
      letter-spacing: 0.02em;
      line-height: 1.2;
    }

    .not-found p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 1.2rem;
      color: var(--muted-fg);
    }

    .not-found .actions {
      list-style: none;
      padding: 0;
      margin: 2rem 0 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .not-found .action {
      display: inline-block;
      padding: 0.7rem 1.8rem;
      background: var(--primary-bg);
      color: var(--primary-fg);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 4px;
      transition: background 0.2s;
    }

    .not-found .action:hover {
      background: var(--primary-hover);
    }

.404 {
  background: var(--page-bg);
  color: var(--page-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.404 .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-card);
}
.404 h2,
.404 p {
  margin: 0;
}
.404 h2 {
  font-size: var(--font-size-h2);
  line-height: 1.08;
}
.404 p {
  max-width: 62ch;
  font-size: var(--font-size-lg);
}