/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #07060A;
  --bg-2:        #0D0C14;
  --bg-card:     #111020;
  --bg-card-2:   #161525;
  --cream:       #F2EFE8;
  --cream-2:     #C2BDB4;
  --cream-3:     #7A7470;
  --gold:        #D4AF37;
  --gold-light:  #F4D86A;
  --gold-mid:    #C9A84C;
  --gold-dark:   #8B6914;
  --gold-deep:   #4A3809;
  --gold-rgb:    212, 175, 55;
  --line:        rgba(212, 175, 55, 0.14);
  --line-soft:   rgba(242, 239, 232, 0.07);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', 'Courier New', monospace;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: min(88rem, 100% - 3rem);
  --nav-h: 80px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--serif); line-height: 1.05; letter-spacing: -0.01em; font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: var(--container); margin-inline: auto; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-mid); font-family: var(--mono); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 6px; font-weight: 500; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   4. Typography
   ============================================================= */
em { font-style: italic; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-mid) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer; transition: all 0.4s var(--ease-soft);
  white-space: nowrap; position: relative; overflow: hidden;
  isolation: isolate;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-mid) 100%);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(var(--gold-rgb), 0.25), 0 1px 4px rgba(var(--gold-rgb), 0.15);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--gold-rgb), 0.40), 0 4px 12px rgba(var(--gold-rgb), 0.20);
  background: linear-gradient(135deg, #FFE680 0%, var(--gold-light) 40%, var(--gold) 100%);
}
.btn-gold:active { transform: translateY(-1px); transition-duration: 0.1s; }

.btn-ghost {
  background: transparent;
  color: var(--cream-2);
  border: 1px solid var(--line-soft);
}
.btn-ghost:hover {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(var(--gold-rgb), 0.04);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-mid);
  border: 1px solid var(--line);
}
.btn-outline-gold:hover {
  background: rgba(var(--gold-rgb), 0.06);
  color: var(--gold-light);
  border-color: rgba(var(--gold-rgb), 0.35);
  transform: translateY(-2px);
}

.btn-gold-sm {
  display: inline-flex; align-items: center;
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.22);
  transition: all 0.35s var(--ease-soft);
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.35); }

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

/* =============================================================
   5b. Logo mark
   ============================================================= */
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--gold-light); border-radius: 50%;
}
.cursor-ring {
  width: 30px; height: 30px; margin: -15px;
  border: 1.5px solid rgba(var(--gold-rgb), 0.6); border-radius: 50%;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out), border-color 0.3s;
}
.cursor.is-interactive .cursor-ring {
  width: 50px; height: 50px; margin: -25px;
  border-color: var(--gold-light);
}
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   6b. Scroll progress
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: rgba(0,0,0,0.2); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-mid));
  transform-origin: 0 0; transform: scaleX(0); transition: transform 0.08s linear;
}

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, box-shadow 0.5s;
}
.nav.is-scrolled {
  background: rgba(7, 6, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; line-height: 1;
}
.nav-logo-img {
  height: 64px; width: auto; display: block;
  object-fit: contain; max-width: 180px;
}
.logo-name {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream-3);
  transition: color 0.3s;
}
.nav-logo:hover .logo-name { color: var(--gold-mid); }

.nav-links {
  display: none; align-items: center; gap: 2.5rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--cream-3);
  position: relative; padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-soft);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.8rem; }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; border-radius: 4px;
  transition: background 0.2s;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger:hover { background: rgba(var(--gold-rgb), 0.06); }
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream-2); border-radius: 2px;
  transition: transform 0.3s var(--ease-soft), opacity 0.3s;
}
.nav-burger.is-open span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.is-open span:last-child  { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7, 6, 10, 0.97);
  backdrop-filter: blur(24px);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.4rem; color: var(--cream-3);
  padding: 0.4rem 0.7rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-close:hover { color: var(--cream); background: rgba(var(--gold-rgb), 0.08); }
