/* =====================
   DESIGN SYSTEM + COLORS
   ===================== */

:root {
  /* Deep chocolate / warm charcoal palette */
  --color-bg: #f9f6f1;            /* ivory - main background */
  --color-bg-soft: #f0ece5;       /* soft greige */
  --color-surface: #ffffff;       /* clean white surface */
  --color-surface-dark: #f3efe9;  /* soft greige surface */
  --color-text: #3a332e;          /* warm charcoal - primary text */
  --color-text-muted: #272727;    /* taupe - muted text */
  --color-border: #ddd7d0;        /* greige - borders */
  --color-chocolate: #5c4738;     /* deep chocolate */
  --color-chocolate-deep: #3d2c1e; /* very dark brown */
  --color-taupe: #a29487;         /* taupe */
  --color-ivory: #fdf9f4;         /* warm ivory / cream */
  --color-accent: #8d7a6b;        /* warm accent (greige-brown) */
  --color-add: #c9bdb0;           /* light taupe / beige */
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --transition: 0.6s cubic-bezier(0.22, 1, 0.33, 1);
  --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.33, 1);

  --max-width: 1200px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* Dark theme variants for chocolate sections */
.theme-dark {
  --color-text: var(--color-ivory);
  --color-text-muted: #c9bdb0;
  --color-border: #5a4c40;
}

/* =====================
   GLOBAL RESET + BASE
   ===================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  scroll-margin: 0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1, .hero-title, .final-cta-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2, .section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h3, .step-title, .plan-name, .item-title, .bonus-title, .contact-value {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
}

p, .body-text {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
}

.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-chocolate-deep);
}

.section-label--light {
  color: var(--color-ivory);
  opacity: 0.85;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-chocolate-deep);
}

.editorial-title--light {
  color: var(--color-ivory);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-ivory);
  max-width: 36rem;
  margin-top: 1rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: 4.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.editorial-rule {
  width: 2px;
  height: 2.5rem;
  background-color: var(--color-chocolate);
  margin: 1.5rem 0;
}

.editorial-number {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--color-bg-soft);
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.editorial-number--large {
  position: static;
  font-size: clamp(8rem, 18vw, 14rem);
  opacity: 0.08;
  color: #e8dbd0;
  line-height: 0.85;
  text-align: center;
  margin-bottom: 2rem;
}

/* =====================
   NAVIGATION
   ===================== */

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  background: transparent;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-chocolate-deep);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-chocolate-deep);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-chocolate-deep);
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-chocolate-deep);
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--color-chocolate);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: var(--color-chocolate);
  color: var(--color-ivory);
  transform: translateY(-1px);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.2rem;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  min-width: 42px;
}

.lang-btn:hover {
  color: var(--color-chocolate-deep);
}

.lang-btn.active {
  color: var(--color-chocolate-deep);
  background-color: var(--color-bg-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  cursor: pointer;
  border: none;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-chocolate-deep);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.33, 1), opacity 0.4s ease;
}

/* Hamburger -> X when open */
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   HERO
   ===================== */

.hero {
  min-height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(61, 44, 30, 0.02) 0%,
      rgba(61, 44, 30, 0.12) 40%,
      rgba(61, 44, 30, 0.28) 70%,
      rgba(61, 44, 30, 0.42) 100%
    );
  backdrop-filter: brightness(0.9) contrast(1.05);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  opacity: 0;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ivory);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 800;
  color: var(--color-ivory);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: var(--color-ivory);
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-chocolate);
  color: var(--color-ivory);
  border-color: var(--color-chocolate);
}

.btn--primary:hover {
  background-color: var(--color-chocolate-deep);
  border-color: var(--color-chocolate-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 44, 30, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-ivory);
  border-color: var(--color-ivory);
  opacity: 0.9;
}

