/* ============================================================================
   VOLVER A MI — STYLES.CSS
   Montserrat Strategic Advisory Design Patterns + Horizonte Branding
   ============================================================================ */

/* ============================================================================
   SECTION 01 — DESIGN TOKENS
   ============================================================================ */

:root {
  /* Brand Palette — HORIZONTE */
  --profundo:     #0F2027;
  --profundo-mid: #162D38;
  --coral:        #E07A5F;
  --coral-deep:   #C96B52;
  --coral-glow:   rgba(224,122,95,0.15);
  --salvia:       #81B29A;
  --salvia-soft:  rgba(129,178,154,0.12);
  --sol:          #F2CC8F;
  --sol-soft:     rgba(242,204,143,0.15);
  --bruma:        #8E8AAF;
  --bruma-soft:   rgba(142,138,175,0.1);
  --lino:         #F8F6F1;
  --bone:         #EDEBE6;
  --white:        #FFFFFF;
  --ink:          #1A1A1A;
  --graphite:     #3D3D3D;
  --slate:        #6B6B6B;
  --mist:         #9A9A9A;
  --cloud:        #C8C5BD;

  /* Functional */
  --bg:           var(--lino);
  --bg-warm:      var(--lino);
  --bg-dark:      var(--profundo);
  --text-primary: var(--profundo);
  --text-body:    var(--graphite);
  --text-muted:   var(--slate);
  --text-ghost:   var(--mist);
  --text-inverse: var(--white);
  --accent:       var(--coral);

  /* Typography */
  --ff-display:   'Poppins', -apple-system, sans-serif;
  --ff-body:      'Lato', -apple-system, sans-serif;

  /* Type Scale */
  --t-hero:    clamp(2.125rem, 6vw, 4.5rem);
  --t-display: clamp(2rem, 4vw, 3.5rem);
  --t-h1:      clamp(1.75rem, 3.5vw, 3rem);
  --t-h2:      clamp(1.5rem, 3vw, 2.5rem);
  --t-h3:      clamp(1.25rem, 2.5vw, 1.75rem);
  --t-lead:    1.125rem;
  --t-body:    1.05rem;
  --t-small:   0.9375rem;
  --t-micro:   0.8125rem;

  /* Line heights */
  --lh-tight:     1.05;
  --lh-heading:   1.08;
  --lh-body:      1.8;
  --lh-relaxed:   1.75;

  /* Spacing — strict system */
  --s-4:   0.25rem;
  --s-8:   0.5rem;
  --s-12:  0.75rem;
  --s-16:  1rem;
  --s-20:  1.25rem;
  --s-24:  1.5rem;
  --s-32:  2rem;
  --s-40:  2.5rem;
  --s-48:  3rem;
  --s-56:  3.5rem;
  --s-64:  4rem;
  --s-80:  5rem;
  --s-96:  6rem;

  /* Section padding — MSA standard */
  --section-pad: 140px;

  /* Radii */
  --r-sm:  0.375rem;
  --r-md:  0.5rem;
  --r-lg:  0.75rem;
  --r-xl:  1rem;
  --r-2xl: 1.25rem;
  --r-xl-plus: 1.5rem;
  --r-2xl-plus: 2rem;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-subtle:      0 2px 8px rgba(15,32,39,0.06);
  --shadow-soft:        0 4px 16px rgba(15,32,39,0.08);
  --shadow-deep:        0 8px 32px rgba(15,32,39,0.12);
  --shadow-card-hover:  0 20px 60px rgba(0,0,0,0.1);
  --shadow-glow:        0 12px 40px rgba(224,122,95,0.35);

  /* Easing — Apple + custom */
  --ease-apple:  cubic-bezier(0.22,1,0.36,1);
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175,0.885,0.32,1.275);

  /* Container */
  --container-max: 1200px;
  --container-pad-desktop: 40px;
  --container-pad-mobile: 20px;
}

/* ============================================================================
   SECTION 02 — GLOBAL RESET & ANTI-ALIASING
   ============================================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  line-height: var(--lh-body);
  color: var(--text-body);
  background-color: var(--bg);
  font-family: var(--ff-body);
  font-size: var(--t-body);
}

::selection {
  background: var(--coral);
  color: white;
}

/* ============================================================================
   SECTION 03 — TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

/* Display heading */
.t-display {
  font-family: var(--ff-display);
  font-size: var(--t-display);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
}