.nav-mobile-links {
  display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center;
}
.nav-mobile-links a {
  font-family: var(--serif); font-size: clamp(1.8rem, 6vw, 2.8rem); font-weight: 500;
  color: var(--cream-2); transition: color 0.3s;
}
.nav-mobile-links a:hover { color: var(--gold-light); }
.nav-mobile-links .btn-gold { font-family: var(--sans); font-size: 0.9rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Hero gradient — GPU-composited blobs (no repaint on mouse move) */
.hero-gradient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hg-blob {
  position: absolute; border-radius: 50%; pointer-events: none; will-change: transform;
}
.hg-blob:nth-child(1) {
  width: 80vw; height: 80vw; top: -18%; left: -12%;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.17) 0%, transparent 65%);
  filter: blur(55px);
}
.hg-blob:nth-child(2) {
  width: 65vw; height: 65vw; bottom: -14%; right: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(139,105,20,0.12) 0%, transparent 65%);
  filter: blur(60px);
}
.hg-blob:nth-child(3) {
  width: 50vw; height: 50vw; top: 22%; right: 4%;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.09) 0%, transparent 60%);
  filter: blur(50px);
}

/* Ambient static glow layers */
.hero-glow {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 35% at 28% 58%, rgba(212,175,55,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 75% 28%, rgba(201,168,76,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 50% 85%, rgba(139,105,20,0.06) 0%, transparent 60%);
  filter: blur(70px) saturate(120%);
  animation: glowDrift 22s ease-in-out infinite;
}
@keyframes glowDrift {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  33%       { transform: scale(1.08) rotate(4deg); opacity: 0.85; }
  66%       { transform: scale(0.96) rotate(-3deg); opacity: 0.95; }
}

/* Subtle grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Film grain */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 8vw, 6rem);
  max-width: 800px;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-mid); margin-bottom: 2.2rem;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: heroDotPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 500; line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-mid) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream-2); max-width: 56ch; line-height: 1.7;
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
  font-size: 1.5rem; font-weight: 500;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--cream-3); }
.hero-stat-sep {
  width: 1px; height: 36px; background: var(--line);
  align-self: center; flex-shrink: 0;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  z-index: 2;
}
.hero-scroll .mono { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-3); }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollLineDrop 2s ease-in-out infinite;
}
@keyframes scrollLineDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-wrap {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 0.95rem 0; overflow: hidden;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track {
  display: inline-flex; gap: 2.5rem; white-space: nowrap;
  will-change: transform;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-3);
}
.marquee-track .sep { color: var(--gold-dark); }

/* =============================================================
   10. Sections — shared
   ============================================================= */
section { padding-block: clamp(5rem, 10vw, 8rem); }

.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-header .eyebrow { margin-bottom: 1.2rem; display: block; }
.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream); margin-bottom: 1rem;
}
.section-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 1rem; color: var(--cream-2); max-width: 52ch; margin-inline: auto; line-height: 1.7; }

/* =============================================================
   11. Section: What is SEO
   ============================================================= */
.section-what { background: var(--bg-2); }

.what-grid {
  display: grid; gap: clamp(3rem, 6vw, 6rem);
}
@media (min-width: 960px) {
  .what-grid { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

.what-left .eyebrow { margin-bottom: 1.2rem; display: block; }
.what-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--cream); line-height: 1.05;
}
.what-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.what-gold-line {
  width: 60px; height: 2px; margin-top: 2rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.what-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--cream-2);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 54ch;
}

.what-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.what-pillar {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem; border: 1px solid var(--line);
  border-radius: 10px; background: rgba(var(--gold-rgb), 0.02);
  transition: border-color 0.3s, background 0.3s;
}
.what-pillar:hover {
  border-color: rgba(var(--gold-rgb), 0.28);
  background: rgba(var(--gold-rgb), 0.05);
}
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--gold-mid);
}
.what-pillar strong { display: block; color: var(--cream); margin-bottom: 0.3rem; font-family: var(--sans); }
.what-pillar p { font-size: 0.875rem; color: var(--cream-3); line-height: 1.6; margin: 0; }

/* =============================================================
   12. Benefits grid
   ============================================================= */
