:root {
  --font-family: "Source Sans 3", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.85;

  --max-w: 1000px;
  --space-x: 1.46rem;
  --space-y: 1.5rem;
  --gap: 0.72rem;
  --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.63rem;
  --radius-lg: 0.42rem;
  --radius-md: 0.32rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.06);

  --overlay: rgba(10, 25, 47, 0.65);
  --anim-duration: 400ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --page-bg: #f8fafc;
  --page-fg: #1e293b;
  --muted-bg: #f1f5f9;
  --muted-fg: #475569;
  --card-bg: #ffffff;
  --card-fg: #1e293b;
  --card-border: #e2e8f0;
  --inverse-bg: #1a3a5c;
  --inverse-fg: #ffffff;
  --primary-bg: #1a3a5c;
  --primary-fg: #ffffff;
  --primary-hover: #0f2a44;
  --accent-bg: #d97706;
  --accent-fg: #ffffff;
  --accent-hover: #b45309;
  --gradient-hero-bg: linear-gradient(135deg, #1a3a5c 0%, #0f2a44 100%);
  --gradient-hero-fg: #ffffff;
  --gradient-accent-bg: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #1a3a5c;

  --link: #1a3a5c;
  --link-hover: #d97706;

  --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 {
  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;
}

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

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

.nav-link: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.25rem;
}

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

  .nav-menu.active {
    display: block;
  }

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

  .nav-link {
    font-size: var(--font-size-lg);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-wrapper {
    position: relative;
  }
}