/* H1 */
.t-h1,
h1 {
  font-size: var(--t-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
}

/* H2 */
.t-h2,
h2 {
  font-size: var(--t-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
}

/* H3 */
.t-h3,
h3 {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: -0.01em;
}

/* Body text */
p {
  max-width: 620px;
  line-height: var(--lh-body);
  color: var(--text-body);
}

.t-lead {
  font-size: var(--t-lead);
  line-height: var(--lh-relaxed);
  font-weight: 500;
}

.t-small {
  font-size: var(--t-small);
  line-height: 1.6;
}

.t-micro {
  font-size: var(--t-micro);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ============================================================================
   SECTION 04 — SECTION LABELS (MSA PATTERN)
   ============================================================================ */

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  font-family: var(--ff-body);
}

.label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--coral);
  flex-shrink: 0;
}

/* ============================================================================
   SECTION 05 — CONTAINER & LAYOUT
   ============================================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-desktop);
}

.zone {
  position: relative;
}

/* Dark zones with grain overlay */
.zone--dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.zone--dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise' /%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
  pointer-events: none;
}

/* Dark sections with radial gradient glow */
.zone--dark {
  background: radial-gradient(circle at bottom right, rgba(224,122,95,0.05) 0%, transparent 50%), var(--bg-dark);
}

/* ============================================================================
   SECTION 06 — SECTION SPACING (MSA STANDARD)
   ============================================================================ */

section {
  padding: var(--section-pad) 0;
}

/* Hero section specific */
.hero {
  padding: 140px 0 100px;
}

/* ============================================================================
   SECTION 07 — BUTTONS & INTERACTIONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

/* Primary button */
.btn--primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 16px rgba(224,122,95,0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: var(--coral-deep);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Shimmer effect for primary button */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn--primary:hover::before {
  left: 100%;
}

/* Secondary button */
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}

.btn--secondary:hover {
  background: var(--text-primary);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

/* Ghost button */
.btn--ghost {
  background: transparent;
  color: var(--coral);
  border: none;
  padding: 12px 24px;
}

.btn--ghost:hover {
  background: rgba(224,122,95,0.08);
  transform: translateY(-2px);
}

/* Light button on dark */
.btn--light {
  background: var(--lino);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
}

.btn--light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

/* Small button */
.btn--small {
  padding: 12px 24px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Full width button */
.btn--full {
  width: 100%;
}

/* Button groups */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================================
   SECTION 08 — CARDS (GLASS MORPHISM & LIGHT VARIANTS)
   ============================================================================ */

/* Card grid layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-24);
  margin: var(--s-48) 0;
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--s-16);
  }
}

/* Scene cards on light backgrounds */
.scene-card {
  background: var(--lino);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border-color: rgba(224,122,95,0.2);
}

.scene-card__before {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}

.scene-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  animation: arrowMove 2s ease-in-out infinite;
}

.scene-card__after {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 600;
  flex: 1;
  margin: 0;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Trust cards (testimonials) */
.trust-card {
  background: var(--lino);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border-color: rgba(224,122,95,0.2);
}

.trust-card__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-card__quote p {
  margin: 0;
}

.trust-card__author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-card__author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.trust-card__author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Glass morphism cards on dark */
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================================================
   SECTION 09 — HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/hero-ariana.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  transform: none;
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,20,0.55), rgba(10,15,20,0.75));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.hero__title {
  font-size: var(--t-hero);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__body {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__body p {
  font-size: var(--t-lead);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-24);
  max-width: none;
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-16);
  margin-top: var(--s-48);
}

.hero__cta-note {
  font-size: var(--t-small);
  color: rgba(255,255,255,0.5);
}

.hero .label {
  color: var(--coral);
}

.hero .accent {
  color: var(--coral);
}

@media (max-width: 768px) {
  .hero {
    height: 85vh;
    min-height: 500px;
  }
  .hero__title { margin-bottom: var(--s-32); }
  .hero__body p { font-size: 1rem; }
  .hero__cta-wrap { margin-top: var(--s-32); }
}

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

/* ============================================================================
   SECTION 10 — IMAGES & EDITORIAL
   ============================================================================ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px 0;
}

.editorial-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.editorial-image:hover img {
  transform: scale(1.03);
}

/* Image reveal animation */
.img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.img-reveal img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.img-reveal.is-visible img {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   SECTION 11 — BANNER & ENV SECTION
   ============================================================================ */

.env-banner {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 20px;
}

.env-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,32,39,0.35);
  z-index: 1;
}