.btn--secondary:hover {
  background-color: var(--color-ivory);
  color: var(--color-chocolate-deep);
  transform: translateY(-2px);
  opacity: 1;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-chocolate);
  border-color: var(--color-chocolate);
}

.btn--outline:hover {
  background-color: var(--color-chocolate-deep);
  color: var(--color-ivory);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: var(--text-xs);
  padding: 0.6rem 1.5rem;
}

.btn--block {
  width: 100%;
}

.btn-arrow {
  transition: transform 0.4s ease;
  display: inline-block;
}

.btn--primary:hover .btn-arrow,
.btn--secondary:hover .btn-arrow,
.btn--outline:hover .btn-arrow {
  transform: translateX(3px);
}

/* =====================
   SCROLL INDICATOR
   ===================== */

.scroll-indicator {
  margin-top: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ivory);
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-wheel {
  opacity: 0.6;
}

/* =====================
   ABOUT SECTION
   ===================== */

.about {
  background-color: var(--color-bg);
  position: relative;
}

.about-header {
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 26rem;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.about-content {
  position: relative;
}

.about-name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-chocolate-deep);
  margin-bottom: 0.25rem;
}

.about-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-chocolate);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-bio {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-chocolate);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =====================
   AUDITORIA (FOR WHOM) SECTION
   ===================== */

.auditoria {
  position: relative;
  background-color: var(--color-chocolate-deep);
  color: var(--color-ivory);
  overflow: hidden;
}

.auditoria-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.auditoria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(61, 44, 30, 0.85) 0%,
      rgba(61, 44, 30, 0.75) 40%,
      rgba(30, 20, 12, 0.8) 100%
    );
  z-index: -0.5;
  backdrop-filter: brightness(0.85) contrast(1.1);
}

.auditoria-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.auditoria-item {
  position: relative;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 0.5s ease, background-color 0.5s ease;
  backdrop-filter: blur(2px);
}

.auditoria-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.auditoria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
}

.item-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: rgba(253, 249, 244, 0.15);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.item-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--color-ivory);
  margin-bottom: 0.5rem;
}

.item-desc {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: rgba(201, 189, 176, 0.85);
  max-width: 22rem;
}

/* =====================
   PROGRAM SECTION
   ===================== */

.program-header .section-label {
  color: var(--color-chocolate-deep);
}

.program-title, .program-header .editorial-title {
  color: var(--color-chocolate-deep);
}

.program-steps {
  margin-top: 3rem;
  position: relative;
}

.program-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.program-step:last-child {
  margin-bottom: 0;
}

.step-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-chocolate-deep);
  opacity: 0.12;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  user-select: none;
}

.step-num--light {
  color: var(--color-ivory);
  opacity: 0.1;
}

.step-content {
  margin-left: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.step-line {
  position: absolute;
  left: -2.5rem;
  top: 0.75rem;
  width: 1.5rem;
  height: 1px;
  background-color: var(--color-chocolate);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.step-title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--color-chocolate-deep);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  max-width: 38rem;
}

.program-bonus-header {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.program-bonus-header .section-label {
  color: var(--color-chocolate-deep);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.program-bonus {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
}

.bonus-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-chocolate);
  opacity: 0.2;
  margin-bottom: 0.75rem;
}

.bonus-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-chocolate-deep);
  margin-bottom: 0.5rem;
}

.bonus-desc {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
}

/* =====================
   PRICING SECTION
   ===================== */

.pricing-header .section-label {
  color: var(--color-chocolate-deep);
}

.pricing-title, .pricing-header .editorial-title {
  color: var(--color-chocolate-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: 3rem;
}

.pricing-plan {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: var(--transition);
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-4px);
  border-color: var(--color-chocolate);
  box-shadow: 0 20px 48px rgba(61, 44, 30, 0.06);
}

.pricing-plan--featured {
  border-color: var(--color-chocolate);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-dark) 100%);
}