.section-benefits { background: var(--bg); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 540px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  position: relative;
  padding: 2rem 1.8rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-soft), box-shadow 0.5s;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.benefit-card:hover {
  border-color: rgba(var(--gold-rgb), 0.22);
  background: var(--bg-card-2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--gold-rgb), 0.08);
}
.benefit-card--accent {
  border-color: rgba(var(--gold-rgb), 0.20);
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
}
.benefit-card--subtle {
  border: 1px dashed rgba(var(--gold-rgb), 0.20);
  background: transparent; display: flex; align-items: center; justify-content: center;
}
.benefit-cta-card { text-align: center; padding: 1rem; }
.benefit-cta-card .mono { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.benefit-cta-card h3 { font-size: 1.6rem; color: var(--cream); margin-bottom: 1.5rem; }
.benefit-cta-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.card-num {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold-dark);
  margin-bottom: 1.4rem; display: block;
}
.card-icon {
  color: var(--gold-mid); margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.benefit-card:hover .card-icon { color: var(--gold-light); }
.benefit-card h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.8rem; font-family: var(--sans); font-weight: 600; }
.benefit-card p { font-size: 0.875rem; color: var(--cream-3); line-height: 1.65; }
.card-line {
  position: absolute; bottom: 0; left: 1.8rem; right: 1.8rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.benefit-card:hover .card-line { opacity: 1; }

/* =============================================================
   13. Process
   ============================================================= */
.section-process { background: var(--bg-2); }

.process-steps { max-width: 680px; margin-inline: auto; }
.process-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 0 1.5rem; position: relative;
  padding-bottom: 2.5rem;
}
.process-step:not(.process-step--last)::before {
  content: ""; position: absolute;
  left: 31px; top: 2.5rem; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--line), transparent);
}
.step-num {
  width: 56px; height: 56px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold-mid); background: rgba(var(--gold-rgb), 0.04);
  transition: all 0.35s;
}
.process-step:hover .step-num {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--gold-light);
}
.step-content { padding-top: 0.9rem; }
.step-content h3 {
  font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem;
  font-family: var(--sans); font-weight: 600;
}
.step-content p { font-size: 0.875rem; color: var(--cream-3); line-height: 1.65; }
.step-arrow {
  grid-column: 1; grid-row: 2;
  color: var(--gold-dark); font-size: 1.2rem;
  text-align: center; padding-top: 0.5rem;
  display: none;
}

/* =============================================================
   14. Stats
   ============================================================= */
.section-stats {
  position: relative; overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6rem);
}
.stats-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--bg-2) 0%, rgba(7,6,10,0.95) 100%),
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(var(--gold-rgb), 0.05) 0%, transparent 70%);
  border-block: 1px solid var(--line);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem;
  text-align: center;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--cream-3); }

/* =============================================================
   15. Pricing
   ============================================================= */
.section-pricing { background: var(--bg); }

.pricing-grid {
  display: grid; gap: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.pricing-card {
  position: relative;
  padding: 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 1.6rem;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.5s var(--ease-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.pricing-card:hover {
  border-color: rgba(var(--gold-rgb), 0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Featured plan */
.pricing-card--featured {
  background: linear-gradient(145deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow:
    0 0 0 1px rgba(var(--gold-rgb), 0.2),
    0 24px 60px rgba(var(--gold-rgb), 0.08),
    inset 0 1px 0 rgba(var(--gold-rgb), 0.15);
}
.pricing-card--featured:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow:
    0 0 0 1px rgba(var(--gold-rgb), 0.3),
    0 30px 70px rgba(var(--gold-rgb), 0.12),
    inset 0 1px 0 rgba(var(--gold-rgb), 0.2);
}

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.28rem 0.9rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  color: var(--bg); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 20px; font-weight: 700; white-space: nowrap;
}

.pricing-name {
  font-size: 1.15rem; font-weight: 600; color: var(--cream);
  font-family: var(--sans); margin-bottom: 0.2rem;
}
.pricing-subtitle { font-size: 0.8rem; color: var(--cream-3); line-height: 1.5; }

.pricing-price { display: flex; flex-direction: column; gap: 0.2rem; }
.pricing-price strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-price span { font-size: 0.75rem; color: var(--cream-3); letter-spacing: 0.06em; }
.pricing-price--custom strong { font-size: 1.5rem; }

.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.85rem; color: var(--cream-2); line-height: 1.5;
}
.feat-check { color: var(--gold); font-size: 0.75rem; margin-top: 0.1rem; flex-shrink: 0; }

.pricing-ideal {
  font-size: 0.72rem; color: var(--cream-3); font-family: var(--mono);
  letter-spacing: 0.04em; line-height: 1.5;
}

.pricing-note { margin-top: 2.5rem; }
.pricing-note-inner {
  padding: 1.6rem 2rem;
  border: 1px dashed rgba(var(--gold-rgb), 0.22);
  border-radius: 10px;
  background: rgba(var(--gold-rgb), 0.025);
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.pricing-note-inner .mono { font-size: 1.4rem; color: var(--gold-mid); flex-shrink: 0; margin-top: -0.1rem; }
.pricing-note-inner p { font-size: 0.875rem; color: var(--cream-2); line-height: 1.7; }
.pricing-note-inner a { color: var(--gold-mid); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.pricing-note-inner a:hover { color: var(--gold-light); }

/* =============================================================
   16. Testimonials
   ============================================================= */
.section-testimonials { background: var(--bg-2); }
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: border-color 0.35s, transform 0.4s var(--ease-soft);
}
.testi-card:hover {
  border-color: rgba(var(--gold-rgb), 0.18);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--cream); line-height: 1.65; flex-grow: 1;
}
.testi-quote::before { content: "\201C"; }
.testi-quote::after  { content: "\201D"; }
.testi-name { display: block; font-weight: 600; color: var(--cream); margin-bottom: 0.25rem; font-family: var(--sans); }
.testi-role { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--gold-mid); }

/* =============================================================
   17. FAQ
   ============================================================= */
.section-faq { background: var(--bg); }
.faq-grid { display: grid; gap: 3rem 6rem; }
@media (min-width: 960px) { .faq-grid { grid-template-columns: 280px 1fr; align-items: start; } }
.faq-left .eyebrow { display: block; margin-bottom: 1.2rem; }
.faq-left h2 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--cream);
}
.faq-left h2 em {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0; list-style: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 500; color: var(--cream-2);
  transition: color 0.25s;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--cream); }