footer {
    background: var(--page-bg, #ffffff);
    color: var(--page-fg, #1a1a1a);
    font-family: var(--font-family, system-ui, -apple-system, sans-serif);
    font-size: var(--font-size-sm, 0.875rem);
    line-height: var(--line-height-base, 1.6);
    border-top: 1px solid var(--card-border, #e5e7eb);
    padding: var(--space-section-y, 2rem) var(--space-section-x, 1.5rem);
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.5rem);
  }
  .footer-logo {
    font-size: var(--font-size-h3, 1.25rem);
    font-weight: 700;
    color: var(--primary-bg, #1e3a5f);
    text-decoration: none;
  }
  .footer-logo:hover {
    color: var(--primary-hover, #2b4d7a);
  }
  .footer-disclaimer {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #6b7280);
    margin: 0;
    max-width: 600px;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
  }
  .footer-nav a {
    color: var(--link, #2563eb);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .footer-nav a:hover {
    color: var(--link-hover, #1d4ed8);
    text-decoration: underline;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    font-style: normal;
    color: var(--page-fg, #1a1a1a);
  }
  .footer-contact span,
  .footer-contact a {
    font-size: var(--font-size-sm, 0.875rem);
  }
  .footer-contact a {
    color: var(--link, #2563eb);
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: var(--link-hover, #1d4ed8);
    text-decoration: underline;
  }
  .footer-legal {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #6b7280);
    border-top: 1px solid var(--card-border, #e5e7eb);
    padding-top: var(--space-y, 0.75rem);
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
    }
    .footer-nav {
      flex: 2 1 auto;
    }
    .footer-contact {
      flex: 1 1 auto;
      justify-content: flex-end;
    }
    .footer-legal {
      flex: 1 1 100%;
      text-align: center;
    }
  }

.cookie-notice {
  position: fixed;
  bottom: var(--space-y, 1rem);
  left: var(--space-x, 1rem);
  max-width: 440px;
  width: calc(100% - 2 * var(--space-x, 1rem));
  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-lg, 0 4px 20px rgba(0,0,0,0.1));
  z-index: 1000;
  font-family: var(--font-family, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
}
.notice-inner {
  padding: var(--space-card, 1rem);
  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.5rem 1rem;
  border: none;
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  font-size: var(--font-size-sm, 0.875rem);
  font-family: inherit;
  transition: background 0.2s ease;
}
.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, #f0f0f0);
  color: var(--muted-fg, #555);
}
.choice.reject:hover {
  background: var(--btn-ghost-bg-hover, #e0e0e0);
}
.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(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
      display: flex;
      justify-content: center;
    }
    .intro-focus .body {
      max-width: 48rem;
      width: 100%;
    }
    .intro-focus h1 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .intro-focus p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--muted-fg);
    }
    .intro-focus .link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.2s ease;
    }
    .intro-focus .link:hover {
      background: var(--accent-hover);
    }

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

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

    .product-list h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }

    .product-list .intro {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      max-width: 640px;
      opacity: 0.85;
    }

    .product-list .items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .product-list .item {
      border-bottom: 1px solid rgba(255,255,255,0.15);
      padding-bottom: 1.5rem;
    }

    .product-list .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .product-list h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.25rem 0;
    }

    .product-list h3 a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.3);
      text-underline-offset: 3px;
    }

    .product-list h3 a:hover {
      text-decoration-color: var(--accent-bg);
    }

    .product-list .note {
      font-size: 0.85rem;
      opacity: 0.7;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
    }

    .product-list .item p:last-child {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.85;
    }

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

      .product-list h2 {
        font-size: 1.8rem;
      }

      .product-list .items {
        gap: 2.5rem;
      }

      .product-list .item {
        padding-bottom: 2rem;
      }
    }

.next-step {
  background: var(--page-bg, #f8fafc);
  color: var(--page-fg, #1e293b);
  padding: 3rem 1.5rem;
}
.next-step .inner {
  max-width: 48rem;
  margin: 0 auto;
}
.next-step .body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.next-step .heading {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--brand-primary-bg, #1a3a5c);
}
.next-step .intro {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 34rem;
}
.next-step .action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.next-step .button {
  display: inline-block;
  background: var(--accent-bg, #d97706);
  color: var(--accent-fg, #ffffff);
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}
.next-step .button:hover {
  background: var(--accent-hover, #b45309);
}
.next-step .note {
  font-size: 0.85rem;
  color: var(--muted-fg, #475569);
  line-height: 1.4;
}

.value-points {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .value-points .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .value-points h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 2rem 0;
      line-height: 1.3;
    }
    .value-points .entry {
      margin-bottom: 2rem;
    }
    .value-points .entry:last-child {
      margin-bottom: 0;
    }
    .value-points h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .value-points p {
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0 0 0.5rem 0;
    }
    .value-points p:last-child {
      margin-bottom: 0;
    }

.recommendations {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .recommendations .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .recommendations h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .recommendations .note {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 2rem;
    }
    .recommendations .entry {
      margin-bottom: 1.75rem;
    }
    .recommendations .entry:last-child {
      margin-bottom: 0;
    }
    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.3rem;
      line-height: 1.4;
    }
    .recommendations .entry h3 a {
      color: var(--primary-bg);
      text-decoration: none;
    }
    .recommendations .entry h3 a:hover {
      text-decoration: underline;
    }
    .recommendations .entry p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      color: var(--muted-fg);
    }

.product-list {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2.5rem 1rem;
    }

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

    .product-list h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }

    .product-list .intro {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 2rem 0;
      max-width: 640px;
    }

    .product-list .items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

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

    .product-list .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .product-list .item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
    }

    .product-list .item h3 a {
      color: var(--brand-primary-bg);
      text-decoration: none;
    }

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

    .product-list .item .summary {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted-fg);
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
    }

    .product-list .item .description {
      font-size: 0.9rem;
      line-height: 1.55;
      color: var(--page-fg);
      margin: 0;
    }

.capabilities {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .capabilities .inner {
      max-width: 960px;
      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 2rem 0;
      opacity: 0.85;
    }
    .capabilities .items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .capabilities .item {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.5rem;
    }
    .capabilities .item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .capabilities .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.8;
    }
    .capabilities a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .capabilities a:hover {
      opacity: 0.8;
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 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 1.5rem 0;
      letter-spacing: -0.01em;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.25rem 0;
      color: var(--muted-fg);
    }
    .clarifications p:last-child {
      margin-bottom: 0;
    }

.form {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 2.5rem 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.5;
      margin: 0 0 1.5rem;
      opacity: 0.9;
    }
    .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.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .form input {
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 6px;
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      
      outline: none;
      transition: border-color 0.15s;
    }
    .form input:focus {
      border-color: var(--accent-bg);
    }
    .form button {
      background: var(--accent-bg);
      color: var(--accent-fg);
      border: none;
      border-radius: 6px;
      padding: 0.7rem 1.25rem;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--accent-hover);
    }

.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 1.25rem;
      line-height: 1.3;
    }
    .contacts .address {
      margin: 0 0 1rem;
      line-height: 1.5;
      font-size: 1rem;
    }
    .contacts .schedule {
      margin: 0 0 1.25rem;
      line-height: 1.5;
      font-size: 0.95rem;
      color: var(--muted-fg);
    }
    .contacts .channels {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1rem;
      margin-bottom: 1rem;
    }
    .contacts .channels p {
      margin: 0 0 0.5rem;
      line-height: 1.5;
      font-size: 0.95rem;
    }
    .contacts .label {
      font-weight: 600;
      display: inline-block;
      min-width: 10ch;
    }
    .contacts a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contacts a:hover {
      color: var(--accent-hover);
    }
    .contacts .note {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }

.support {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .support .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }
    .support p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.5rem 0;
      opacity: 0.9;
    }
    .support .notes {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.5rem;
    }
    .support .note {
      font-size: 0.85rem;
      line-height: 1.4;
    }
    .support .note a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .support .note a:hover {
      color: var(--accent-hover);
    }
    .support .link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.5rem 1.2rem;
      border-radius: 4px;
      font-size: 0.9rem;
      text-decoration: none;
      font-weight: 500;
    }
    .support .link:hover {
      background: var(--accent-hover);
    }

