:root {
  --font-family: "Exo 2", sans-serif;
  --font-size-base: 14.4px;
  --line-height-base: 1.39;

  --max-w: 1060px;
  --space-x: 0.47rem;
  --space-y: 0.57rem;
  --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.74rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 20px rgba(0,0,0,0.09);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 170ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #1A5F7A;
  --brand-contrast: #FFFFFF;
  --accent: #2B7A9E;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D0D5DD;
  --neutral-600: #667085;
  --neutral-800: #344054;
  --neutral-900: #101828;

  --page-bg: #FFFFFF;
  --page-fg: #1D2939;
  --muted-bg: #F8FAFC;
  --muted-fg: #344054;
  --card-bg: #FFFFFF;
  --card-fg: #1D2939;
  --card-border: #E4E7EC;
  --inverse-bg: #1A5F7A;
  --inverse-fg: #FFFFFF;
  --primary-bg: #1A5F7A;
  --primary-fg: #FFFFFF;
  --primary-hover: #154C63;
  --accent-bg: #2B7A9E;
  --accent-fg: #FFFFFF;
  --accent-hover: #226A8A;
  --gradient-hero-bg: linear-gradient(135deg, #E1F0F7 0%, #FFFFFF 100%);
  --gradient-hero-fg: #1D2939;
  --gradient-accent-bg: linear-gradient(135deg, #1A5F7A 0%, #2B7A9E 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2B7A9E;

  --link: #1A5F7A;
  --link-hover: #2B7A9E;

  --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(--muted-bg);
  width: 100%;
}

.header-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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 .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

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

.main-nav .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-md);
  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;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.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);
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: 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.open {
    display: block;
  }

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

  .main-nav .nav-list a {
    display: block;
    padding: 0.5rem 0;
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }

  .cta-button {
    display: none;
  }
}

