:root {
  --font-family: "Barlow", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.59;

  --max-w: 1480px;
  --space-x: 2.4rem;
  --space-y: 1.5rem;
  --gap: 2.49rem;
  --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.04rem;
  --radius-lg: 0.78rem;
  --radius-md: 0.61rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.14);
  --shadow-md: 0 12px 22px rgba(0,0,0,0.18);
  --shadow-lg: 0 18px 42px rgba(0,0,0,0.22);

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

  --brand: #D35400;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #374151;
  --neutral-900: #111827;

  --page-bg: #F9FAFB;
  --page-fg: #1F2937;
  --muted-bg: #F3F4F6;
  --muted-fg: #4B5563;
  --card-bg: #FFFFFF;
  --card-fg: #1F2937;
  --card-border: #E5E7EB;
  --inverse-bg: #2C3E50;
  --inverse-fg: #FFFFFF;
  --primary-bg: #D35400;
  --primary-fg: #FFFFFF;
  --primary-hover: #B34700;
  --accent-bg: #E67E22;
  --accent-fg: #FFFFFF;
  --accent-hover: #D35400;
  --gradient-hero-bg: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #D35400 0%, #E67E22 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #D35400;

  --link: #D35400;
  --link-hover: #E67E22;

  --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);
  gap: var(--gap);
}

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

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

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  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;
  line-height: 1.2;
}

.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;
  width: 2rem;
  height: 2rem;
}

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

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

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

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

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

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }

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