.product-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2.5rem 1.25rem;
    }
    .product-item .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .product-item h1 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 0.5rem 0;
    }
    .product-item .subtitle {
      font-size: 1.05rem;
      line-height: 1.5;
      margin: 0 0 1.25rem 0;
      color: var(--muted-fg);
    }
    .product-item .description {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.25rem 0;
    }
    .product-item .note {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      padding: 0.75rem 1rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 0.25rem;
    }

.product-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2rem 1.5rem;
    }
    .product-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .product-item h1 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 0.75rem;
    }
    .product-item .intro {
      font-size: 1.05rem;
      line-height: 1.5;
      margin: 0 0 1rem;
      color: var(--muted-fg);
    }
    .product-item .desc {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 1.5rem;
    }
    .product-item .items {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .product-item .item {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 6px;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .product-item .item-title {
      font-size: 1rem;
      font-weight: 600;
    }
    .product-item .item-text {
      font-size: 0.9rem;
      line-height: 1.45;
      color: var(--muted-fg);
    }
    .product-item .cta {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.6rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.15s;
    }
    .product-item .cta:hover {
      background: var(--accent-hover);
    }

.product-item {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2.5rem 1.25rem;
    }
    .product-item .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .product-item h1 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.01em;
    }
    .product-item .meta {
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 1.25rem 0;
      border-bottom: 1px solid var(--card-border);
      padding-bottom: 1rem;
    }
    .product-item .text {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.25rem 0;
    }
    .product-item .closing {
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
      margin: 0;
      border-top: 1px solid var(--card-border);
      padding-top: 1rem;
    }

.policy-items {
background: var(--inverse-bg);
color: var(--inverse-fg);
padding: 3rem 1.5rem;
}
.policy-items .inner {
max-width: 720px;
margin: 0 auto;
}
.policy-items h2 {
font-size: 1.5rem;
font-weight: 600;
margin: 0 0 1.25rem;
line-height: 1.3;
}
.policy-items p {
font-size: 0.95rem;
line-height: 1.65;
margin: 0 0 1rem;
}
.policy-items p:last-child {
margin-bottom: 0;
}
.policy-items a {
color: var(--accent-bg);
text-decoration: underline;
text-underline-offset: 2px;
}
.policy-items a:hover {
color: var(--accent-hover);
}

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .terms-items > .inner > p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      color: var(--muted-fg);
    }
    .terms-items .item {
      border-top: 1px solid var(--card-border);
      padding: 1.5rem 0;
    }
    .terms-items .item:last-of-type {
      border-bottom: 1px solid var(--card-border);
    }
    .terms-items .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
    }
    .terms-items .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    .terms-items .closing {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 2rem 0 0 0;
      color: var(--muted-fg);
      font-style: italic;
    }

.thank {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.25rem;
    }
    .thank p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 1rem;
      opacity: 0.92;
    }
    .thank .contact-links {
      margin-top: 2rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .thank .contact-links a {
      color: var(--gradient-hero-fg);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
    }
    .thank .contact-links a:hover {
      text-decoration-thickness: 2px;
    }
    .thank .sep {
      display: inline-block;
      margin: 0 0.4rem;
      opacity: 0.5;
    }
    .thank .address {
      opacity: 0.85;
    }
    @media (min-width: 600px) {
      .thank {
        padding: 5rem 2rem;
      }
      .thank h2 {
        font-size: 2rem;
      }
      .thank p {
        font-size: 1rem;
      }
      .thank .contact-links {
        font-size: 0.95rem;
      }
    }

.404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .404 .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .404 h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .404 p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--muted-fg);
    }
    .404 .link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: background 0.2s;
    }
    .404 .link:hover {
      background: var(--accent-hover);
    }