:root {
  --font-family: "Space Grotesk", sans-serif;
  --font-size-base: 19.8px;
  --line-height-base: 1.71;

  --max-w: 1440px;
  --space-x: 2.27rem;
  --space-y: 1.5rem;
  --gap: 1.53rem;
  --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.09rem;
  --radius-lg: 0.76rem;
  --radius-md: 0.46rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 22px 40px rgba(0,0,0,0.13);

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

  --brand: #1a2a4a;
  --brand-contrast: #f5f0e8;
  --accent: #c9a84c;
  --accent-contrast: #1a1a1a;

  --neutral-0: #ffffff;
  --neutral-100: #f5f3ef;
  --neutral-300: #d1cdc4;
  --neutral-600: #6b655a;
  --neutral-800: #2c2822;
  --neutral-900: #1a1814;

  --page-bg: #faf8f4;
  --page-fg: #1a1814;
  --muted-bg: #f0ede6;
  --muted-fg: #1a1814;
  --card-bg: #ffffff;
  --card-fg: #1a1814;
  --card-border: #d1cdc4;
  --inverse-bg: #1a2a4a;
  --inverse-fg: #f5f0e8;
  --primary-bg: #1a2a4a;
  --primary-fg: #f5f0e8;
  --primary-hover: #243b63;
  --accent-bg: #c9a84c;
  --accent-fg: #1a1a1a;
  --accent-hover: #b8942e;
  --gradient-hero-bg: linear-gradient(135deg, #1a2a4a 0%, #2a4060 50%, #1a2a4a 100%);
  --gradient-hero-fg: #f5f0e8;
  --gradient-accent-bg: linear-gradient(135deg, #c9a84c 0%, #dbb85e 50%, #c9a84c 100%);
  --gradient-accent-fg: #1a1a1a;

  --ring: #c9a84c;

  --link: #1a2a4a;
  --link-hover: #c9a84c;

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

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

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

.main-nav {
  display: flex;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--page-bg);
    border-bottom: 1px solid var(--card-border);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-lg);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }
}