details[open] .faq-question { color: var(--cream); }

.faq-icon {
  font-size: 1.2rem; font-weight: 300; color: var(--gold-mid);
  flex-shrink: 0; transition: transform 0.35s var(--ease-soft), color 0.25s;
}
details[open] .faq-icon { transform: rotate(45deg); color: var(--gold-light); }

.faq-answer {
  padding-bottom: 1.4rem;
  overflow: hidden;
}
.faq-answer p { font-size: 0.875rem; color: var(--cream-3); line-height: 1.75; max-width: 58ch; }

/* =============================================================
   18. Contact CTA
   ============================================================= */
.section-cta { position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background:
    var(--bg-2),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(var(--gold-rgb), 0.06) 0%, transparent 70%);
  border-block: 1px solid var(--line);
}
.cta-grid { position: relative; z-index: 1; display: grid; gap: 4rem; }
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1fr 1.3fr; align-items: center; } }

.cta-left .eyebrow { display: block; margin-bottom: 1.2rem; }
.cta-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--cream);
  margin-bottom: 1rem;
}
.cta-title em {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub { font-size: 0.9rem; color: var(--cream-3); line-height: 1.7; max-width: 36ch; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; padding: 1rem 1rem 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  border-radius: 8px; color: var(--cream);
  font: inherit; font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(var(--gold-rgb), 0.45);
  background: rgba(var(--gold-rgb), 0.03);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { padding-top: 1rem; cursor: pointer; }
.field select option { background: var(--bg-card); color: var(--cream); }

.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--cream-3); font-size: 0.85rem;
  transition: all 0.25s var(--ease-out); background: transparent;
}
.field textarea ~ label { top: 1rem; transform: none; }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0.35rem; transform: none;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-mid);
}

/* Submit button states */
[data-submit-btn] { position: relative; overflow: hidden; }
.btn-label, .btn-spinner, .btn-check {
  transition: opacity 0.3s, transform 0.3s;
}
.btn-spinner, .btn-check {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; pointer-events: none;
}
.btn-spinner::after {
  content: ""; width: 20px; height: 20px;
  border: 2px solid rgba(7,6,10,0.3); border-top-color: var(--bg);
  border-radius: 50%; animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-check path {
  stroke: var(--bg); stroke-width: 2; fill: none;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s var(--ease-soft);
}
.contact-form.is-sending .btn-label { opacity: 0; }
.contact-form.is-sending .btn-spinner { opacity: 1; }
.contact-form.is-sent { opacity: 0; transform: translateY(-8px); pointer-events: none; transition: all 0.5s; }

.contact-success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s var(--ease-out) 0.3s;
}
.contact-success[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.success-icon { color: var(--gold); }
.contact-success h3 { font-size: 1.5rem; color: var(--cream); }
.contact-success p { font-size: 0.9rem; color: var(--cream-3); max-width: 30ch; line-height: 1.6; }
.cta-right { position: relative; }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { background: var(--bg); padding-block: 0 2.5rem; }
.footer-line { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin-bottom: 3.5rem; }
.footer-grid { display: grid; gap: 3rem 4rem; margin-bottom: 3rem; }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; width: fit-content; }
.footer-logo-img { height: 60px; width: auto; display: block; object-fit: contain; max-width: 220px; }
.footer-brand-name { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-3); transition: color 0.3s; }
.footer-logo:hover .footer-brand-name { color: var(--gold-mid); }
.footer-tagline { font-size: 0.82rem; color: var(--cream-3); line-height: 1.7; max-width: 26ch; margin-top: 0.5rem; }