footer {
    background-color: var(--muted-bg, #1e1e2f);
    color: var(--muted-fg, #cfcfd8);
    padding: var(--space-section-y, 3rem) var(--space-section-x, 1.5rem);
    font-family: var(--font-family, 'Segoe UI', Roboto, sans-serif);
    font-size: var(--font-size-sm, 0.875rem);
    line-height: var(--line-height-base, 1.6);
  }
  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .contact-item {
    color: var(--link, #a0c4ff);
    text-decoration: none;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .contact-item:hover {
    color: var(--link-hover, #7aa9f0);
  }
  .footer-brand {
    text-align: center;
  }
  .logo {
    font-size: var(--font-size-h2, 1.75rem);
    font-weight: 700;
    color: var(--primary-fg, #ffffff);
    letter-spacing: 1px;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .footer-nav a {
    color: var(--link, #a0c4ff);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background-color var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .footer-nav a:hover {
    background-color: var(--primary-hover, #3a5a8c);
    color: var(--primary-fg, #ffffff);
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    justify-content: center;
  }
  .footer-legal a {
    color: var(--muted-fg, #9aa0b0);
    text-decoration: underline;
    font-size: var(--font-size-sm, 0.8rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .footer-legal a:hover {
    color: var(--link-hover, #7aa9f0);
  }
  .footer-disclaimer {
    text-align: center;
    font-size: var(--font-size-sm, 0.8rem);
    color: var(--muted-fg, #9aa0b0);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-block, 1rem) 0;
    border-top: 1px solid var(--card-border, #2e2e40);
    border-bottom: 1px solid var(--card-border, #2e2e40);
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copy {
    text-align: center;
    font-size: var(--font-size-sm, 0.75rem);
    color: var(--muted-fg, #7a7f8e);
  }
  .footer-copy p {
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap, 2rem);
    }
    .footer-contact {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
    }
    .footer-brand {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      text-align: right;
    }
    .footer-nav {
      grid-column: 1 / 3;
      grid-row: 2 / 3;
      justify-content: center;
    }
    .footer-legal {
      grid-column: 1 / 3;
      grid-row: 3 / 4;
    }
    .footer-disclaimer {
      grid-column: 1 / 3;
      grid-row: 4 / 5;
    }
    .footer-copy {
      grid-column: 1 / 3;
      grid-row: 5 / 6;
    }
  }
  @media (min-width: 1024px) {
    .footer-container {
      grid-template-columns: 1fr 2fr 1fr;
      gap: var(--gap, 2rem);
    }
    .footer-contact {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      text-align: left;
    }
    .footer-brand {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
      text-align: center;
    }
    .footer-nav {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
      justify-content: flex-end;
    }
    .footer-legal {
      grid-column: 1 / 4;
      grid-row: 2 / 3;
    }
    .footer-disclaimer {
      grid-column: 1 / 4;
      grid-row: 3 / 4;
    }
    .footer-copy {
      grid-column: 1 / 4;
      grid-row: 4 / 5;
    }
  }

.cookie-notice {
  position: fixed;
  top: var(--space-y, 1rem);
  left: var(--space-x, 1rem);
  z-index: 9999;
  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));
  max-width: 360px;
  width: auto;
  padding: var(--space-card, 1rem);
  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 {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.75rem);
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice {
  padding: 0.4rem 0.75rem;
  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, 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, #f0f0f0);
  color: var(--muted-fg, #666);
}

.choice.reject:hover {
  opacity: 0.8;
}

.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;
    }
    .intro-focus .body {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem;
    }
    .intro-focus .lead {
      flex: 2;
    }
    .intro-focus h1 {
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }
    .intro-focus .subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0 0 1.5rem 0;
    }
    .intro-focus .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.75rem 1.8rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .intro-focus .action:hover {
      background: var(--primary-hover);
    }
    .intro-focus .note {
      flex: 1;
      background: var(--muted-bg);
      color: var(--muted-fg);
      padding: 1.5rem;
      border-radius: 8px;
    }
    .intro-focus .note-head {
      font-weight: 600;
      font-size: 1rem;
      margin: 0 0 0.5rem 0;
    }
    .intro-focus .note-text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }
    @media (max-width: 768px) {
      .intro-focus .body {
        flex-direction: column;
        gap: 2rem;
      }
      .intro-focus h1 {
        font-size: 1.8rem;
      }
    }

.how-it-works {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .how-it-works .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .how-it-works h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
    }
    .how-it-works .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      opacity: 0.85;
      max-width: 680px;
    }
    .how-it-works .steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .how-it-works .step {
      padding: 0 0 1.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .how-it-works .step:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .how-it-works .number {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--accent-bg);
      margin-bottom: 0.3rem;
    }
    .how-it-works .step h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.3;
    }
    .how-it-works .step p {
      font-size: 0.92rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.8;
    }
    @media (min-width: 640px) {
      .how-it-works {
        padding: 4rem 2rem;
      }
      .how-it-works h2 {
        font-size: 1.8rem;
      }
      .how-it-works .steps {
        gap: 1.75rem;
      }
    }
    @media (min-width: 900px) {
      .how-it-works .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .how-it-works .step {
        border-bottom: none;
        padding-bottom: 0;
      }
    }

.next-step {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .next-step .inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .next-step h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .next-step p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 1.5rem;
      color: var(--muted-fg);
    }
    .next-step .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.65rem 1.75rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .next-step .action:hover {
      background: var(--primary-hover);
    }

.clarifications {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 1.25rem 0;
      line-height: 1.3;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      opacity: 0.88;
    }
    .clarifications p:last-child {
      margin-bottom: 0;
    }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .faq .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 2rem 0;
      line-height: 1.3;
    }
    .faq .item {
      margin-bottom: 1.75rem;
    }
    .faq .item h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.4;
    }
    .faq .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }
    .faq .note {
      font-size: 0.9rem;
      margin: 2rem 0 0 0;
      line-height: 1.5;
    }
    .faq .note a {
      color: var(--primary-bg);
      text-decoration: underline;
    }
    .faq .note a:hover {
      text-decoration: none;
    }

.capabilities {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .capabilities .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .capabilities h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      line-height: 1.3;
    }
    .capabilities p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem;
      opacity: 0.9;
    }
    .capabilities .links {
      margin-top: 1.75rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
    }
    .capabilities .action {
      display: inline-block;
      padding: 0.6rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 4px;
      background: var(--primary-bg);
      color: var(--primary-fg);
      transition: background 0.2s;
    }
    .capabilities .action:hover {
      background: var(--primary-hover);
    }
    .capabilities .action.secondary {
      background: transparent;
      color: var(--inverse-fg);
      border: 1px solid rgba(255,255,255,0.35);
    }
    .capabilities .action.secondary:hover {
      background: rgba(255,255,255,0.08);
    }

.plans-overview {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .plans-overview .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .plans-overview h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      letter-spacing: -0.01em;
    }
    .plans-overview .subtitle {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
      max-width: 680px;
    }
    .plans-overview .plan {
      margin-bottom: 2.5rem;
    }
    .plans-overview .plan:last-of-type {
      margin-bottom: 2rem;
    }
    .plans-overview .plan h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.4rem;
    }
    .plans-overview .plan p {
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0 0 0.6rem;
      color: var(--muted-fg);
    }
    .plans-overview .plan p:first-of-type {
      color: var(--page-fg);
    }
    .plans-overview .action {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      padding: 0.2rem 0;
      margin-top: 0.2rem;
    }
    .plans-overview .action:hover {
      border-bottom-color: var(--primary-bg);
    }
    .plans-overview .note {
      font-size: 0.82rem;
      color: var(--muted-fg);
      margin: 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--muted-bg);
    }

.feedback {
      background: var(--inverse-bg, #2C3E50);
      color: var(--inverse-fg, #FFFFFF);
      padding: 3rem 1.5rem;
    }
    .feedback .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
    }
    .feedback .intro {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      opacity: 0.85;
    }
    .feedback .entry {
      margin-bottom: 1.75rem;
    }
    .feedback .entry:last-child {
      margin-bottom: 0;
    }
    .feedback .meta {
      font-size: 0.85rem;
      font-weight: 600;
      margin: 0 0 0.3rem 0;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.7;
    }
    .feedback .text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.9;
    }

.form {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 36rem;
      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 0.75rem;
      color: var(--muted-fg);
    }
    .form form {
      margin-top: 1.5rem;
    }
    .form .field {
      margin-bottom: 1.25rem;
    }
    .form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.35rem;
    }
    .form select,
    .form input,
    .form textarea {
      width: 100%;
      padding: 0.6rem 0.75rem;
      font-size: 0.95rem;
      border: 1px solid var(--card-border);
      border-radius: 4px;
      background: var(--card-bg);
      color: var(--card-fg);
      box-sizing: border-box;
    }
    .form textarea {
      resize: vertical;
    }
    .form button {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      border: none;
      padding: 0.7rem 1.5rem;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 4px;
      cursor: pointer;
    }
    .form button:hover {
      background: var(--primary-hover);
    }

.contacts {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .contacts .note {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.8rem 0;
      opacity: 0.85;
    }
    .contacts .details {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-bottom: 1.8rem;
    }
    .contacts .item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1rem;
    }
    .contacts .item:first-child {
      border-top: none;
      padding-top: 0;
    }
    .contacts .label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.6;
    }
    .contacts .value {
      font-size: 1rem;
      line-height: 1.4;
    }
    .contacts a {
      color: var(--inverse-fg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contacts a:hover {
      opacity: 0.8;
    }
    .contacts .footnote {
      font-size: 0.88rem;
      line-height: 1.5;
      opacity: 0.7;
      margin: 0;
    }
    @media (min-width: 600px) {
      .contacts {
        padding: 4rem 2rem;
      }
      .contacts h2 {
        font-size: 1.8rem;
      }
      .contacts .details {
        gap: 1rem;
      }
      .contacts .item {
        flex-direction: row;
        gap: 1rem;
      }
      .contacts .label {
        min-width: 140px;
        flex-shrink: 0;
      }
    }

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .support .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .support p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
    }
    .support .links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .support .action {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.6rem 1.4rem;
      border-radius: 0.25rem;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .support .action:hover {
      background: var(--primary-hover);
    }
    .support .note {
      display: inline-block;
      color: var(--muted-fg);
      font-size: 0.95rem;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .support .note:hover {
      color: var(--page-fg);
    }

.policy-items {
      background: var(--page-bg, #F9FAFB);
      color: var(--page-fg, #1F2937);
      padding: 3rem 1.5rem;
    }

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

    .policy-items h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }

    .policy-items .subtitle {
      font-size: 0.95rem;
      color: var(--muted-fg, #4B5563);
      margin: 0 0 2rem 0;
      line-height: 1.5;
    }

    .policy-items .entry {
      border-top: 1px solid var(--card-border, #E5E7EB);
      padding: 1.5rem 0;
    }

    .policy-items .entry:last-of-type {
      border-bottom: 1px solid var(--card-border, #E5E7EB);
    }

    .policy-items .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }

    .policy-items .entry p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg, #4B5563);
    }

    .policy-items .entry a {
      color: var(--primary-bg, #D35400);
      text-decoration: underline;
    }

    .policy-items .entry a:hover {
      color: var(--primary-hover, #B34700);
    }

    @media (max-width: 640px) {
      .policy-items {
        padding: 2rem 1rem;
      }

      .policy-items h2 {
        font-size: 1.3rem;
      }

      .policy-items .entry {
        padding: 1.2rem 0;
      }
    }

.terms-items {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
    }
    .terms-items .subtitle {
      font-size: 1rem;
      opacity: 0.8;
      margin: 0 0 2rem 0;
      line-height: 1.5;
    }
    .terms-items .item {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding: 1.5rem 0;
    }
    .terms-items .item:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .terms-items .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .terms-items .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.9;
    }

.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;
      margin: 0 0 1.25rem;
      line-height: 1.2;
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      opacity: 0.9;
    }
    .thank .next {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      margin-bottom: 2rem;
    }
    .thank .next-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.7;
    }
    .thank .next-text {
      font-size: 1rem;
      line-height: 1.5;
      opacity: 0.9;
    }
    .thank .contact {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0.85;
    }
    .thank .contact-item a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    @media (min-width: 640px) {
      .thank {
        padding: 5rem 2rem;
      }
      .thank h2 {
        font-size: 2rem;
      }
    }

.404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
    }
    .404 .inner {
      max-width: 32rem;
      width: 100%;
      text-align: left;
    }
    .404 h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      letter-spacing: -0.02em;
    }
    .404 p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .404 .back {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.7rem 1.8rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.2s ease;
    }
    .404 .back:hover {
      background: var(--primary-hover);
    }