/* ============================================================
   Rogle Media — styles.css  v20260608
   Archetype: Glassmorphism Modern (adapted cream + navy)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --cream-2:     #EDE5D6;
  --cream-3:     #E0D5C5;
  --navy:        #1C2B4A;
  --navy-2:      #2D3F62;
  --navy-mute:   #6B7A96;
  --navy-ghost:  rgba(28,43,74,0.08);
  --mint:        #7BC8A4;
  --mint-soft:   rgba(123,200,164,0.18);
  --gold:        #D4A843;
  --gold-soft:   rgba(212,168,67,0.18);
  --coral:       #E8897A;
  --coral-soft:  rgba(232,137,122,0.18);
  --lav:         #B8A8D4;
  --lav-soft:    rgba(184,168,212,0.18);
  --glass:       rgba(255,255,255,0.55);
  --glass-2:     rgba(255,255,255,0.35);
  --glass-border:rgba(255,255,255,0.65);
  --shadow:      0 4px 24px rgba(28,43,74,0.09);
  --shadow-md:   0 12px 40px rgba(28,43,74,0.13);
  --shadow-lg:   0 24px 64px rgba(28,43,74,0.16);
  --radius:      20px;
  --radius-sm:   12px;
  --radius-xs:   8px;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --nav-h:       72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--navy);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute; top: -4px; left: -4px;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: transform .08s linear;
}
.cursor-ring {
  position: absolute; top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(28,43,74,0.35);
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: transform .18s var(--ease-out), width .2s, height .2s, border-color .2s;
}
.cursor.is-hovering .cursor-ring {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
  border-color: var(--coral);
}
@media (hover: none) { .cursor { display: none; } }

/* ── Navbar ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(28,43,74,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 72px; height: 72px;
  mix-blend-mode: multiply;
  object-fit: contain;
}
.footer-logo-img {
  width: 48px; height: 48px;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text .wordmark-rogle {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 1.1rem; color: var(--navy); letter-spacing: -.5px;
}
.nav-logo-text .wordmark-media {
  font-family: var(--font-sans); font-weight: 300;
  font-size: .65rem; color: var(--coral); letter-spacing: 3px; text-transform: lowercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin-left: auto; margin-right: 2.5rem;
}
.nav-links a {
  font-size: .9rem; font-weight: 400; color: var(--navy-mute);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--coral);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: .6rem 1.4rem;
  background: var(--navy); color: var(--cream) !important;
  border-radius: 100px; font-size: .88rem; font-weight: 500;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--coral); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,137,122,0.35);
}
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-cta-mobile-wrap { display: none; }
  .nav-logo-img {
    mix-blend-mode: normal;
    width: 52px; height: 52px;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ── Section spacing helpers ────────────────────────────── */
.section { padding: clamp(3rem,6vw,5.5rem) clamp(1.5rem,5vw,4rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--navy);
  max-width: 22ch; text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-sub {
  margin-top: 1rem; font-size: 1.05rem; color: var(--navy-mute);
  max-width: 54ch; line-height: 1.7;
}

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Defensive: elements with both .reveal and [data-split] must not stay hidden */
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 100px;
  font-size: .95rem; font-weight: 500;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy); color: var(--cream);
  box-shadow: 0 4px 20px rgba(28,43,74,0.22);
}
.btn-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 10px 30px rgba(28,43,74,0.28);
}
.btn-coral {
  background: var(--coral); color: #fff;
  box-shadow: 0 4px 20px rgba(232,137,122,0.35);
}
.btn-coral:hover {
  box-shadow: 0 10px 35px rgba(232,137,122,0.45);
}
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(28,43,74,0.2);
}
.btn-ghost-dark {
  background: transparent; color: rgba(245,240,232,0.8);
  border: 1.5px solid rgba(245,240,232,0.25);
  font-size: .9rem; padding: .75rem 1.5rem;
}
.btn-ghost-dark:hover { border-color: rgba(245,240,232,0.6); color: #fff; }
.btn-ghost:hover {
  border-color: var(--navy); background: var(--navy-ghost);
}
.btn-arrow { font-size: 1.1rem; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: clip;
}
.hero-mesh {
  position: absolute; inset: -30% -20%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 25%, rgba(123,200,164,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 85% 15%, rgba(212,168,67,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 75% 85%, rgba(232,137,122,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 75%, rgba(184,168,212,0.30) 0%, transparent 60%);
  filter: blur(55px) saturate(140%);
  animation: meshDrift 28s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { transform: scale(1) rotate(0deg); }
  33%      { transform: scale(1.08) rotate(6deg); }
  66%      { transform: scale(0.96) rotate(-4deg); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: clip; }
.hero-particle {
  position: absolute; border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  50%  { transform: translateY(-40px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: .6; }
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,4rem);
  width: 100%;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy-mute); margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.4);opacity:1} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); max-width: 16ch;
  text-wrap: balance; margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--coral); }