.env-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 40px;
  transition: all 0.6s var(--ease-out);
}

.env-banner:hover .env-banner__inner {
  transform: translateY(-8px);
}

.env-banner__title {
  font-size: var(--t-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
}

.env-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ============================================================================
   SECTION 12 — PULLQUOTES & CALLOUTS (MSA PATTERN)
   ============================================================================ */

.pullquote {
  border-left: 3px solid var(--coral);
  padding: 32px 36px;
  background: rgba(224,122,95,0.04);
  border-radius: 0 16px 16px 0;
  margin: 40px 0;
}

.pullquote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.pullquote__author {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================================
   SECTION 13 — FAQ SECTION
   ============================================================================ */

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

.faq__item {
  border-bottom: 1px solid rgba(15,32,39,0.1);
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

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

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}

.faq__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
  color: var(--coral);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  margin-top: 0;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
  margin-top: 20px;
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0;
}

/* ============================================================================
   SECTION 14 — CINEMATIC REVEAL ANIMATIONS
   ============================================================================ */

/* Base state for cinematic sections */
.cinematic-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.cinematic-section.is-active {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-section.is-leaving {
  opacity: 0;
  transform: translateY(-40px);
}

/* Element stagger */
.cinematic-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.cinematic-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for multiple items */
.cinematic-item:nth-child(1) { transition-delay: 0s; }
.cinematic-item:nth-child(2) { transition-delay: 0.1s; }
.cinematic-item:nth-child(3) { transition-delay: 0.2s; }
.cinematic-item:nth-child(4) { transition-delay: 0.3s; }
.cinematic-item:nth-child(5) { transition-delay: 0.4s; }

/* ============================================================================
   SECTION 15 — NAVIGATION
   ============================================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(248,246,241,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,32,39,0.08);
  z-index: 1000;
  transition: all 0.3s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(248,246,241,0.98);
  border-bottom-color: rgba(15,32,39,0.12);
}

.nav__container,
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-desktop);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--coral);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

/* ============================================================================
   SECTION 16 — FORMS
   ============================================================================ */

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(15,32,39,0.1);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================================
   SECTION 17 — FOOTER
   ============================================================================ */

.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise' /%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
  pointer-events: none;
}

.footer__content {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: all 0.3s var(--ease-out);
}

.footer__link:hover {
  color: var(--coral);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--coral);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================================
   SECTION 18 — RESPONSIVE DESIGN
   ============================================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  :root {
    --section-pad: 100px;
  }

  section {
    padding: var(--section-pad) 0;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .container {
    padding: 0 40px;
  }

  .nav__container,
  .nav__inner {
    padding: 0 40px;
  }

  .env-banner {
    height: 500px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .btn-group {
    gap: 12px;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  html {
    scroll-padding-top: 72px;
  }

  section {
    padding: 80px 0 60px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .container {
    padding: 0 var(--container-pad-mobile);
  }

  .nav {
    height: 72px;
  }

  .nav__container,
  .nav__inner {
    padding: 0 var(--container-pad-mobile);
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(248,246,241,0.98);
    padding: 20px var(--container-pad-mobile);
    gap: 16px;
    border-bottom: 1px solid rgba(15,32,39,0.08);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1rem;
  }

  /* Typography responsive */
  .t-display,
  .t-h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .t-h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

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

  .btn-group {
    flex-direction: column;
    gap: 12px;
  }

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

  /* Cards */
  .scene-card,
  .trust-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  /* Hero CTA */
  .hero__cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Forms */
  .form {
    max-width: 100%;
  }

  /* Pullquotes */
  .pullquote {
    padding: 24px 28px;
    margin: 32px 0;
  }

  /* FAQ */
  .faq__item {
    padding: 20px 0;
  }

  .faq__trigger {
    font-size: 1rem;
  }

  /* Images */
  .editorial-image {
    margin: 32px 0;
    border-radius: 16px;
  }

  .env-banner {
    height: 400px;
    border-radius: 16px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer__copyright {
    width: 100%;
    text-align: center;
  }

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

  /* Labels */
  .label {
    margin-bottom: 16px;
  }

  /* Spacing utilities */
  .mt-48 { margin-top: 32px; }
  .mt-64 { margin-top: 40px; }
  .mb-48 { margin-bottom: 32px; }
  .mb-64 { margin-bottom: 40px; }
}

/* Small devices — 480px */
@media (max-width: 480px) {
  :root {
    --section-pad: 60px;
  }

  section {
    padding: 60px 0 40px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .container {
    padding: 0 16px;
  }

  .nav__container,
  .nav__inner {
    padding: 0 16px;
  }

  /* Typography */
  .hero__title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero__body {
    font-size: 1rem;
  }

  .t-display,
  .t-h1 {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
  }

  .t-h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    min-height: 48px;
  }

  /* Cards */
  .scene-card,
  .trust-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  /* Env banner */
  .env-banner {
    height: 320px;
    border-radius: 12px;
  }

  .env-banner__title {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
  }

  /* Images */
  .editorial-image {
    margin: 24px 0;
    border-radius: 12px;
  }

  /* Pullquotes */
  .pullquote {
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
  }

  /* FAQ */
  .faq__item {
    padding: 16px 0;
  }

  .faq__trigger {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 30px;
  }

  .footer__grid {
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer__section-title {
    font-size: 0.65rem;
  }

  .footer__link {
    font-size: 0.9rem;
  }

  /* Labels */
  .label {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }

  .label::before {
    width: 20px;
    height: 1px;
  }
}

/* ============================================================================
   SECTION 19 — ACCESSIBILITY & REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-padding-top: 0;
  }

  .btn {
    transition: none !important;
  }

  .btn:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(224,122,95,0.25) !important;
  }

  .btn--primary::before {
    display: none !important;
  }

  .scene-card,
  .trust-card {
    transition: none !important;
  }

  .scene-card:hover,
  .trust-card:hover {
    transform: none !important;
  }

  .scene-card:hover .scene-card__arrow svg {
    transform: none !important;
  }

  .scene-card__arrow svg {
    transition: none !important;
  }

  .nav__link {
    transition: none !important;
  }

  .nav__link::after {
    transition: none !important;
  }

  .nav__toggle span {
    transition: none !important;
  }

  .editorial-image img,
  .img-reveal img {
    transition: none !important;
  }

  .editorial-image:hover img,
  .img-reveal.is-visible img {
    transform: none !important;
  }

  .env-banner__inner {
    transition: none !important;
  }

  .env-banner:hover .env-banner__inner {
    transform: none !important;
  }

  .faq__icon {
    transition: none !important;
  }

  .faq__item.is-open .faq__icon {
    transform: none !important;
  }

  .faq__answer {
    transition: none !important;
  }

  .cinematic-section,
  .cinematic-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .footer__social-link {
    transition: none !important;
  }

  .footer__link {
    transition: none !important;
  }
}

/* ============================================================================
   SECTION 20 — DARK MODE SUPPORT (OPTIONAL)
   ============================================================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--profundo);
    --text-primary: var(--white);
    --text-body: rgba(255,255,255,0.8);
  }

  body {
    background-color: var(--bg-dark);
  }

  .scene-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
  }

  .scene-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-inverse);
  }
}

/* ============================================================================
   SECTION 21 — PRINT STYLES
   ============================================================================ */

@media print {
  .nav,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: #0066cc;
  }

  .btn {
    border: 1px solid black;
  }
}

/* ============================================================================
   SECTION 22 — UTILITY CLASSES
   ============================================================================ */

.mt-16 { margin-top: var(--s-16); }
.mt-24 { margin-top: var(--s-24); }
.mt-32 { margin-top: var(--s-32); }
.mt-48 { margin-top: var(--s-48); }
.mt-64 { margin-top: var(--s-64); }

.mb-16 { margin-bottom: var(--s-16); }
.mb-24 { margin-bottom: var(--s-24); }
.mb-32 { margin-bottom: var(--s-32); }
.mb-48 { margin-bottom: var(--s-48); }
.mb-64 { margin-bottom: var(--s-64); }

.pt-16 { padding-top: var(--s-16); }
.pt-24 { padding-top: var(--s-24); }
.pt-32 { padding-top: var(--s-32); }

.pb-16 { padding-bottom: var(--s-16); }
.pb-24 { padding-bottom: var(--s-24); }
.pb-32 { padding-bottom: var(--s-32); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================================
   MOBILE STICKY CTA BAR
   ============================================================================ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(15,32,39,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

.mobile-cta-bar .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
}

/* ============================================================================
   DARK ZONE — Scene card inversions
   ============================================================================ */

.zone--dark .scene-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.zone--dark .scene-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,122,95,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.zone--dark .scene-card__before {
  color: rgba(255,255,255,0.6);
}

.zone--dark .scene-card__after {
  color: var(--white);
}

/* ============================================================================
   SECTION 23 — MISSING COMPONENT STYLES
   ============================================================================ */

/* --- Zone variants --- */
.zone--light {
  background-color: var(--lino);
}

.zone--warm {
  background-color: var(--bone);
}

/* --- Text utility --- */
.text-center {
  text-align: center;
}

/* --- Typography: Sub-heading --- */
.t-sub {
  font-family: var(--ff-display);
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* --- Container narrow --- */
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-pad-desktop);
}

@media (max-width: 768px) {
  .container--narrow {
    padding: 0 var(--container-pad-mobile);
  }
}

/* --- Button large --- */
.btn--large {
  padding: 18px 44px;
  font-size: 1.05rem;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .btn--large {
    padding: 16px 32px;
    font-size: 0.95rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn--large {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--coral);
  color: white;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* --- Mobile overlay --- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,32,39,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  height: 36px;
  width: auto;
  display: block;
}

.logo__img--footer {
  height: 30px;
  opacity: 0.9;
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo__img {
    height: 30px;
  }
  .logo__sub {
    display: none;
  }
}

/* --- Nav inner & CTA --- */
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-desktop);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav__inner {
    padding: 0 var(--container-pad-mobile);
  }
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 0 16px;
  }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,122,95,0.3);
}

@media (max-width: 768px) {
  .nav__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    margin-top: 8px;
  }
}

/* --- Split layouts (two-column) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--text-image {
  grid-template-columns: 1.2fr 0.8fr;
}

.split--image-text {
  grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 1024px) {
  .split,
  .split--text-image,
  .split--image-text {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .split,
  .split--text-image,
  .split--image-text {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--image-text > :first-child {
    order: 2;
  }
  .split--image-text > :last-child {
    order: 1;
  }
}

/* --- Quote block --- */
.quote-block {
  border-left: 3px solid var(--coral);
  padding: 24px 32px;
  background: rgba(224,122,95,0.04);
  border-radius: 0 12px 12px 0;
  margin: 40px 0;
}

.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  max-width: none;
}