footer {
    background-color: var(--inverse-bg, #1a1a2e);
    color: var(--inverse-fg, #e0e0e0);
    font-family: var(--font-family, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
    font-size: var(--font-size-base, 0.95rem);
    line-height: var(--line-height-base, 1.6);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }
  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap, 2rem);
  }
  @media (min-width: 768px) {
    .footer-columns {
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    }
  }
  .footer-col {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: 700;
    color: var(--inverse-fg, #e0e0e0);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
  .footer-tagline {
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--muted-fg, #a0a0b0);
    margin: 0 0 1rem 0;
  }
  .footer-heading {
    font-size: var(--font-size-md, 1.05rem);
    font-weight: 600;
    color: var(--inverse-fg, #e0e0e0);
    margin: 0 0 1rem 0;
    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, #b0b0c0);
    text-decoration: none;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    font-size: var(--font-size-sm, 0.85rem);
  }
  .footer-menu li a:hover {
    color: var(--link-hover, #ffffff);
    text-decoration: underline;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .contact-label {
    font-size: var(--font-size-sm, 0.8rem);
    font-weight: 600;
    color: var(--muted-fg, #a0a0b0);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .contact-value {
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--inverse-fg, #e0e0e0);
    word-break: break-word;
  }
  .contact-value a {
    color: var(--link, #b0b0c0);
    text-decoration: none;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .contact-value a:hover {
    color: var(--link-hover, #ffffff);
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: var(--space-block, 2rem);
    padding-top: var(--space-block, 1.5rem);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-disclaimer p {
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #a0a0b0);
    line-height: var(--line-height-base, 1.5);
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    margin-top: var(--space-block, 1.5rem);
    text-align: center;
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #7a7a8a);
  }
  .footer-bottom p {
    margin: 0;
  }

footer .footer-risk-disclaimer{flex:1 1 100%;max-width:var(--max-w);margin:var(--space-y) auto 0;padding-top:var(--space-card);border-top:1px solid color-mix(in srgb,currentColor 22%,transparent);font-size:var(--font-size-sm);line-height:var(--line-height-base);opacity:.82;overflow-wrap:anywhere;}

.cookie-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 12px) 0;
  box-shadow: var(--shadow-lg, 0 4px 20px rgba(0,0,0,0.15));
  z-index: 1000;
  padding: var(--space-card, 24px);
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
}
.cookie-rail__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 16px);
}
.cookie-rail__title {
  margin: 0;
  font-size: var(--font-size-h3, 1.25rem);
  font-weight: 600;
}
.cookie-rail__text {
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  color: inherit;
}
.cookie-rail__actions {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 12px);
}
.cookie-rail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.cookie-rail__btn--primary {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}
.cookie-rail__btn--primary:hover {
  background: var(--primary-hover, #0040cc);
}
.cookie-rail__btn--ghost {
  background: var(--btn-ghost-bg, transparent);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #d0d0d0);
}
.cookie-rail__btn--ghost:hover {
  background: var(--btn-ghost-bg-hover, #f0f0f0);
}
.cookie-rail__btn--link {
  background: transparent;
  color: var(--link, #0055ff);
  text-decoration: underline;
  padding: 6px 12px;
}
.cookie-rail__btn--link:hover {
  color: var(--link-hover, #003399);
}

.intro-focus {
      background: var(--gradient-hero-bg, linear-gradient(135deg, #1a2a4a 0%, #2a4060 50%, #1a2a4a 100%));
      color: var(--gradient-hero-fg, #f5f0e8);
      padding: 4rem 1.5rem;
    }

    .intro-focus .inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem 3rem;
      align-items: flex-start;
    }

    .intro-focus .lead {
      flex: 2 1 480px;
    }

    .intro-focus .label {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-bg, #c9a84c);
      margin: 0 0 0.75rem;
    }

    .intro-focus h1 {
      font-size: 2.4rem;
      line-height: 1.2;
      font-weight: 500;
      margin: 0 0 1rem;
    }

    .intro-focus .subtitle {
      font-size: 1.05rem;
      line-height: 1.6;
      color: rgba(245, 240, 232, 0.85);
      margin: 0 0 1.75rem;
      max-width: 560px;
    }

    .intro-focus .action {
      display: inline-block;
      background: var(--accent-bg, #c9a84c);
      color: var(--accent-fg, #1a1a1a);
      padding: 0.7rem 1.8rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }

    .intro-focus .action:hover {
      background: var(--accent-hover, #b8942e);
    }

    .intro-focus .note {
      flex: 1 1 280px;
      background: rgba(255, 255, 255, 0.06);
      padding: 1.25rem 1.5rem;
      border-radius: 4px;
      border-left: 3px solid var(--accent-bg, #c9a84c);
      font-size: 0.9rem;
      line-height: 1.6;
      color: rgba(245, 240, 232, 0.8);
    }

    .intro-focus .note p {
      margin: 0;
    }

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

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

      .intro-focus .subtitle {
        font-size: 0.95rem;
      }

      .intro-focus .note {
        padding: 1rem 1.25rem;
      }
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem 0;
      color: var(--brand-primary-bg);
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

.next-step {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4rem 1.5rem;
    }
    .next-step .inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: left;
    }
    .next-step h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .next-step p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.75rem 0;
      opacity: 0.9;
    }
    .next-step .action {
      display: inline-block;
      background: var(--accent-bg, #c9a84c);
      color: var(--accent-fg, #1a1a1a);
      padding: 0.75rem 2rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
    }
    .next-step .action:hover {
      background: var(--accent-hover, #b8942e);
    }

.why-choose {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .why-choose .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin: 0 0 1.5rem;
      color: var(--brand-primary-bg, #1a2a4a);
    }
    .why-choose p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.25rem;
    }
    .why-choose p:last-child {
      margin-bottom: 0;
    }

.recommendations {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 2.5rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: 0.02em;
    }
    .recommendations > .inner > p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.8rem 0;
      opacity: 0.85;
    }
    .recommendations .entry {
      border-top: 1px solid rgba(245, 240, 232, 0.2);
      padding: 1.2rem 0;
    }
    .recommendations .entry:last-child {
      border-bottom: 1px solid rgba(245, 240, 232, 0.2);
    }
    .recommendations .entry h3 {
      margin: 0 0 0.3rem 0;
      font-size: 1.1rem;
      font-weight: 500;
    }
    .recommendations .entry h3 a {
      color: var(--accent-bg);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      text-decoration: underline;
    }
    .recommendations .entry p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.5;
      opacity: 0.8;
    }

.partners {
      background: var(--page-bg);
      color: var(--page-fg);
      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;
      line-height: 1.2;
    }
    .partners p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }
    .partners p:last-of-type {
      margin-bottom: 1.5rem;
    }
    .partners .logos {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      margin-bottom: 1.5rem;
    }
    .partners .item {
      font-size: 0.9rem;
      line-height: 1.4;
      padding: 0.25rem 0;
      border-bottom: 1px solid var(--muted-bg, #d1cdc4);
      flex: 0 1 auto;
    }
    .partners .link {
      display: inline-block;
      font-size: 0.9rem;
      color: var(--accent-bg, #c9a84c);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 0.1rem;
    }
    .partners .link:hover {
      opacity: 0.8;
    }
    @media (min-width: 640px) {
      .partners {
        padding: 4rem 2rem;
      }
      .partners h2 {
        font-size: 1.8rem;
      }
      .partners p {
        font-size: 1rem;
      }
      .partners .logos {
        gap: 1rem 2.5rem;
      }
      .partners .item {
        font-size: 0.95rem;
      }
    }

.identity {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3.5rem 1.5rem;
    }
    .identity .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .identity h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin: 0 0 0.25rem;
      line-height: 1.2;
    }
    .identity .subtitle {
      font-size: 1rem;
      font-weight: 400;
      opacity: 0.85;
      margin: 0 0 1.25rem;
      line-height: 1.4;
    }
    .identity .description {
      font-size: 0.95rem;
      line-height: 1.65;
      opacity: 0.9;
      margin: 0;
      max-width: 42rem;
    }
    @media (min-width: 640px) {
      .identity {
        padding: 4.5rem 2rem;
      }
      .identity h2 {
        font-size: 2rem;
      }
      .identity .subtitle {
        font-size: 1.1rem;
      }
      .identity .description {
        font-size: 1rem;
      }
    }

.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: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 1.5rem;
      color: var(--brand-primary-bg, #1a2a4a);
    }
    .mission p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.25rem;
    }
    .mission p:last-child {
      margin-bottom: 0;
    }
    .mission p:first-of-type {
      font-weight: 400;
    }
    .mission p:last-of-type {
      font-size: 0.95rem;
      color: var(--muted-fg, #4a4640);
    }

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

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

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

    .how-it-works .subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem;
      opacity: 0.85;
    }

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

    .how-it-works .step {
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(245, 240, 232, 0.15);
    }

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

    .how-it-works .step-number {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--accent-bg);
      margin-bottom: 0.25rem;
    }

    .how-it-works .step h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: var(--inverse-fg);
    }

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

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

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

      .how-it-works .step {
        padding: 2rem 0;
      }

      .how-it-works .step h3 {
        font-size: 1.25rem;
      }
    }

    @media (min-width: 900px) {
      .how-it-works .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 2.5rem;
      }

      .how-it-works .step {
        border-bottom: 1px solid rgba(245, 240, 232, 0.15);
        padding: 2rem 0;
      }

      .how-it-works .step:nth-last-child(-n+2) {
        border-bottom: none;
      }
    }

.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 1rem 0;
  line-height: 1.2;
}
.capabilities > .inner > p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  color: var(--muted-fg);
}
.capabilities .steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 0 0 2rem 0;
}
.capabilities .step {
  border-top: 1px solid var(--muted-bg);
  padding-top: 1.25rem;
}
.capabilities .step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-bg);
  margin-bottom: 0.25rem;
}
.capabilities .step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
}
.capabilities .step p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  color: var(--muted-fg);
}
.capabilities .closing {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--muted-bg);
  color: var(--muted-fg);
}

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

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

    .feedback h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 1.25rem;
      line-height: 1.2;
    }

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

    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

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

    .feedback .entry:first-child {
      border-top: none;
      padding-top: 0;
    }

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

    .feedback .meta {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin: 0;
      opacity: 0.7;
    }

.support {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 3rem 1.5rem;
        }
        .support .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .support h2 {
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin: 0 0 1.2rem 0;
            color: var(--accent-bg);
        }
        .support p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1rem 0;
        }
        .support p:last-of-type {
            margin-bottom: 0;
        }
        .support p + p {
            margin-top: 0.6rem;
        }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .faq .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
      letter-spacing: -0.01em;
    }
    .faq .subtitle {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .faq .entry {
      border-bottom: 1px solid var(--muted-bg);
      padding: 1.2rem 0;
    }
    .faq .entry:last-of-type {
      border-bottom: none;
    }
    .faq .entry h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.35rem;
      line-height: 1.4;
    }
    .faq .entry p {
      font-size: 0.9rem;
      line-height: 1.55;
      margin: 0;
      color: var(--muted-fg);
    }
    .faq .cta-note {
      margin: 1.8rem 0 0.6rem;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .faq .cta-link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.55rem 1.4rem;
      font-size: 0.9rem;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      transition: background 0.2s;
    }
    .faq .cta-link:hover {
      background: var(--accent-hover);
    }