.pricing-plan--featured:hover {
  border-color: var(--color-chocolate-deep);
  box-shadow: 0 24px 56px rgba(61, 44, 30, 0.12);
}

.plan-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-chocolate-deep);
  opacity: 0.12;
  line-height: 1;
}

.plan-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-chocolate-deep);
  background-color: var(--color-bg-soft);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

.plan-name {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--color-chocolate-deep);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-chocolate);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.plan-features {
  margin-bottom: 1.5rem;
}

.feature {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-chocolate);
  flex-shrink: 0;
}

.feature:last-child {
  border-bottom: none;
}

.pricing-plan--featured .plan-num {
  opacity: 0.15;
}

.plan-features__header {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-chocolate);
  margin: 1rem 0 0.75rem;
}

.plan-features__header--additional {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.feature--extra {
  font-weight: 500;
  padding-top: 0.5rem;
}

.promo-card {
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(58, 50, 46, 0.04);
}

.promo-gift {
  font-size: clamp(2rem, 5vw, 3rem);
  display: block;
  margin-bottom: 1rem;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-chocolate-deep);
  margin-bottom: 1rem;
}

.promo-text {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* =====================
   FAQ SECTION
   ===================== */

.faq-header .section-label {
  color: var(--color-chocolate-deep);
}

.faq-title, .faq-header .editorial-title {
  color: var(--color-chocolate-deep);
}

.faq-accordion {
  margin-top: clamp(2rem, 5vw, 3rem);
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-chocolate);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-question:hover .question-text {
  color: var(--color-chocolate-deep);
}

.question-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--color-chocolate-deep);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text);
  transition: var(--transition-fast);
}

.faq-question[aria-expanded="true"] .faq-icon-line:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}

.faq-question[aria-expanded="true"] .faq-icon-line:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  border: none;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0 0 1.25rem 0;
}

.faq-item.active .faq-answer {
  max-height: 30rem;
}

/* =====================
   CONTACTS SECTION
   ===================== */

.contacts-header .section-label {
  color: var(--color-chocolate-deep);
}

.contacts-header .editorial-title {
  color: var(--color-chocolate-deep);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
  color: var(--color-chocolate-deep);
  transform: translateX(4px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-chocolate);
  flex-shrink: 0;
}

.contact-value {
  font-family: var(--font-sans);
  font-weight: 500;
}

/* =====================
   FINAL CTA
   ===================== */

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  will-change: transform;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(61, 44, 30, 0.7) 0%,
      rgba(61, 44, 30, 0.55) 50%,
      rgba(30, 20, 12, 0.65) 100%
    );
  z-index: -1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 45rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-ivory);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.final-cta-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-ivory);
  opacity: 0.85;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background-color: var(--color-chocolate-deep);
  color: var(--color-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ivory);
  margin-bottom: 0.25rem;
}

.footer-brand .footer-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(201, 189, 176, 0.7);
  max-width: 16rem;
}

.footer a {
  color: rgba(201, 189, 176, 0.85);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-ivory);
}