.zone--dark .quote-block {
  background: rgba(224,122,95,0.08);
  border-color: var(--coral);
}

.zone--dark .quote-block p {
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .quote-block {
    padding: 20px 24px;
    margin: 32px 0;
  }
}

@media (max-width: 480px) {
  .quote-block {
    padding: 16px 20px;
    margin: 24px 0;
  }
}

/* --- Highlight bar --- */
.highlight-bar {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  padding: 40px 48px;
  border-radius: 16px;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}

.highlight-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmerSlide 4s infinite;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}

.highlight-bar p {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  max-width: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .highlight-bar {
    padding: 32px 28px;
    margin: 40px 0;
  }
  .highlight-bar p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .highlight-bar {
    padding: 24px 20px;
    margin: 32px 0;
    border-radius: 12px;
  }
  .highlight-bar p {
    font-size: 0.95rem;
  }
}

/* --- Symptom list --- */
.symptom-list {
  background: rgba(15,32,39,0.03);
  border: 1px solid rgba(15,32,39,0.06);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 40px 0;
}

.symptom-list p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-body);
  max-width: none;
  margin: 0;
}

@media (max-width: 768px) {
  .symptom-list {
    padding: 28px 24px;
    border-radius: 12px;
  }
}

/* --- Phase component (program phases) --- */
.phase {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(15,32,39,0.08);
}