.hero-title-accent { font-style: italic; color: var(--lav); }
.hero-sub {
  font-size: clamp(1rem,1.8vw,1.15rem); color: var(--navy-mute);
  line-height: 1.75; max-width: 46ch; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.2rem; font-size: .8rem; color: var(--navy-mute);
  display: flex; align-items: center; gap: .4rem;
}
.hero-note svg { color: var(--mint); }

/* Hero phones */
.hero-phones {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
  perspective: 1000px;
}
.phone {
  position: absolute;
  width: 180px; height: 360px;
  background: var(--cream);
  border-radius: 28px;
  border: 2px solid rgba(28,43,74,0.1);
  box-shadow: var(--shadow-lg);
  overflow: clip;
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 60px; height: 8px; background: rgba(28,43,74,0.12);
  border-radius: 0 0 6px 6px; margin: 12px auto 0;
  flex-shrink: 0;
}
.phone-screen { flex: 1; overflow: clip; }
.phone--back {
  transform: rotateY(12deg) rotateX(-4deg) translateX(-60px) translateZ(-40px) translateY(30px);
  animation: phoneFloat1 6s ease-in-out infinite;
  z-index: 1;
}
.phone--mid {
  transform: rotateY(-3deg) rotateX(2deg) translateX(10px) translateZ(30px) translateY(-20px);
  animation: phoneFloat2 7s ease-in-out infinite;
  z-index: 3;
}
.phone--front {
  transform: rotateY(-16deg) rotateX(6deg) translateX(80px) translateZ(0px) translateY(40px);
  animation: phoneFloat3 5.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes phoneFloat1 { 0%,100%{transform:rotateY(12deg) rotateX(-4deg) translateX(-60px) translateZ(-40px) translateY(30px)} 50%{transform:rotateY(14deg) rotateX(-3deg) translateX(-60px) translateZ(-40px) translateY(10px)} }
@keyframes phoneFloat2 { 0%,100%{transform:rotateY(-3deg) rotateX(2deg) translateX(10px) translateZ(30px) translateY(-20px)} 50%{transform:rotateY(-4deg) rotateX(3deg) translateX(10px) translateZ(30px) translateY(-38px)} }
@keyframes phoneFloat3 { 0%,100%{transform:rotateY(-16deg) rotateX(6deg) translateX(80px) translateZ(0px) translateY(40px)} 50%{transform:rotateY(-14deg) rotateX(5deg) translateX(80px) translateZ(0px) translateY(22px)} }

/* Phone content */
.screen-reel {
  width: 100%; height: 100%; position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #0D1E3A 100%);
}
.screen-reel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,137,122,0.35) 0%, transparent 65%);
}
.screen-reel-content {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.screen-reel-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px; padding: .25rem .6rem;
  color: #fff; font-size: .65rem; font-weight: 500;
  width: fit-content; margin-bottom: .5rem;
}
.screen-reel-views { color: #fff; font-size: 1.3rem; font-weight: 700; line-height: 1; }
.screen-reel-label { color: rgba(255,255,255,0.7); font-size: .65rem; margin-top: .15rem; }
.screen-reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-80%);
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; padding-left: 3px;
}
.screen-stats {
  width: 100%; height: 100%; padding: 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  background: var(--cream);
}
.screen-stats-title { font-size: .6rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy-mute); font-weight: 500; }
.screen-stats-big { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.screen-stats-sub { font-size: .65rem; color: var(--mint); font-weight: 500; }
.screen-stats-bar { height: 4px; background: var(--cream-3); border-radius: 2px; margin-top: .3rem; }
.screen-stats-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--mint), var(--gold)); }
.screen-stats-row { display: flex; justify-content: space-between; align-items: flex-end; }
.screen-stats-label { font-size: .6rem; color: var(--navy-mute); }
.screen-stats-val { font-size: .65rem; font-weight: 600; color: var(--navy); }
.screen-calendar {
  width: 100%; height: 100%; padding: 1rem;
  background: var(--cream); display: flex; flex-direction: column; gap: .5rem;
}
.screen-cal-title { font-size: .6rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy-mute); font-weight: 500; text-align: center; }
.screen-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; border-radius: 4px; background: var(--cream-2);
  font-size: .5rem; display: flex; align-items: center; justify-content: center;
  color: var(--navy-mute); font-weight: 500;
}
.cal-day.has-post { background: var(--coral); color: #fff; }
.cal-day.has-post-mint { background: var(--mint); color: #fff; }
.cal-day.has-post-gold { background: var(--gold); color: #fff; }
.cal-day.today { outline: 2px solid var(--navy); outline-offset: 1px; }
.screen-cal-legend { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .3rem; }
.cal-legend-item { display: flex; align-items: center; gap: .2rem; font-size: .5rem; color: var(--navy-mute); }
.cal-legend-dot { width: 6px; height: 6px; border-radius: 50%; }

/* WhatsApp phone screen */
.screen-wa {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #ECE5DD;
}
.screen-wa-header {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .7rem;
  background: #075E54; flex-shrink: 0;
}
.screen-wa-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: .45rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.screen-wa-info { flex: 1; min-width: 0; }
.screen-wa-name { font-size: .6rem; font-weight: 600; color: #fff; }
.screen-wa-status { font-size: .52rem; color: rgba(255,255,255,0.75); }
.screen-wa-body { flex: 1; padding: .75rem .6rem; display: flex; flex-direction: column; justify-content: flex-end; gap: .3rem; }
.screen-wa-bubble {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: .55rem .65rem;
  font-size: .58rem; color: #303030; line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  max-width: 95%;
}
.screen-wa-time { font-size: .5rem; color: #888; text-align: right; }

/* Lock screen phone */
.screen-lockscreen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  display: flex; flex-direction: column; align-items: center;
  padding: 1.2rem .6rem .8rem;
  position: relative;
}
.screen-lock-time {
  font-size: 2.2rem; font-weight: 200; color: #fff;
  letter-spacing: -1px; line-height: 1; margin-bottom: .1rem;
}
.screen-lock-date { font-size: .55rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.screen-lock-notifs { display: flex; flex-direction: column; gap: .45rem; width: 100%; }
.screen-lock-notif {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: .45rem .55rem;
}
.screen-lock-notif-icon {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.screen-lock-notif-text { flex: 1; min-width: 0; }
.screen-lock-notif-app { font-size: .5rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: .5px; }
.screen-lock-notif-msg { font-size: .54rem; color: #fff; line-height: 1.3; margin-top: .05rem; }

/* Hero logo watermark */
.hero-logo-watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(55vw, 55vh);
  height: min(55vw, 55vh);
  pointer-events: none; z-index: 1;
}
.hero-logo-watermark img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.13;
  filter: brightness(0) saturate(100%) invert(18%) sepia(45%) saturate(620%) hue-rotate(195deg);
}

/* Hero stats strip */
.hero-stats {
  position: relative; z-index: 3;
  display: flex; gap: 3rem;
  padding: 1.5rem clamp(1.5rem,5vw,4rem) 2rem;
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(28,43,74,0.08);
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-number {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: var(--navy-mute); margin-top: .2rem; }
.hero-stat-nowrap { white-space: nowrap; font-size: clamp(1rem, 2vw, 1.8rem); }

/* ── Por Qué Nosotros ───────────────────────────────────── */
.why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-top: 3.5rem;
}
.why-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(28,43,74,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem;
}
.icon-bg-mint  { background: var(--mint-soft); }
.icon-bg-gold  { background: var(--gold-soft); }
.icon-bg-coral { background: var(--coral-soft); }
.icon-bg-lav   { background: var(--lav-soft); }
.why-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.why-card-text { font-size: .9rem; color: var(--navy-mute); line-height: 1.65; }

/* ── Servicios ───────────────────────────────────────────── */
.services { background: var(--navy); }
.services .section-eyebrow { color: var(--coral); }
.services .section-title { color: var(--cream); }
.services .section-title em { color: var(--coral); }
.services .services-note { color: rgba(255,255,255,0.65); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.services-note {
  margin-top: 2.5rem;
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--navy-mute);
  line-height: 1.75;
}
.service-card { flex: 1 0 220px; min-width: 220px; overflow: visible; }
.service-card {
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(28,43,74,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative; overflow: clip;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-color, var(--coral)), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(28,43,74,0.14); z-index: 2; position: relative; }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(1) { --accent-color: var(--mint); }
.service-card:nth-child(2) { --accent-color: var(--gold); }
.service-card:nth-child(3) { --accent-color: var(--coral); }
.service-card:nth-child(4) { --accent-color: var(--lav); }
.service-card:nth-child(5) { --accent-color: var(--mint); }
.service-card-num {
  font-size: .7rem; font-weight: 500; letter-spacing: 2px;
  color: var(--navy-mute); text-transform: uppercase; margin-bottom: .75rem;
}
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--navy-ghost); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: background .3s;
}
.service-card:hover .service-card-icon { background: var(--coral-soft); }
.service-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .7rem; }
.service-card-text { font-size: .875rem; color: var(--navy-mute); line-height: 1.65; }

/* ── Métricas ─────────────────────────────────────────────── */
.metrics { background: var(--navy); }
.metrics .section-eyebrow { color: var(--coral); }
.metrics .section-title { color: var(--cream); max-width: 28ch; }
.metrics .section-title em { color: var(--coral); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.metric-card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background .3s, transform .3s var(--ease-out);
}
.metric-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.metric-number {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem);
  font-weight: 800; color: var(--cream); line-height: 1;
  margin-bottom: .5rem;
}
.metric-suffix { color: var(--coral); }
.metric-label { font-size: .875rem; color: rgba(245,240,232,0.6); line-height: 1.5; margin-bottom: 1rem; }
.metric-bar-wrap { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: clip; }
.metric-bar { height: 100%; width: 0; border-radius: 3px; transition: width 1.4s var(--ease-out); background-size: 200% 100%; }
.metric-card.is-visible .metric-bar { width: var(--bar-w); animation: barShift 3s linear infinite; }
@keyframes barShift {
  0%   { background-position: 0%   0%; }
  100% { background-position: 200% 0%; }
}
.metric-bar-legend { display: flex; justify-content: space-between; font-size: .72rem; color: rgba(245,240,232,0.45); margin-top: .4rem; }
.metrics-chart {
  margin-top: 3rem; padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  position: relative; overflow: clip;
}
.metrics-chart-label {
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,232,0.45); margin-bottom: 1.25rem;
}
.metrics-chart svg { width: 100%; height: 120px; display: block; }
#growth-path { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.8s var(--ease-out); }
#growth-path.animated { stroke-dashoffset: 0; }
.chart-end-dot { opacity: 0; transition: opacity .3s .8s; }
.chart-end-dot.animated { opacity: 1; }