.form {
      background: var(--inverse-bg, #1a2a4a);
      color: var(--inverse-fg, #f5f0e8);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      margin: 0 0 0.75rem 0;
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .form p {
      margin: 0 0 2rem 0;
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.9;
    }
    .form .field {
      margin-bottom: 1.25rem;
    }
    .form label {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 0.95rem;
      font-weight: 500;
    }
    .form input {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      
      background: var(--card-bg, #ffffff);
      color: var(--card-fg, #1a1814);
      border: 1px solid var(--muted-bg, #d1cdc4);
      border-radius: 4px;
      box-sizing: border-box;
    }
    .form input::placeholder {
      color: #8a867e;
    }
    .form button {
      display: inline-block;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      
      background: var(--accent-bg, #c9a84c);
      color: var(--accent-fg, #1a1a1a);
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .form button:hover {
      background: var(--accent-hover, #b8942e);
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
    }

.contacts {
      background: var(--page-bg, #faf8f4);
      color: var(--page-fg, #1a1814);
      padding: 3rem 1.5rem;
    }

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

    .contacts h2 {
      margin: 0 0 0.75rem 0;
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.2;
      color: var(--page-fg, #1a1814);
    }

    .contacts > .inner > p:first-of-type {
      margin: 0 0 2rem 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--page-fg, #1a1814);
      opacity: 0.85;
    }

    .contacts .entry {
      display: flex;
      align-items: baseline;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--muted-bg, #f0ede6);
    }

    .contacts .entry:last-of-type {
      border-bottom: none;
    }

    .contacts .label {
      flex: 0 0 7rem;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--page-fg, #1a1814);
      opacity: 0.7;
      text-transform: uppercase;
    }

    .contacts .value {
      font-size: 0.95rem;
      line-height: 1.4;
      color: var(--page-fg, #1a1814);
    }

    .contacts .link {
      color: var(--accent-bg, #c9a84c);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }

    .contacts .link:hover {
      border-bottom-color: var(--accent-bg, #c9a84c);
    }

    .contacts .note {
      margin: 1.5rem 0 0 0;
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--page-fg, #1a1814);
      opacity: 0.7;
      padding-top: 0.75rem;
      border-top: 1px solid var(--muted-bg, #f0ede6);
    }

    @media (max-width: 480px) {
      .contacts {
        padding: 2rem 1rem;
      }

      .contacts .entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.8rem 0;
      }

      .contacts .label {
        flex: unset;
        font-size: 0.8rem;
      }

      .contacts .value {
        font-size: 0.9rem;
      }
    }

.policy-items {
            background: var(--page-bg, #faf8f4);
            color: var(--page-fg, #1a1814);
            padding: 3rem 1.5rem 4rem;
        }
        .policy-items .inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin: 0 0 0.25rem;
            letter-spacing: -0.01em;
        }
        .policy-items .subtitle {
            font-size: 0.85rem;
            color: var(--muted-fg, #6b665c);
            margin: 0 0 2.5rem;
            border-bottom: 1px solid var(--muted-bg, #d1cdc4);
            padding-bottom: 1rem;
        }
        .policy-items .entry {
            margin-bottom: 2rem;
        }
        .policy-items .entry:last-child {
            margin-bottom: 0;
        }
        .policy-items h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            color: var(--brand-primary-bg, #1a2a4a);
        }
        .policy-items p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
        .policy-items a {
            color: var(--accent-bg, #c9a84c);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .policy-items a:hover {
            color: var(--accent-hover, #b8942e);
        }
        @media (max-width: 600px) {
            .policy-items {
                padding: 2rem 1rem 3rem;
            }
            .policy-items h2 {
                font-size: 1.4rem;
            }
            .policy-items h3 {
                font-size: 1rem;
            }
            .policy-items p {
                font-size: 0.9rem;
            }
        }

.terms-items {
      background: var(--inverse-bg, #1a2a4a);
      color: var(--inverse-fg, #f5f0e8);
      padding: 3rem 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 .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .terms-items .body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .terms-items .item {
      background: rgba(255, 255, 255, 0.05);
      padding: 1.25rem 1.5rem;
      border-radius: 6px;
      border-left: 3px solid var(--accent-bg, #c9a84c);
    }
    .terms-items .item h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: var(--accent-bg, #c9a84c);
    }
    .terms-items .item p {
      font-size: 0.925rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.9;
    }
    .terms-items .footer-note {
      margin: 2rem 0 0;
      font-size: 0.875rem;
      opacity: 0.7;
      text-align: center;
    }
    @media (max-width: 640px) {
      .terms-items .body {
        grid-template-columns: 1fr;
      }
      .terms-items h2 {
        font-size: 1.4rem;
      }
    }

.thank {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin: 0 0 1.25rem;
      color: var(--accent-bg);
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 2rem;
      color: var(--inverse-fg);
      opacity: 0.88;
    }
    .thank .link {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent-bg);
      text-decoration: none;
      border-bottom: 1px solid var(--accent-bg);
      padding-bottom: 0.15rem;
      transition: opacity 0.2s;
    }
    .thank .link:hover {
      opacity: 0.75;
    }

.404 {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 5rem 1.5rem;
      text-align: center;
    }
    .404 .inner {
      max-width: 36rem;
      margin: 0 auto;
    }
    .404 h2 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .404 p {
      font-size: 1.0625rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .404 .actions {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem 1.5rem;
    }
    .404 .link {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      background: var(--accent-bg);
      color: var(--accent-fg);
      text-decoration: none;
      font-size: 0.95rem;
      line-height: 1.4;
      border-radius: 0.25rem;
      transition: background 0.2s;
    }
    .404 .link:hover {
      background: var(--accent-hover);
    }