.phase:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.phase__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
}

.phase__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.phase__title {
  font-size: var(--t-h3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phase__dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

.phase__body {
  padding-left: 0;
}

.phase__body p {
  margin-bottom: var(--s-24);
}

.phase__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .phase {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .phase__header {
    flex-direction: column;
    gap: 8px;
  }
  .phase__num {
    font-size: 2.25rem;
  }
}

/* --- Steps component --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 48px 0;
  text-align: left;
}

.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(224,122,95,0.25);
}

.step__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step {
    padding: 24px 20px;
  }
}

/* --- Case steps --- */
.case-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(15,32,39,0.08);
}

.case-step:last-child {
  border-bottom: none;
}

.case-step__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 60px;
}

.case-step__content {
  flex: 1;
}

.case-step__title {
  font-size: var(--t-h3);
  font-weight: 600;
  margin-bottom: 16px;
}

.case-step__content p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .case-step {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }
  .case-step__num {
    font-size: 2rem;
    width: auto;
  }
}

/* --- CTA card --- */
.cta-card {
  background: linear-gradient(135deg, var(--profundo) 0%, var(--profundo-mid) 100%);
  padding: 64px 48px;
  border-radius: 24px;
  text-align: center;
  margin: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise' /%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-card h3 {
  font-size: var(--t-h2);
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.cta-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: none;
  position: relative;
}