/* ── Clientes ─────────────────────────────────────────────── */
.clients { background: var(--cream); }
.clients-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem;
}
.client-card {
  padding: 2.5rem;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-out);
}
.client-card:hover { transform: translateY(-5px); }
@supports not (backdrop-filter: blur(1px)) {
  .client-card { background: rgba(255,255,255,0.85); }
}
.client-tag {
  display: inline-block; padding: .25rem .75rem;
  border-radius: 100px; font-size: .72rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.tag-fitness { background: var(--mint-soft); color: var(--mint); }
.tag-creator { background: var(--lav-soft); color: #8B7AC8; }
.client-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.client-desc { font-size: .9rem; color: var(--navy-mute); line-height: 1.65; margin-bottom: 1.75rem; }
.client-result {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(28,43,74,0.06);
  border-radius: var(--radius-sm);
}
.client-result-icon {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.client-result-text { font-size: .85rem; line-height: 1.5; }
.client-result-text strong { color: var(--navy); font-weight: 600; display: block; }
.client-result-text span { color: var(--navy-mute); font-size: .78rem; }
.client-placeholder {
  margin-top: 1.5rem; padding: 1rem;
  border: 1.5px dashed rgba(28,43,74,0.2);
  border-radius: var(--radius-sm);
  text-align: center; font-size: .75rem; color: var(--navy-mute); line-height: 1.5;
}
.client-placeholder strong { color: var(--coral); }

/* ── Proceso ──────────────────────────────────────────────── */
.process { background: var(--cream-2); }
.process-timeline { position: relative; margin-top: 3rem; }
.process-line {
  position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: rgba(28,43,74,0.1);
}
.process-line-fill {
  position: absolute; top: 28px; left: 28px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint), var(--lav), var(--coral));
  background-size: 200% 100%;
  transition: width 1.2s var(--ease-out);
}
.process-line-fill.animated {
  width: calc(100% - 56px);
  animation: lineColorShift 3s linear infinite;
}
@keyframes lineColorShift {
  0%   { background-position: 0%    0%; }
  100% { background-position: -100% 0%; }
}
.process-steps { display: flex; flex-direction: row; gap: 1.5rem; align-items: stretch; }
.process-step { display: flex; flex-direction: column; align-items: stretch; text-align: center; flex: 1; position: relative; }
.process-step-content { flex: 1; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-2); border: 2px solid rgba(28,43,74,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy);
  position: relative; z-index: 1; margin-bottom: 1.25rem;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.process-step.is-active .process-step-num {
  background: var(--coral); border-color: var(--coral); color: #fff;
  box-shadow: 0 4px 20px rgba(232,137,122,0.35);
}
.process-step-content {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(28,43,74,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  width: 100%;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.process-step:hover .process-step-content { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* Colored dot indicator per step */
.process-step:nth-child(1) .process-step-content { border-top: 3px solid var(--coral); }
.process-step:nth-child(2) .process-step-content { border-top: 3px solid var(--gold); }
.process-step:nth-child(3) .process-step-content { border-top: 3px solid var(--mint); }
.process-step:nth-child(4) .process-step-content { border-top: 3px solid var(--lav); }
.process-step-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-ghost);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--navy);
}
.process-step:nth-child(1) .process-step-icon { background: var(--coral-soft); color: var(--coral); }
.process-step:nth-child(2) .process-step-icon { background: rgba(212,168,67,.15); color: var(--gold); }
.process-step:nth-child(3) .process-step-icon { background: rgba(123,200,164,.15); color: var(--mint); }
.process-step:nth-child(4) .process-step-icon { background: var(--lav-soft); color: var(--lav); }
.process-step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.process-step-text { font-size: .875rem; color: var(--navy-mute); line-height: 1.6; }
@media (max-width: 768px) {
  .process-steps { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 1.5rem; }
  .process-step-num { margin-bottom: 0; }
  .process-line { top: 28px; bottom: 28px; left: 28px; right: auto; width: 2px; height: auto; }
  .process-line-fill { top: 28px; left: 28px; width: 2px !important; height: 0; background: linear-gradient(to bottom, var(--coral), var(--mint)); }
  .process-line-fill.animated { height: calc(100% - 56px) !important; }
}

/* ── Equipo ───────────────────────────────────────────────── */
.team { background: var(--cream); }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3.5rem;
}
.team-card {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2.5rem;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-out);
}
.team-card:hover { transform: translateY(-4px); }
@supports not (backdrop-filter: blur(1px)) { .team-card { background: rgba(255,255,255,0.85); } }
.team-linkedin { display: block; text-decoration: none; flex-shrink: 0; cursor: pointer; }
.team-linkedin:hover .team-photo { opacity: .82; }
.team-photo {
  width: 96px; height: 120px; border-radius: var(--radius-sm);
  overflow: clip; flex-shrink: 0;
  background: var(--cream-3);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.team-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: .75rem;
  font-size: .62rem; color: var(--navy-mute); line-height: 1.4;
}
.team-photo-placeholder-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.team-info { flex: 1; }
.team-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.team-role {
  display: inline-block; font-size: .75rem; font-weight: 500;
  color: var(--coral); letter-spacing: 1px; text-transform: uppercase; margin: .4rem 0 .75rem;
}
.team-bio { font-size: .875rem; color: var(--navy-mute); line-height: 1.65; }