.footer-title-section {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 189, 176, 0.6);
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(201, 189, 176, 0.85);
  padding: 0.4rem 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(162, 148, 135, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(201, 189, 176, 0.6);
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.footer-lang-btn {
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 600;
  color: rgba(201, 189, 176, 0.7);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  min-width: 42px;
  border: 1px solid rgba(162, 148, 135, 0.3);
}

.footer-lang-btn:hover {
  color: var(--color-ivory);
}

.footer-lang-btn.active {
  color: var(--color-ivory);
  background-color: rgba(92, 71, 60, 0.3);
  border-color: rgba(162, 148, 135, 0.4);
}

/* =====================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ===================== */

/* Prevent any horizontal overflow from content */
@media (max-width: 480px) {
  .auditoria-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .auditoria-item {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .program-step {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  .step-desc {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .pricing-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .pricing-plan {
    padding: clamp(1.25rem, 3vw, 1.75rem);
  }

  .plan-features {
    margin-bottom: 1.25rem;
  }

  .feature {
    padding: 0.4rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .program-bonus__item {
    padding: 0.5rem 0;
  }

  .bonus-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .bonus-desc {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .final-cta-content {
    padding: 0 1rem;
  }

  .footer-grid {
    gap: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
  }

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

  .footer-tagline {
    max-width: 100%;
  }

  .footer-nav ul {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Ensure images never cause horizontal overflow */
@media (max-width: 768px) {
  .hero-background-image,
  .final-cta-image,
  .auditoria-bg,
  .about-image,
  .program-step img {
    max-width: 100vw;
  }
}

/* Fix any flex/grid items that might overflow */
@media (max-width: 480px) {
  .container {
    max-width: 100%;
    width: 100%;
  }
  .auditoria-grid,
  .pricing-grid,
  .program-bonus,
  .program-steps,
  .about-grid,
  .contacts-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .auditoria-item,
  .pricing-plan,
  .program-bonus__item,
  .program-step,
  .contact-item {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Better touch targets for mobile */
@media (max-width: 1024px) {
  .faq-question {
    padding: 1rem 0;
  }

  .contact-icon {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Ensure proper text scaling on very small screens */
@media (max-width: 360px) {
  :root {
    --text-base: 0.95rem;
  }
}

/* Mobile nav link touch targets */
@media (max-width: 1024px) {
  .mobile-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* =====================
   ANIMATION HELPERS (GSAP)
   ===================== */

[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in"] {
  /* opacity only, transform none */
}

[data-animate="stagger"] {
  opacity: 0;
}

.no-js [data-animate] {
  opacity: 1;
  transform: none;
}

.no-js .hero-content,
.no-js .hero-content > * {
  opacity: 1 !important;
  transform: none !important;
}

/* =====================
   RESPONSIVE
   ===================== */

/* Desktop xl / wide */
@media (min-width: 1441px) {
  .hero-title {
    font-size: 8.5rem;
  }
}

/* Desktop lg */
@media (max-width: 1440px) {
  .hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
  }
}

/* ===== Tablet (1024) — collapse nav, 2-col pricing ===== */
@media (max-width: 1024px) {
  html {
    scroll-padding-top: 4rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-bonus {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile (768) — single column pricing ===== */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 4.5rem);
  }

  /* Program: prevent number/text overlap on mobile */
  .program-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .step-num {
    position: static;
    align-self: flex-start;
    font-size: clamp(2rem, 5vw, 3rem);
    opacity: 0.15;
    line-height: 1;
  }

  .step-content {
    margin-left: 0;
    width: 100%;
  }

  .step-line {
    display: none;
  }

  /* Contacts: center Telegram/Instagram items on mobile */
  .contacts-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    width: 100%;
  }

  .contact-value {
    text-align: center;
  }
}

/* ===== Desktop lg / wide ===== */
@media (max-width: 1440px) {
  .hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
  }
}

/* ===== Desktop xl ===== */
@media (min-width: 1441px) {
  .hero-title {
    font-size: 8.5rem;
  }
}

/* ===== Laptop / 1100 ===== */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .auditoria-grid {
    grid-template-columns: 1fr;
  }

  /* Auditoria: prevent number/text overlap once cards stack */
  .auditoria-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .item-num {
    position: static;
    align-self: flex-start;
    font-size: clamp(2rem, 5vw, 3rem);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .item-title {
    margin-bottom: 0.25rem;
  }
}

/* ===== Mobile 480 ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .editorial-number {
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
  }

  .editorial-number--large {
    font-size: clamp(5rem, 16vw, 7rem);
  }

  .step-content {
    margin-left: 0;
  }

  .step-line {
    left: -1.25rem;
  }

  .btn {
    width: 100%;
  }

  .program-bonus {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }

  .auditoria-item {
    padding: clamp(1.25rem, 3vw, 2rem);
  }

  .item-desc {
    max-width: 100%;
  }

  .pricing-plan {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .feature {
    font-size: var(--text-sm);
  }

  .step-content {
    margin-left: 0;
  }

  .step-line {
    left: -1rem;
    width: 1rem;
  }

  .bonus-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}

@media (max-width: 390px) {
  .hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 11vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .auditoria-item {
    padding: 1.25rem;
  }

  .pricing-plan {
    padding: 1.5rem;
  }

  .plan-name {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }

  .plan-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: clamp(1.5rem, 12vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .auditoria-item {
    padding: 1rem;
  }

  .item-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }

  .item-desc {
    font-size: 0.9rem;
  }

  .pricing-plan {
    padding: 1.25rem;
  }

  .feature {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
  }

  .bonus-title {
    font-size: 1rem;
  }

  .bonus-desc {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 1rem 0;
  }

  .question-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .final-cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .final-cta-subtitle {
    font-size: 0.95rem;
  }
}

/* =====================
   REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-background-image,
  .final-cta-image {
    transform: none !important;
  }

  .auditoria-item:hover,
  .pricing-plan:hover {
    transform: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-ivory);
  z-index: 999;
  padding: 5rem clamp(1.5rem, 4vw, 3rem) 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav--open {
  display: flex;
  flex-direction: column;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 1000;
}

.mobile-nav-close-line {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
  width: 18px;
  height: 2px;
  background-color: var(--color-chocolate-deep);
  border-radius: 1px;
  transition: var(--transition-fast);
}

.mobile-nav-close-line:first-child {
  transform: rotate(45deg);
}

.mobile-nav-close-line:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  background-color: var(--color-chocolate);
  border-color: var(--color-chocolate);
  outline: none;
}

.mobile-nav-close:hover .mobile-nav-close-line,
.mobile-nav-close:focus-visible .mobile-nav-close-line {
  background-color: var(--color-ivory);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-nav .nav-link {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  color: var(--color-chocolate-deep);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

.mobile-nav .nav-link:hover {
  color: var(--color-chocolate);
  padding-left: 0.5rem;
}

.mobile-nav-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 0.25rem;
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.mobile-nav-lang .lang-btn {
  font-size: 0.8rem;
  padding: 0.5rem 0.85rem;
  min-width: 48px;
  min-height: 44px;
  color: var(--color-text-muted);
}

.mobile-nav-lang .lang-btn.active {
  color: var(--color-chocolate-deep);
  background-color: var(--color-surface);
}

.mobile-nav-cta {
  margin-top: 2rem;
}

/* =====================
   NAVIGATION SCROLL STATE
   ===================== */
.nav-container.scrolled {
  background-color: rgba(253, 249, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(61, 44, 30, 0.05);
}

.nav-container.scrolled .nav-link {
  color: var(--color-chocolate-deep);
}

.nav-container.scrolled .nav-logo {
  color: var(--color-chocolate-deep);
}

.nav-container.scrolled .nav-cta {
  color: var(--color-chocolate-deep);
}

.nav-container.scrolled .nav-toggle-bar {
  background-color: var(--color-chocolate-deep);
}

/* =====================
   TOUCH TARGETS (mobile minimum 44px)
   ===================== */
@media (max-width: 1024px) {
  .lang-btn {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
  }

  .faq-question {
    min-height: 44px;
  }

  .contact-item {
    min-height: 44px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0.6rem 1.4rem;
  }

  .btn {
    min-height: 44px;
  }
}

/* =====================
   HERO HEIGHT (mobile)
   ===================== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .final-cta {
    min-height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .nav-cta {
    display: none;
  }
}

/* =====================
   SCROLL MARGIN (sections)
   ===================== */
@media (max-width: 1024px) {
  .section {
    scroll-margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .section {
    scroll-margin-top: 3.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    scroll-margin-top: 3rem;
  }
}