.cta-card .btn {
  position: relative;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 48px 28px;
    border-radius: 20px;
    margin: 48px 0;
  }
}

@media (max-width: 480px) {
  .cta-card {
    padding: 36px 20px;
    border-radius: 16px;
    margin: 36px 0;
  }
}

/* --- Proof grid (before/after comparison) --- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin: 64px 0;
}

.proof-grid__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proof-grid__label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.proof-grid__col--before .proof-grid__label {
  color: var(--text-muted);
}

.proof-grid__col--after .proof-grid__label {
  color: var(--coral);
}

.proof-grid__item {
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(15,32,39,0.03);
  border: 1px solid rgba(15,32,39,0.06);
}

.proof-grid__col--after .proof-grid__item {
  background: rgba(224,122,95,0.04);
  border-color: rgba(224,122,95,0.12);
  color: var(--text-primary);
  font-weight: 500;
}

.proof-grid__divider {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 40px 0;
}

.proof-grid__line {
  width: 2px;
  background: linear-gradient(to bottom, var(--bone), var(--coral), var(--bone));
  border-radius: 1px;
  min-height: 100%;
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-grid__divider {
    display: none;
  }
  .proof-grid__col--after {
    padding-top: 24px;
    border-top: 2px solid var(--coral);
  }
}

/* --- Transform grid (before/after columns) --- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 56px 0;
}

.transform-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transform-col__label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.transform-col--before .transform-col__label {
  color: var(--text-muted);
}

.transform-col--after .transform-col__label {
  color: var(--coral);
}

.transform-item {
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(15,32,39,0.03);
  border: 1px solid rgba(15,32,39,0.06);
}

.transform-col--after .transform-item {
  background: rgba(224,122,95,0.04);
  border-color: rgba(224,122,95,0.12);
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .transform-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .transform-col--after {
    padding-top: 24px;
    border-top: 2px solid var(--coral);
  }
}

/* --- Trust grid & extended trust card styles --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral-glow);
  border-radius: 14px;
  color: var(--coral);
  flex-shrink: 0;
}

.trust-card__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.trust-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Footer restructured (top/brand/links) --- */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  flex: 1;
  max-width: 400px;
}

.footer__brand .logo {
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: none;
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__links .footer__link {
  margin-bottom: 0;
}

.footer .logo__sub {
  color: rgba(255,255,255,0.5);
}

.footer .logo__img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
  .footer__brand {
    max-width: none;
  }
  .footer .logo__sub {
    display: inline;
  }
}

/* --- FAQ answer inner & question text --- */
.faq__answer-inner {
  padding: 0;
}

.faq__answer-inner p {
  margin-bottom: 12px;
}

.faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.faq__question {
  flex: 1;
}

/* --- Dark zone typography overrides --- */
.zone--dark h1,
.zone--dark h2,
.zone--dark h3,
.zone--dark h4 {
  color: var(--white);
}

.zone--dark p {
  color: rgba(255,255,255,0.8);
}

.zone--dark .label {
  color: var(--coral);
}

.zone--dark .label::before {
  background: var(--coral);
}

.zone--dark .t-sub {
  color: rgba(255,255,255,0.95);
}

.zone--dark .accent {
  color: var(--coral);
}

.zone--dark .quote-block {
  background: rgba(224,122,95,0.08);
}

.zone--dark .quote-block p {
  color: rgba(255,255,255,0.9);
}

/* --- Body loaded state (set by JS after hero entrance) --- */
body.is-loaded {
  /* Signal class — ensures hero elements are visible after GSAP entrance */
}

/* --- Accent class --- */
.accent {
  color: var(--coral);
}

/* --- Env banner fix: inner uses background-image inline --- */
.env-banner__inner[style*="background-image"] {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

/* Override: when env-banner__inner HAS the background, the banner itself is the frame */
.env-banner:has(.env-banner__inner[style*="background-image"]) {
  background: none;
}

.env-banner .env-banner__inner[style*="background-image"] {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ============================================================================
   END OF STYLES.CSS
   ============================================================================ */