/* ── Testimonios ─────────────────────────────────────────── */
.testimonials { background: var(--cream-2); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.testimonial-card {
  padding: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
@supports not (backdrop-filter: blur(1px)) { .testimonial-card { background: rgba(255,255,255,0.85); } }
.testimonial-stars {
  font-size: 1.2rem; letter-spacing: 2px;
  color: #F5C518; margin-bottom: .75rem;
  line-height: 1;
}
.testimonial-text { font-size: .925rem; color: var(--navy); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-3);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--navy-mute); text-align: center; line-height: 1.2;
  overflow: clip;
}
.testimonial-author-name { font-weight: 600; font-size: .875rem; color: var(--navy); }
.testimonial-author-link { font-weight: 600; font-size: .875rem; color: var(--navy); text-decoration: none; display: block; }
.testimonial-author-link:hover { color: var(--coral); }
.testimonial-author-role { font-size: .75rem; color: var(--navy-mute); }
.testimonials-note {
  margin-top: 2rem; text-align: center;
  font-size: .82rem; color: var(--navy-mute);
  padding: 1rem 1.5rem;
  background: rgba(232,137,122,0.08);
  border: 1px solid rgba(232,137,122,0.2);
  border-radius: var(--radius-sm);
}
.testimonials-note strong { color: var(--coral); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-list { margin-top: 3rem; max-width: 780px; }
.faq-item {
  border-bottom: 1px solid rgba(28,43,74,0.1);
}
.faq-question {
  width: 100%; text-align: left; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1rem; font-weight: 500; color: var(--navy);
  transition: color .2s;
}
.faq-question:hover { color: var(--coral); }
.faq-question.is-open { color: var(--coral); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-ghost); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; color: var(--navy-mute);
  transition: transform .3s var(--ease-out), background .2s;
}
.faq-question.is-open .faq-icon {
  transform: rotate(45deg); background: var(--coral-soft); color: var(--coral);
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease-out); }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: .9rem; color: var(--navy-mute); line-height: 1.75; max-width: 65ch; }