.footer-nav { display: flex; gap: 3rem; }
.footer-nav-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; font-family: var(--mono); }
.footer-nav-col a { font-size: 0.82rem; color: var(--cream-3); transition: color 0.25s; }
.footer-nav-col a:hover { color: var(--gold-mid); }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-email { font-size: 0.875rem; color: var(--cream-2); transition: color 0.25s; text-decoration: underline; text-underline-offset: 3px; }
.footer-email:hover { color: var(--gold-light); }
.footer-btn { padding: 0.6rem 1.2rem; font-size: 0.78rem; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.footer-bottom .mono { font-size: 0.65rem; letter-spacing: 0.14em; color: var(--cream-3); }

/* =============================================================
   20. Reveal animations
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
/* Stagger delays for sibling reveals */
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* Defensive rule (gotcha A.4.5) — survives stale JS cache */
[data-reveal][data-split],
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   21. Responsive — mobile first adjustments
   ============================================================= */
@media (max-width: 539px) {
  .hero-stats { gap: 1.2rem; }
  .hero-stat-sep { display: none; }
  .hero-stats { flex-direction: column; }
  .pricing-note-inner { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 540px) {
  .hero-stats { flex-direction: row; }
}

/* =============================================================
   22. Reduced motion — ONLY intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
  .hero-scroll-line { animation: none; }
  .hero-dot { animation: none; }
  /* DO NOT add: reveal fades, tilt, hover effects, counters */
}

/* =============================================================
   23. Magnetic wrapper
   ============================================================= */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform 0.8s var(--ease-soft);
}

/* =============================================================
   24. View Transitions API (Chrome 111+, Safari 18+)
   ============================================================= */
@view-transition { navigation: auto; }

/* =============================================================
   25. Select floating label — always floated (select always has a value)
   ============================================================= */
.field select ~ label {
  top: 0.35rem; transform: none;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-mid);
}

/* =============================================================
   26. CTA contact info block
   ============================================================= */
.cta-contact-info {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem;
}
.cta-contact-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--cream-2);
  transition: color 0.3s;
}
.cta-contact-link:hover { color: var(--gold-light); }
.cta-contact-icon { font-size: 0.8rem; opacity: 0.6; }

/* =============================================================
   27. Footer phone link
   ============================================================= */
.footer-phone {
  display: block; font-size: 0.82rem; color: var(--cream-3);
  margin-top: 0.25rem; transition: color 0.3s;
}
.footer-phone:hover { color: var(--gold-mid); }

/* =============================================================
   28. Active nav state per sub-page
   ============================================================= */
body[data-page="que-es"] a[href="que-es.html"].nav-link,
body[data-page="beneficios"] a[href="beneficios.html"].nav-link,
body[data-page="proceso"] a[href="proceso.html"].nav-link,
body[data-page="planes"] a[href="planes.html"].nav-link {
  color: var(--cream);
}
body[data-page="que-es"] a[href="que-es.html"].nav-link::after,
body[data-page="beneficios"] a[href="beneficios.html"].nav-link::after,
body[data-page="proceso"] a[href="proceso.html"].nav-link::after,
body[data-page="planes"] a[href="planes.html"].nav-link::after {
  transform: scaleX(1); transform-origin: left;
}

/* =============================================================
   29. Page hero (sub-pages)
   ============================================================= */
.page-hero {
  position: relative;
  min-height: 58vh; min-height: 58svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-glow {
  position: absolute; inset: -15%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 25% 65%, rgba(212,175,55,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 78% 28%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 55% 85%, rgba(139,105,20,0.06) 0%, transparent 60%);
  filter: blur(65px);
  animation: glowDrift 20s ease-in-out infinite;
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 100%, black, transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-3);
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.page-hero-back:hover { color: var(--gold-mid); }
.page-hero-kicker {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-mid); margin-bottom: 1.2rem;
}
.page-hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500; line-height: 1.05; color: var(--cream);
  margin-bottom: 1.5rem;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.75;
  color: var(--cream-2); max-width: 58ch;
}

/* =============================================================
   30. Sub-page section helpers
   ============================================================= */
.section-page { padding: 5rem 0; }
.section-page + .section-page { border-top: 1px solid var(--line); }

.page-intro {
  max-width: 70ch; margin: 0 auto;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.85;
  color: var(--cream-2); text-align: center;
}
.page-intro strong { color: var(--cream); }