footer {
    background-color: var(--muted-bg, #f5f5f5);
    color: var(--page-fg, #333);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    font-family: var(--font-family, 'Arial', sans-serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
  }

  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }

  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-block, 0.75rem);
  }

  .contact-item a {
    color: var(--link, #0066cc);
    text-decoration: none;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .contact-item a:hover {
    color: var(--link-hover, #004499);
  }

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

  .footer-logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: bold;
    color: var(--primary-bg, #2c3e50);
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
  }

  .footer-nav a {
    color: var(--link, #0066cc);
    text-decoration: none;
    font-size: var(--font-size-md, 1rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-nav a:hover {
    color: var(--link-hover, #004499);
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
  }

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

  .footer-legal a:hover {
    color: var(--link-hover, #004499);
  }

  .footer-disclaimer {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #777);
    border-top: 1px solid var(--card-border, #ddd);
    padding-top: var(--space-block, 0.75rem);
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #777);
  }

  .footer-copyright p {
    margin: 0;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      align-items: center;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
    }
  }

.cookie-notice {
  position: fixed;
  top: var(--space-y, 1rem);
  left: var(--space-x, 1rem);
  z-index: 1000;
  max-width: 360px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  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);
  padding: var(--space-card, 1rem);
}

.notice-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.75rem);
}

.notice-title {
  margin: 0;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
}

.notice-text {
  margin: 0;
  color: var(--muted-fg, #555);
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 0.5rem);
}

.choice {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  transition: background 0.2s, opacity 0.2s;
}

.choice-accept {
  background: var(--primary-bg, #007bff);
  color: var(--primary-fg, #ffffff);
}

.choice-accept:hover {
  background: var(--primary-hover, #0056b3);
}

.choice-reject {
  background: var(--muted-bg, #e9ecef);
  color: var(--muted-fg, #333);
}

.choice-reject:hover {
  background: var(--btn-ghost-bg-hover, #d0d4d8);
}

.choice-manage {
  background: transparent;
  color: var(--link, #007bff);
  text-decoration: underline;
  padding-left: 0;
  padding-right: 0;
}

.choice-manage:hover {
  color: var(--link-hover, #0056b3);
}

.intro-focus {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .intro-focus .text-block {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .intro-focus .label {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-primary-bg);
      margin: 0;
      line-height: 1.2;
    }
    .intro-focus h1 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0;
      color: inherit;
    }
    .intro-focus .subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      margin: 0;
      color: inherit;
    }
    .intro-focus .description {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    .intro-focus .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    .intro-focus .primary-link,
    .intro-focus .secondary-link {
      display: inline-block;
      padding: 0.7rem 1.5rem;
      border-radius: 4px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      line-height: 1.2;
      transition: background 0.2s ease;
    }
    .intro-focus .primary-link {
      background: var(--brand-primary-bg);
      color: var(--brand-primary-fg);
    }
    .intro-focus .primary-link:hover {
      background: var(--brand-primary-hover);
    }
    .intro-focus .secondary-link {
      background: transparent;
      color: var(--brand-primary-bg);
      border: 1px solid var(--brand-primary-bg);
    }
    .intro-focus .secondary-link:hover {
      background: var(--muted-bg);
    }
    @media (min-width: 640px) {
      .intro-focus {
        padding: 5rem 2rem;
      }
      .intro-focus h1 {
        font-size: 2.5rem;
      }
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }
    .clarifications dl {
      margin: 1.5rem 0 0;
      padding: 0;
    }
    .clarifications dt {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: var(--muted-fg);
    }
    .clarifications dd {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (min-width: 640px) {
      .clarifications {
        padding: 4rem 2rem;
      }
      .clarifications h2 {
        font-size: 1.75rem;
      }
      .clarifications p {
        font-size: 1rem;
      }
    }

.next-step {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .next-step .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .next-step h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem;
    }
    .next-step .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .next-step .action {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .next-step .btn {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.7rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .next-step .btn:hover {
      background: var(--primary-hover);
    }
    .next-step .hint {
      font-size: 0.85rem;
      color: var(--muted-fg);
    }

.faq {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1D2939);
      padding: 60px 20px;
    }

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

    .faq h2 {
      font-size: 28px;
      font-weight: 600;
      margin: 0 0 40px 0;
      line-height: 1.2;
    }

    .faq .item {
      border-bottom: 1px solid var(--muted-bg, #F8FAFC);
      padding: 20px 0;
    }

    .faq .item:first-of-type {
      padding-top: 0;
    }

    .faq .item:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
    }

    .faq .question {
      font-size: 17px;
      font-weight: 600;
      margin: 0 0 8px 0;
      line-height: 1.4;
      color: var(--page-fg, #1D2939);
    }

    .faq .answer {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg, #344054);
    }

.why-choose {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3.5rem 1.5rem;
            
        }
        .why-choose .inner {
            max-width: 880px;
            margin: 0 auto;
        }
        .why-choose h2 {
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            margin: 0 0 1.25rem 0;
            line-height: 1.2;
            color: var(--page-fg);
        }
        .why-choose p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
            color: var(--page-fg);
            max-width: 72ch;
        }
        .why-choose .note {
            background: var(--muted-bg);
            color: var(--muted-fg);
            padding: 1.25rem 1.5rem;
            border-radius: 6px;
            margin-top: 1.75rem;
            font-size: 0.95rem;
            line-height: 1.55;
        }
        .why-choose .note strong {
            font-weight: 600;
            color: var(--page-fg);
        }
        @media (max-width: 600px) {
            .why-choose {
                padding: 2.5rem 1.25rem;
            }
            .why-choose h2 {
                font-size: 1.5rem;
            }
            .why-choose p {
                font-size: 0.95rem;
            }
            .why-choose .note {
                padding: 1rem 1.25rem;
                font-size: 0.9rem;
            }
        }

.partners {
            background: var(--gradient-hero-bg);
            color: var(--gradient-hero-fg);
            padding: 3.5rem 1.5rem;
        }
        .partners .inner {
            max-width: 960px;
            margin: 0 auto;
        }
        .partners h2 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0 0 1rem 0;
            letter-spacing: -0.01em;
        }
        .partners .note {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 2rem 0;
            color: var(--muted-fg);
            max-width: 720px;
        }
        .partners .list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .partners .item {
            background: var(--card-bg);
            color: var(--card-fg);
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            border: 1px solid var(--card-border);
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .partners .meta {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--accent-bg);
        }
        .partners .title {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.3;
        }
        .partners .text {
            font-size: 0.925rem;
            line-height: 1.5;
            color: var(--muted-fg);
            margin-top: 0.15rem;
        }
        .partners .footnote {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--muted-fg);
            margin: 2rem 0 0 0;
            padding-top: 1rem;
            border-top: 1px solid var(--card-border);
        }
        @media (min-width: 640px) {
            .partners .list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
            .partners .item {
                padding: 1.5rem;
            }
        }
        @media (min-width: 900px) {
            .partners {
                padding: 4.5rem 2rem;
            }
            .partners h2 {
                font-size: 2rem;
            }
            .partners .note {
                font-size: 1.05rem;
            }
        }

.our-story {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1rem;
    }
    .our-story .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .our-story h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.25rem 0;
      line-height: 1.2;
    }
    .our-story .subtitle {
      font-size: 1rem;
      color: var(--muted-fg);
      margin: 0 0 2rem 0;
      line-height: 1.5;
    }
    .our-story .timeline {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .our-story .entry {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .our-story .year {
      flex-shrink: 0;
      width: 3.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-primary-bg);
      line-height: 1.6;
      padding-top: 0.1rem;
    }
    .our-story .text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--page-fg);
    }
    .our-story .closing {
      margin: 2rem 0 0 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted-fg);
      border-top: 1px solid var(--card-border);
      padding-top: 1.5rem;
    }
    @media (min-width: 640px) {
      .our-story {
        padding: 4rem 2rem;
      }
      .our-story h2 {
        font-size: 2rem;
      }
      .our-story .year {
        width: 4.5rem;
        font-size: 0.9rem;
      }
    }

.identity {
      background: linear-gradient(135deg, #E1F0F7 0%, #FFFFFF 100%);
      color: #1D2939;
      padding: 4rem 1.5rem;
    }
    .identity .inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem 3rem;
      align-items: flex-start;
    }
    .identity .lead {
      flex: 1 1 340px;
      min-width: 0;
    }
    .identity .subtitle {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #1A5F7A;
      margin: 0 0 0.5rem;
    }
    .identity .title {
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 1rem;
      color: #1D2939;
    }
    .identity .intro {
      font-size: 1.0625rem;
      line-height: 1.55;
      color: #344054;
      margin: 0;
      max-width: 480px;
    }
    .identity .note {
      flex: 1 1 300px;
      min-width: 0;
      background: #FFFFFF;
      border-radius: 8px;
      padding: 1.5rem 1.75rem;
    }
    .identity .note-heading {
      font-size: 1.0625rem;
      font-weight: 600;
      color: #1A5F7A;
      margin: 0 0 0.5rem;
    }
    .identity .note-text {
      font-size: 0.9375rem;
      line-height: 1.6;
      color: #344054;
      margin: 0;
    }
    @media (max-width: 640px) {
      .identity {
        padding: 2.5rem 1.25rem;
      }
      .identity .title {
        font-size: 1.75rem;
      }
      .identity .note {
        padding: 1.25rem;
      }
    }

.mission {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .mission .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .mission h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .mission .note {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.25rem;
      color: var(--muted-fg);
    }
    .mission .text {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }
    .mission a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .mission a:hover {
      color: var(--primary-hover);
    }
    @media (min-width: 640px) {
      .mission {
        padding: 4rem 2rem;
      }
      .mission h2 {
        font-size: 1.75rem;
      }
      .mission .note {
        font-size: 1.05rem;
      }
      .mission .text {
        font-size: 1rem;
      }
    }

.how-it-works {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1D2939);
      padding: 3rem 1rem;
    }

    .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 .lead {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--muted-fg, #344054);
      margin: 0 0 2.5rem;
      max-width: 600px;
    }

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

    .how-it-works .step {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--card-border, #E4E7EC);
    }

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

    .how-it-works .step-number {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--brand-primary-bg, #1A5F7A);
      margin-bottom: 0.25rem;
    }

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

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

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

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

      .how-it-works .step {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: 0.75rem 1.25rem;
        align-items: start;
      }

      .how-it-works .step-number {
        grid-column: 1;
        grid-row: 1 / 3;
        font-size: 1.1rem;
        line-height: 1.4;
        text-align: right;
        margin-bottom: 0;
      }

      .how-it-works .step h3 {
        grid-column: 2;
        grid-row: 1;
      }

      .how-it-works .step p {
        grid-column: 2;
        grid-row: 2;
      }
    }

    @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: none;
        padding: 1.5rem 0;
        border-top: 1px solid var(--card-border, #E4E7EC);
      }

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

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .capabilities .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      letter-spacing: -0.02em;
    }
    .capabilities .intro {
      font-size: 1rem;
      color: var(--muted-fg);
      margin: 0 0 2rem;
      line-height: 1.5;
    }
    .capabilities .entry {
      border-top: 1px solid var(--card-border);
      padding: 1.5rem 0;
    }
    .capabilities .entry:first-of-type {
      border-top: none;
    }
    .capabilities .entry h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
    }
    .capabilities .entry p {
      margin: 0 0 0.5rem;
      line-height: 1.55;
      font-size: 0.95rem;
    }
    .capabilities .benefit {
      font-size: 0.9rem;
      color: var(--brand-primary-bg);
      font-weight: 500;
      margin: 0;
    }
    .capabilities .action-line {
      margin: 2rem 0 0;
      font-size: 0.95rem;
      color: var(--muted-fg);
    }
    .capabilities .action-line a {
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .capabilities .action-line a:hover {
      color: var(--brand-primary-hover);
    }

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

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

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

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

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

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

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

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

    .feedback .entry-author {
      font-size: 0.875rem;
      color: var(--muted-fg);
      margin: 0;
    }

.form {
      background: #FFFFFF;
      color: #1D2939;
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .form p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.75rem;
      color: #344054;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form .field label {
      font-size: 0.85rem;
      font-weight: 500;
      color: #344054;
    }
    .form .field input {
      background: #F8FAFC;
      border: 1px solid #E4E7EC;
      border-radius: 6px;
      padding: 0.7rem 0.9rem;
      font-size: 0.95rem;
      color: #1D2939;
      outline: none;
      transition: border-color 0.15s;
    }
    .form .field input:focus {
      border-color: #1A5F7A;
    }
    .form .field input::placeholder {
      color: #98A2B3;
    }
    .form button {
      background: #1A5F7A;
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: #154C63;
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .contacts .intro {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
      margin: 0 0 1.75rem;
    }
    .contacts .info {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .contacts .entry {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--card-border);
    }
    .contacts .entry:last-child {
      border-bottom: none;
    }
    .contacts .label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--brand-primary-bg);
    }
    .contacts .value {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--page-fg);
    }
    .contacts a.value {
      color: var(--accent-bg);
      text-decoration: none;
    }
    .contacts a.value:hover {
      text-decoration: underline;
    }

.support {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1D2939);
      padding: 48px 20px;
    }
    .support .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 24px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 12px 0;
      letter-spacing: -0.02em;
    }
    .support p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 28px 0;
      color: var(--muted-fg, #344054);
    }
    .support .channels {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 28px;
    }
    .support .channel {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 4px 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--card-border, #E4E7EC);
    }
    .support .channel:last-child {
      border-bottom: none;
    }
    .support .label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--brand-primary-bg, #1A5F7A);
      min-width: 100px;
    }
    .support .value {
      font-size: 15px;
      font-weight: 500;
      color: var(--page-fg, #1D2939);
      text-decoration: none;
    }
    .support .value:hover {
      color: var(--brand-primary-hover, #154C63);
    }
    .support .note {
      font-size: 13px;
      color: var(--muted-fg, #344054);
      width: 100%;
      margin-top: 2px;
    }
    .support .faq-link {
      margin-top: 8px;
    }
    .support .faq-link a {
      display: inline-block;
      font-size: 15px;
      font-weight: 500;
      color: var(--brand-primary-bg, #1A5F7A);
      text-decoration: none;
      padding: 8px 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }
    .support .faq-link a:hover {
      border-bottom-color: var(--brand-primary-bg, #1A5F7A);
    }

.policy-items {
      background: var(--page-bg, #FFFFFF);
      color: var(--page-fg, #1D2939);
      padding: 3rem 1.5rem;
    }
    .policy-items .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .policy-items h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
      color: var(--brand-primary-bg, #1A5F7A);
    }
    .policy-items .note {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg, #344054);
    }
    .policy-items .body {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .policy-items .entry {
      border-top: 1px solid var(--card-border, #E4E7EC);
      padding-top: 1.25rem;
    }
    .policy-items .entry-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
      line-height: 1.4;
    }
    .policy-items .entry-text {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg, #344054);
    }
    .policy-items .footer-note {
      font-size: 0.85rem;
      line-height: 1.6;
      margin: 2rem 0 0;
      color: var(--muted-fg, #344054);
      border-top: 1px solid var(--card-border, #E4E7EC);
      padding-top: 1.25rem;
    }
    .policy-items .footer-note a {
      color: var(--brand-primary-bg, #1A5F7A);
      text-decoration: underline;
    }
    .policy-items .footer-note a:hover {
      color: var(--brand-primary-hover, #154C63);
    }
    @media (min-width: 640px) {
      .policy-items {
        padding: 4rem 2rem;
      }
      .policy-items h2 {
        font-size: 1.75rem;
      }
    }

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 48px 20px;
    }
    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.625rem;
      font-weight: 600;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }
    .terms-items .intro {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0 0 32px;
      color: var(--muted-fg);
    }
    .terms-items .item {
      margin-bottom: 28px;
    }
    .terms-items .item h3 {
      font-size: 1.0625rem;
      font-weight: 600;
      margin: 0 0 6px;
    }
    .terms-items .item p {
      font-size: 0.9375rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }
    .terms-items .footer-note {
      font-size: 0.875rem;
      color: var(--muted-fg);
      margin: 36px 0 0;
      padding-top: 16px;
      border-top: 1px solid var(--card-border);
    }

.thank {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .thank .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.75rem;
      color: var(--muted-fg);
    }
    .thank .steps {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.75rem;
    }
    .thank .step {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .thank .step-num {
      flex-shrink: 0;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--primary-bg);
      color: var(--primary-fg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1;
    }
    .thank .step-text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }
    .thank .contact-note {
      margin: 0;
      font-size: 0.95rem;
      color: var(--muted-fg);
    }
    .thank .contact-note a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank .contact-note a:hover {
      color: var(--primary-hover);
    }

.not-found {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 6rem 1.5rem;
}
.not-found .inner {
    max-width: 640px;
    margin: 0 auto;
}
.not-found .code {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--muted-fg);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.not-found h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
}
.not-found p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin: 0 0 2rem;
}
.not-found .action {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--primary-bg);
    color: var(--primary-fg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    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);
}