:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 17.1px;
  --line-height-base: 1.74;

  --max-w: 1260px;
  --space-x: 1.59rem;
  --space-y: 1.5rem;
  --gap: 2.28rem;
  --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.19rem;
  --radius-lg: 1rem;
  --radius-md: 0.48rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.11);
  --shadow-md: 0 10px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 18px 34px rgba(0,0,0,0.17);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 260ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #2E5C3E;
  --brand-contrast: #FFFFFF;
  --accent: #D48C3C;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7F5F2;
  --neutral-300: #D6D2CB;
  --neutral-600: #7A756E;
  --neutral-800: #3D3A36;
  --neutral-900: #1C1A18;

  --page-bg: #FBF9F6;
  --page-fg: #1C1A18;
  --muted-bg: #F0EDE8;
  --muted-fg: #3D3A36;
  --card-bg: #FFFFFF;
  --card-fg: #1C1A18;
  --card-border: #E2DED7;
  --inverse-bg: #1C1A18;
  --inverse-fg: #FBF9F6;
  --primary-bg: #2E5C3E;
  --primary-fg: #FFFFFF;
  --primary-hover: #234A31;
  --accent-bg: #D48C3C;
  --accent-fg: #FFFFFF;
  --accent-hover: #B8732A;
  --gradient-hero-bg: linear-gradient(135deg, #2E5C3E 0%, #3D7A52 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #D48C3C 0%, #E8A84C 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #2E5C3E;

  --link: #2E5C3E;
  --link-hover: #D48C3C;

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

/* ===== ESTILOS DEL HEADER ===== */
.site-header {
  width: 100%;
  background-color: var(--page-bg, #ffffff);
  border-bottom: 1px solid var(--muted-bg, #e0e4e8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-x, 1.5rem);
  height: 64px;
  gap: var(--gap, 1rem);
}

/* Logo */
.logo-link {
  font-size: var(--font-size-h3, 1.5rem);
  font-weight: 600;
  text-decoration: none;
  color: var(--page-fg, #1a1e24);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-link:hover {
  color: var(--link-hover, #0056b3);
}

/* Navegación horizontal */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  color: var(--muted-fg, #4a5568);
  font-size: var(--font-size-md, 1rem);
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--muted-bg, #edf2f7);
  color: var(--page-fg, #1a1e24);
}

/* CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-bg, #1a73e8);
  color: var(--primary-fg, #ffffff);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg, 12px);
  font-size: var(--font-size-sm, 0.9rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-button:hover {
  background-color: var(--primary-hover, #1557b0);
  transform: scale(1.01);
}

/* Botón burger (oculto en desktop) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--muted-bg, #d0d7de);
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.burger:hover {
  background: var(--muted-bg, #edf2f7);
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--page-fg, #1a1e24);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ===== MÓVIL (max-width: 767px) ===== */
@media (max-width: 767px) {
  .header-inner {
    height: 60px;
    padding: 0 var(--space-x, 1rem);
  }

  .main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--page-bg, #ffffff);
    border-bottom: 1px solid var(--muted-bg, #d0d7de);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 0.75rem 1rem;
    display: none;
    flex-direction: column;
    z-index: 100;
  }
  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.2rem;
  }

  .nav-link {
    display: block;
    padding: 0.7rem 0.8rem;
    font-size: var(--font-size-md, 1rem);
    border-radius: var(--radius-md, 8px);
    width: 100%;
  }

  .cta-button {
    display: none; /* ocultamos CTA en móvil para no saturar, el menú tiene contacto */
  }

  .burger {
    display: flex;
  }
}

/* Pequeño ajuste para pantallas muy estrechas (opcional) */
@media (max-width: 400px) {
  .logo-link {
    font-size: var(--font-size-md, 1.1rem);
  }
}

.site-footer {
  background-color: var(--muted-bg, #1e1e2f);
  color: var(--muted-fg, #c0c0d0);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.6);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
}

.footer-container {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 1.5rem);
}

.footer-contact {
  order: 1;
}

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

.contact-item {
  display: block;
  color: var(--muted-fg, #c0c0d0);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

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

.footer-brand {
  order: 2;
}

.footer-logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  color: var(--primary-fg, #ffffff);
  letter-spacing: 0.02em;
}

.footer-nav {
  order: 3;
}

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

.nav-link {
  color: var(--link, #b0b0c8);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.nav-link:hover {
  color: var(--link-hover, #a0a0ff);
}

.footer-legal {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 1rem);
}

.legal-link {
  color: var(--link, #b0b0c8);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.legal-link:hover {
  color: var(--link-hover, #a0a0ff);
}

.footer-disclaimer {
  order: 5;
  padding: var(--space-block, 1rem) 0;
  border-top: 1px solid var(--card-border, #3a3a4e);
}

.disclaimer-text {
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--muted-fg, #8888a0);
  line-height: var(--line-height-base, 1.6);
  margin: 0;
}

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

.footer-copyright 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;
  }

  .footer-legal {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

  .footer-copyright {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .footer-brand {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: center;
  }

  .footer-nav {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
  }

  .footer-legal {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    justify-content: center;
  }

  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }

  .footer-copyright {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
  }
}

.cookie-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-bottom: 1px solid var(--card-border, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
}

.cookie-notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 0.75rem);
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.cookie-notice__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-notice__title {
  font-weight: 600;
  font-size: var(--font-size-md, 1rem);
  white-space: nowrap;
}

.cookie-notice__text {
  margin: 0;
  display: inline;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm, 4px);
  font-size: var(--font-size-sm, 0.875rem);
  font-family: inherit;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-notice__btn--primary {
  background: var(--primary-bg, #0056b3);
  color: var(--primary-fg, #ffffff);
  border-color: var(--primary-bg, #0056b3);
}

.cookie-notice__btn--primary:hover {
  background: var(--primary-hover, #003d82);
  border-color: var(--primary-hover, #003d82);
}

.cookie-notice__btn--ghost {
  background: transparent;
  color: var(--card-fg, #1a1a1a);
  border-color: var(--card-border, #c0c0c0);
}

.cookie-notice__btn--ghost:hover {
  background: var(--btn-ghost-bg-hover, #f0f0f0);
}

.cookie-notice__btn--link {
  background: transparent;
  border-color: transparent;
  color: var(--link, #0056b3);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.cookie-notice__btn--link:hover {
  color: var(--link-hover, #003d82);
  text-decoration: underline;
}

.intro-focus {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    @media (min-width: 768px) {
      .intro-focus .inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
      }
    }
    .intro-focus .lead {
      flex: 2;
    }
    .intro-focus .lead h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1.25rem 0;
      font-weight: 600;
    }
    @media (min-width: 768px) {
      .intro-focus .lead h1 {
        font-size: 2.5rem;
      }
    }
    .intro-focus .lead p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--muted-fg);
    }
    .intro-focus .cta {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.7rem 1.6rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .intro-focus .cta:hover {
      background: var(--accent-hover);
    }
    .intro-focus .note {
      flex: 1;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
    }
    @media (min-width: 768px) {
      .intro-focus .note {
        border-top: none;
        border-left: 1px solid var(--muted-bg);
        padding-top: 0;
        padding-left: 2rem;
      }
    }
    .intro-focus .note p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg);
    }

.messages {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 2.5rem 1.5rem;
    }
    .messages .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .messages h2 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .messages > .inner > p {
      font-size: 0.95rem;
      margin: 0 0 1.75rem 0;
      opacity: 0.85;
      line-height: 1.5;
    }
    .messages .entries {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .messages .entry {
      border-bottom: 1px solid rgba(251, 249, 246, 0.15);
      padding-bottom: 1.25rem;
    }
    .messages .entry:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .messages .meta {
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
      margin-bottom: 0.4rem;
      font-size: 0.85rem;
    }
    .messages .initials {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      font-weight: 600;
      font-size: 0.75rem;
      line-height: 1;
      padding: 0.2rem 0.45rem;
      border-radius: 3px;
    }
    .messages .name {
      font-weight: 500;
      opacity: 0.9;
    }
    .messages .meta time {
      margin-left: auto;
      opacity: 0.6;
      font-size: 0.8rem;
    }
    .messages .text {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.9;
    }

.value-points {
      background: var(--page-bg);
      color: var(--page-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 0.5rem;
      line-height: 1.2;
    }
    .value-points > .inner > p {
      font-size: 0.95rem;
      color: var(--muted-fg);
      margin: 0 0 2rem;
      line-height: 1.5;
    }
    .value-points .entry {
      border-top: 1px solid var(--muted-bg);
      padding: 1.25rem 0;
    }
    .value-points .entry:last-child {
      border-bottom: 1px solid var(--muted-bg);
    }
    .value-points .entry h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin: 0 0 0.35rem;
      line-height: 1.3;
    }
    .value-points .entry p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      color: var(--muted-fg);
    }

.why-choose {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3.5rem 1.5rem;
    }
    .why-choose .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .why-choose p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1rem;
      max-width: 42rem;
    }
    .why-choose p:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 640px) {
      .why-choose {
        padding: 4.5rem 2rem;
      }
      .why-choose h2 {
        font-size: 1.85rem;
      }
      .why-choose p {
        font-size: 1.05rem;
      }
    }

.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 0;
      line-height: 1.2;
    }
    .recommendations .note {
      font-size: 0.95rem;
      color: var(--muted-fg);
      margin: 0 0 2rem 0;
      line-height: 1.5;
    }
    .recommendations .entry {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--muted-bg);
    }
    .recommendations .entry:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .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.9rem;
      line-height: 1.6;
      margin: 0;
      color: var(--muted-fg);
    }

.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.4rem;
      font-weight: 600;
      margin: 0 0 1.2rem 0;
      line-height: 1.3;
    }
    .clarifications p {
      margin: 0 0 1rem 0;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    .clarifications ul {
      margin: 1.2rem 0 0 0;
      padding: 0 0 0 1.2rem;
      list-style: disc;
    }
    .clarifications li {
      margin-bottom: 0.4rem;
      line-height: 1.5;
      font-size: 0.95rem;
    }

.connect {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 2.5rem 1rem;
    }
    .connect .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .connect h2 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 0.6rem 0;
      line-height: 1.3;
    }
    .connect p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.4rem 0;
      opacity: 0.85;
    }
    .connect .links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.75rem;
    }
    .connect .item {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--accent-bg);
      text-decoration: none;
      padding: 0.3rem 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s;
    }
    .connect .item:hover {
      border-bottom-color: currentColor;
    }

.feedback {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3rem 1.5rem;
        }
        .feedback .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .feedback h2 {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.3;
            margin: 0 0 1.25rem;
        }
        .feedback p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 1rem;
        }
        .feedback p:last-of-type {
            margin-bottom: 1.5rem;
        }
        .feedback .link {
            display: inline-block;
            background: var(--accent-bg, #D48C3C);
            color: var(--accent-fg, #FFFFFF);
            padding: 0.6rem 1.4rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
        }
        .feedback .link:hover {
            background: var(--accent-hover, #B8732A);
        }

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .support .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }
    .support p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--muted-fg);
    }
    .support .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .support .action {
      display: inline-block;
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 4px;
      background: var(--primary-bg);
      color: var(--primary-fg);
      transition: background 0.15s;
    }
    .support .action:hover {
      background: var(--primary-hover);
    }
    .support .action.secondary {
      background: transparent;
      color: var(--page-fg);
      border: 1px solid var(--muted-bg);
    }
    .support .action.secondary:hover {
      background: var(--muted-bg);
    }

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

    .faq .inner {
      max-width: 48rem;
      margin: 0 auto;
    }

    .faq h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 2rem;
      line-height: 1.3;
    }

    .faq .question {
      margin-bottom: 1.75rem;
    }

    .faq .question h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.4rem;
      line-height: 1.4;
    }

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

    .faq .note {
      margin: 2.5rem 0 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
    }

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

    .faq .note a:hover {
      color: var(--accent-hover);
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.3;
    }
    .contacts p {
      margin: 0 0 1rem 0;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    .contacts .details {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.5rem;
      margin-top: 1.5rem;
    }
    .contacts .item {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .contacts .label {
      min-width: 5.5rem;
      font-weight: 500;
      color: var(--muted-fg);
    }
    .contacts .value {
      color: var(--page-fg);
    }
    .contacts a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contacts a:hover {
      color: var(--accent-hover);
    }

.form {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 2.5rem 1.5rem;
    }
    .form .inner {
      max-width: 520px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
    }
    .form p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0 0 1.5rem 0;
      opacity: 0.85;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .form label {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .form input,
    .form select,
    .form textarea {
      background: var(--card-bg);
      color: var(--card-fg);
      border: 1px solid var(--card-border);
      border-radius: 4px;
      padding: 0.55rem 0.7rem;
      font-size: 0.9rem;
      
      line-height: 1.4;
      width: 100%;
      box-sizing: border-box;
    }
    .form input:focus,
    .form select:focus,
    .form textarea:focus {
      outline: none;
      border-color: var(--accent-bg);
      box-shadow: 0 0 0 2px rgba(212, 140, 60, 0.25);
    }
    .form textarea {
      resize: vertical;
      min-height: 60px;
    }
    .form select {
      appearance: none;
      
      background-repeat: no-repeat;
      background-position: right 0.7rem center;
      padding-right: 2rem;
    }
    .form button {
      background: var(--accent-bg);
      color: var(--accent-fg);
      border: none;
      border-radius: 4px;
      padding: 0.7rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s ease;
      align-self: flex-start;
    }
    .form button:hover {
      background: var(--accent-hover);
    }
    .form .note {
      font-size: 0.8rem;
      margin-top: 1.2rem;
      opacity: 0.6;
    }

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

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

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

    .policy-items .intro {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }

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

    .policy-items .entry:first-of-type {
      border-top: none;
      padding-top: 0;
    }

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

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

    .policy-items .entry a {
      color: var(--accent-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .policy-items .entry a:hover {
      color: var(--accent-hover);
    }

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

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

      .policy-items .intro {
        font-size: 1rem;
      }

      .policy-items .entry h3 {
        font-size: 1.1rem;
      }

      .policy-items .entry p {
        font-size: 0.95rem;
      }
    }

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.75rem 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 .entry {
      margin-bottom: 1.75rem;
    }
    .terms-items .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.4rem 0;
      line-height: 1.4;
    }
    .terms-items .entry p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }
    @media (min-width: 640px) {
      .terms-items {
        padding: 4rem 2rem;
      }
      .terms-items h2 {
        font-size: 1.7rem;
      }
    }

.thank {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .thank p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
    }
    .thank .next {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.5rem;
      margin-top: 0.5rem;
    }
    .thank .next h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
    }
    .thank .next p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
    }

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