.pillar-expanded {
  display: grid; gap: 2px; margin-top: 3.5rem;
}
.pillar-expanded-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 0 2rem; align-items: start;
  padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--line-soft);
  transition: border-color 0.3s, background 0.3s;
}
.pillar-expanded-item:first-child { border-radius: 12px 12px 2px 2px; }
.pillar-expanded-item:last-child  { border-radius: 2px 2px 12px 12px; }
.pillar-expanded-item:hover { border-color: var(--line); background: rgba(255,255,255,0.035); }
.pillar-num {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold-mid); padding-top: 0.25rem;
}
.pillar-body h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.pillar-body p { color: var(--cream-2); line-height: 1.75; }
.pillar-body ul {
  list-style: none; margin-top: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.pillar-body ul li {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  background: rgba(var(--gold-rgb), 0.07);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 4px; color: var(--gold-mid);
}

.cuando-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.cuando-item {
  padding: 1.75rem; border: 1px solid var(--line-soft);
  border-radius: 10px; background: var(--bg-card);
  transition: border-color 0.3s;
}
.cuando-item:hover { border-color: rgba(var(--gold-rgb), 0.25); }
.cuando-item-num {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gold-mid); margin-bottom: 0.75rem; display: block;
}
.cuando-item h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.5rem;
}
.cuando-item p { font-size: 0.88rem; color: var(--cream-3); line-height: 1.7; }

/* Proceso steps (expanded) */
.proceso-step-expanded {
  display: grid; grid-template-columns: 56px 1fr; gap: 0 2.5rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.proceso-step-expanded:last-child { border-bottom: none; }
.step-num-big {
  font-family: var(--mono); font-size: 2.5rem; font-weight: 400;
  color: var(--line); line-height: 1; padding-top: 0.2rem;
  transition: color 0.3s;
}
.proceso-step-expanded:hover .step-num-big { color: var(--gold-dark); }
.step-content h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.step-content p { color: var(--cream-2); line-height: 1.8; margin-bottom: 1rem; }
.step-deliverable {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em;
  color: var(--gold-mid);
  padding: 0.3rem 0.7rem; border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 4px; background: rgba(var(--gold-rgb), 0.06);
}

/* Planes page */
.planes-intro {
  max-width: 65ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.85;
  color: var(--cream-2);
}
.planes-intro strong { color: var(--cream); }
.planes-custom-note {
  padding: 2rem 2.5rem; margin-top: 3rem;
  background: rgba(var(--gold-rgb), 0.04);
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: 12px;
}
.planes-custom-note p { color: var(--cream-2); line-height: 1.8; }
.planes-custom-note strong { color: var(--cream); }

/* Contacto page two-column */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 860px) { .contacto-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contacto-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contacto-info-item {}
.contacto-info-label {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-mid); margin-bottom: 0.5rem;
}
.contacto-info-value {
  font-family: var(--serif); font-size: 1.3rem; color: var(--cream-2);
  transition: color 0.3s;
}
.contacto-info-value:hover { color: var(--gold-light); }
a.contacto-info-value { display: block; }

/* Beneficios expanded */
.benefit-card-expanded {
  padding: 2.5rem; border: 1px solid var(--line-soft); border-radius: 12px;
  background: var(--bg-card); transition: border-color 0.3s, transform 0.4s var(--ease-soft);
}
.benefit-card-expanded:hover {
  border-color: rgba(var(--gold-rgb), 0.25);
  transform: translateY(-3px);
}
.benefit-card-expanded .benefit-icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
}
.benefit-card-expanded h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.benefit-card-expanded p { color: var(--cream-2); line-height: 1.8; }
.benefit-card-expanded .benefit-detail {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft);
  font-size: 0.85rem; color: var(--cream-3); line-height: 1.75;
}
.benefits-expanded-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

/* Page CTA strip */
.page-cta-strip {
  padding: 5rem 0; text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 65%);
}
.page-cta-strip h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500; color: var(--cream); margin-bottom: 1rem;
}
.page-cta-strip h2 em { font-style: italic; color: var(--gold-light); }
.page-cta-strip p {
  color: var(--cream-2); max-width: 50ch; margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.page-cta-strip .cta-btns {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 539px) {
  .pillar-expanded-item { grid-template-columns: 1fr; }
  .proceso-step-expanded { grid-template-columns: 1fr; gap: 1rem; }
  .contacto-grid { grid-template-columns: 1fr; }
}