/* ── CTA Final ────────────────────────────────────────────── */
.cta-final {
  background: var(--navy);
  position: relative; overflow: clip;
}
.cta-final-mesh {
  position: absolute; inset: -50% -30%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232,137,122,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(184,168,212,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 60%, rgba(123,200,164,0.15) 0%, transparent 60%);
  filter: blur(60px); animation: meshDrift 32s ease-in-out infinite reverse;
}
.cta-final-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; text-align: center;
}
.cta-final-title {
  font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.4rem);
  font-weight: 800; color: var(--cream); line-height: 1.15; margin-bottom: 1.25rem;
}
.cta-final-title em { font-style: italic; color: var(--coral); }
.cta-final-sub { font-size: 1.05rem; color: rgba(245,240,232,0.7); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-final-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-cta-final {
  background: var(--coral); color: #fff;
  box-shadow: 0 8px 30px rgba(232,137,122,0.4);
  font-size: 1rem; padding: 1rem 2.25rem;
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,137,122,0.5);
}
.cta-final-note { margin-top: 1.5rem; font-size: .8rem; color: rgba(245,240,232,0.45); }
.cta-legal-link { color: rgba(245,240,232,0.65); text-decoration: underline; text-underline-offset: 3px; }
.cta-legal-link:hover { color: var(--coral); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #141E32; border-top: 1px solid rgba(245,240,232,0.06);
  padding: 3.5rem clamp(1.5rem,5vw,4rem);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo-text .wordmark-rogle { color: var(--cream); font-size: 1rem; }
.footer-logo-text .wordmark-media { color: var(--coral); }
.footer-info { text-align: center; }
.footer-email {
  font-size: .9rem; color: rgba(245,240,232,0.6);
  transition: color .2s;
}
.footer-email:hover { color: var(--coral); }
.footer-copy { font-size: .75rem; color: rgba(245,240,232,0.3); margin-top: .4rem; }
.footer-legal { font-size: .68rem; color: rgba(245,240,232,0.2); margin-top: .3rem; line-height: 1.5; }
.footer-legal a { color: rgba(245,240,232,0.3); text-decoration: underline; }
.footer-legal a:hover { color: rgba(245,240,232,0.6); }
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.6); font-size: .8rem; transition: background .2s, color .2s, transform .2s;
}
.footer-social:hover { background: var(--coral); color: #fff; border-color: var(--coral); transform: translateY(-2px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid .why-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid--3 { grid-template-columns: repeat(3,1fr); }
  .hero-phones { display: none; }
  .hero-inner { grid-template-columns: 1fr; max-width: 680px; }
  .hero-title { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--3 { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-step-content { margin-top: 0; border-top: none; border-left: 3px solid var(--coral); min-height: 150px; }
  .process-step:nth-child(1) .process-step-content { border-left-color: var(--coral); }
  .process-step:nth-child(2) .process-step-content { border-left-color: var(--gold); }
  .process-step:nth-child(3) .process-step-content { border-left-color: var(--mint); }
  .process-step:nth-child(4) .process-step-content { border-left-color: var(--lav); }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .hero-stat-nowrap { white-space: normal; font-size: clamp(.95rem, 3.5vw, 1.3rem); }
  .hero-stat-item { flex: 1 1 40%; }
  .cta-final-actions { flex-direction: column; align-items: center; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; height: 180px; }
}
