/* Google Fonts cargado como <link> en el <head> de cada página — no usar @import aquí */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --violet:        #5B35D5;
  --violet-dark:   #4424b0;
  --violet-mid:    #7448e8;
  --violet-light:  #ede8fc;
  --violet-border: #e4ddf8;
  --violet-glow:   rgba(91, 53, 213, 0.18);
  --orange:        #FF6B2B;
  --orange-dark:   #e85c1e;
  --orange-light:  #fff2ec;

  /* Neutrals */
  --black:    #08060f;
  --text:     #0c0a14;
  --muted:    #52506a;
  --subtle:   #8a87a0;
  --faint:    #c8c5dc;
  --white:    #ffffff;
  --bg:       #fafafa;
  --bg-tint:  #f4f1fd;
  --bg-card:  #f8f6fd;
  --surface:  #0f0d18;
  --surface-2:#171529;
  --border-dark: rgba(255,255,255,.07);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(91,53,213,.08);
  --shadow-md: 0 4px 20px rgba(91,53,213,.10), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(91,53,213,.14), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(91,53,213,.18), 0 8px 24px rgba(0,0,0,.08);
  --shadow-dark: 0 20px 60px rgba(0,0,0,.5);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 58px;
  background: rgba(255,255,255,0.88);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid rgba(228,221,248,0.6);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 5px;
  color: var(--violet);
  text-decoration: none;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .7; }

.nav-links { display: flex; align-items: center; gap: 1px; list-style: none; }
.nav-links a {
  display: block;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  letter-spacing: .1px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--violet); background: var(--violet-light); }
.nav-links a.active { color: var(--violet); font-weight: 700; background: var(--violet-light); }

.nav-cta {
  background: var(--violet) !important;
  color: var(--white) !important;
  padding: 7px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(91,53,213,.28);
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--violet-dark) !important;
  box-shadow: 0 4px 18px rgba(91,53,213,.36) !important;
  transform: translateY(-1px);
}
.nav-cta.active { background: var(--violet-dark) !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--violet-mid), var(--violet));
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 13px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .2px;
  box-shadow: 0 4px 14px rgba(91,53,213,.32), inset 0 1px 0 rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.08), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,53,213,.38);
  filter: brightness(1.05);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-orange {
  background: linear-gradient(135deg, #ff7d44, var(--orange));
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 13px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 4px 14px rgba(255,107,43,.32);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,43,.4);
  filter: brightness(1.05);
}

.btn-ghost {
  color: var(--violet);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap .2s, opacity .2s;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .1px;
}
.btn-ghost:hover { gap: 10px; opacity: .8; }

.btn-outline {
  background: transparent;
  color: var(--violet);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid var(--violet-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: 'Manrope', sans-serif;
}
.btn-outline:hover {
  border-color: var(--violet);
  background: var(--violet-light);
  box-shadow: var(--shadow-sm);
}

/* ─────────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────────── */
.sec-label { display: flex; align-items: center; gap: 10px; margin-bottom: .875rem; }
.sec-label-dot {
  width: 6px; height: 6px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(91,53,213,.15);
}
.sec-label-text {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 800;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: .95;
  color: var(--text);
  letter-spacing: .5px;
}
.sec-sub {
  font-size: 15px;
  color: var(--subtle);
  margin-top: .625rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   TAGS
───────────────────────────────────────────── */
.tag {
  background: var(--violet-light);
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .2px;
  border: 1px solid var(--violet-border);
}

/* ─────────────────────────────────────────────
   HERO — Homepage
───────────────────────────────────────────── */
.hero-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 78px;
  line-height: .95;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1.625rem;
}
.hero-h1 em { color: var(--violet); font-style: normal; }
.hero-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }

/* Profile card */
.profile-card {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.profile-card-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--violet), var(--violet-mid), var(--orange));
}
.profile-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--violet-light);
}
.profile-card-body { padding: 1.375rem 1.625rem 1.625rem; }
.profile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 3px;
}
.profile-role {
  font-size: 10px;
  color: var(--violet);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.profile-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.125rem; }
.profile-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--violet-border);
}
.profile-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  color: var(--violet);
  line-height: 1;
  font-weight: 800;
}
.profile-stat-label {
  font-size: 9px;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--violet-border);
  border-bottom: 1px solid var(--violet-border);
  background: var(--bg-tint);
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  color: var(--violet);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 10px;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   VIDEO CARDS
───────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.video-card {
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
  display: block;
}
.video-card:hover {
  border-color: var(--violet);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }

.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,6,15,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}
.video-card:hover .video-thumb::after { opacity: 1; }

.video-play {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(91,53,213,.45);
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover .video-play {
  transform: scale(1.14);
  box-shadow: 0 8px 32px rgba(91,53,213,.55);
}

.video-tag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: rgba(8,6,15,.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
}
.video-info { padding: 1rem 1.25rem 1.25rem; }
.video-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.45; }
.video-meta { font-size: 11px; color: var(--faint); display: flex; align-items: center; gap: 8px; }
.video-meta span { display: flex; align-items: center; gap: 4px; }

.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.video-thumb-placeholder i { font-size: 32px; color: var(--faint); }

.no-videos {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   BLOG CARDS
───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.blog-card {
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: block;
  text-decoration: none;
}
.blog-card:hover {
  border-color: var(--violet);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-thumb {
  height: 136px;
  background: linear-gradient(135deg, var(--bg-tint), var(--violet-light));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #c4b5f7;
  position: relative;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-info { padding: 1.25rem; }
.blog-cat {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--violet); font-weight: 800; margin-bottom: 7px;
}
.blog-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 9px; line-height: 1.5; }
.blog-meta { font-size: 11px; color: var(--faint); }

/* ─────────────────────────────────────────────
   RESOURCE CARDS
───────────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-card {
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  background: var(--white);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.resource-card:hover {
  border-color: var(--violet);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.resource-icon {
  width: 46px; height: 46px;
  background: var(--violet-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--violet);
  margin-bottom: 1.125rem;
  border: 1px solid var(--violet-border);
  transition: background .2s, color .2s;
}
.resource-card:hover .resource-icon { background: var(--violet); color: var(--white); }
.resource-type {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--violet); font-weight: 800; margin-bottom: 7px;
}
.resource-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.45; }
.resource-desc { font-size: 12px; color: var(--subtle); line-height: 1.65; }

/* ─────────────────────────────────────────────
   ROAS BAND
───────────────────────────────────────────── */
.roas-band {
  background: var(--surface);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.roas-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(91,53,213,.2), transparent),
    radial-gradient(ellipse 40% 60% at 100% 100%, rgba(255,107,43,.08), transparent);
  pointer-events: none;
}
.roas-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.roas-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.roas-eyebrow {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-weight: 700;
  display: flex; align-items: center; gap: 8px; margin-bottom: 1.125rem;
}
.roas-eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--violet-mid); border-radius: 50%;
  box-shadow: 0 0 6px rgba(124,92,230,.5);
}
.roas-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px; line-height: .93; letter-spacing: .5px;
  color: var(--white); margin-bottom: 1.125rem;
}
.roas-desc { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.8; }

.roas-form-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--subtle); font-weight: 700; margin-bottom: 8px; display: block;
}
.form-input {
  width: 100%;
  border: 1.5px solid var(--violet-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.form-input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(91,53,213,.1);
}
.roas-result {
  margin-top: 1.25rem;
  padding: 1.375rem;
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  border: 1px solid var(--violet-border);
  display: none;
}
.roas-result-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--subtle); font-weight: 700; margin-bottom: 6px;
}
.roas-result-num {
  font-family: 'Manrope', sans-serif;
  font-size: 52px; color: var(--violet);
  font-weight: 700; line-height: 1;
}
.roas-result-sub { font-size: 13px; color: var(--subtle); margin-top: 6px; }
.roas-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; margin-top: 1rem;
  transition: filter .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(91,53,213,.32);
}
.roas-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(91,53,213,.42);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   FORWARD BAND
───────────────────────────────────────────── */
.forward-band {
  background: var(--surface);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.forward-band::before {
  content: 'FORWARD';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px; letter-spacing: 16px;
  color: rgba(255,255,255,.018);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.forward-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.forward-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.forward-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.forward-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--violet-mid); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.forward-eyebrow-line { width: 20px; height: 1.5px; background: var(--violet); }
.forward-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: .92; letter-spacing: .5px;
  color: var(--white); margin-bottom: 1.625rem;
}
.forward-title em { color: var(--violet); font-style: normal; }
.forward-desc { font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.85; margin-bottom: .75rem; }
.forward-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 1.75rem; }
.forward-badge {
  border: 1px solid rgba(91,53,213,.35);
  color: rgba(167,139,250,.75);
  font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; letter-spacing: .3px;
  background: rgba(91,53,213,.06);
}

.forward-right { display: flex; flex-direction: column; gap: 1rem; }
.forward-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.forward-stat {
  background: rgba(15,13,24,.9);
  padding: 1.625rem;
  text-align: center;
}
.forward-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 34px; color: var(--violet);
  line-height: 1; font-weight: 800;
}
.forward-stat-label {
  font-size: 9px; color: rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px; font-weight: 600;
}

.forward-tagline {
  background: rgba(15,13,24,.8);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.625rem;
  display: flex; align-items: center; gap: 14px;
}
.forward-tagline-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--white); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(91,53,213,.4);
}
.forward-tagline p { font-size: 14px; font-weight: 700; color: var(--white); margin: 0 0 3px; }
.forward-tagline span { font-size: 12px; color: rgba(255,255,255,.3); }

.forward-ticker { border-top: 1px solid var(--border-dark); padding-top: 2.5rem; overflow: hidden; }
.forward-ticker-track { display: flex; gap: 4rem; white-space: nowrap; }
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px;
  color: rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 2rem;
}
.ticker-item em { color: rgba(91,53,213,.5); font-style: normal; }

/* ─────────────────────────────────────────────
   CONTACTO BAND
───────────────────────────────────────────── */
.contacto-band {
  background: var(--bg-card);
  border-top: 1px solid var(--violet-border);
  padding: 5.5rem 2.5rem;
}
.contacto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.contacto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: .94; letter-spacing: .5px;
  color: var(--text); margin-bottom: 1rem;
}
.contacto-title em { color: var(--violet); font-style: normal; }
.contacto-desc {
  font-size: 16px; color: var(--subtle); line-height: 1.8;
  max-width: 520px; margin: 0 auto 3rem;
}
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}
.contacto-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 1.125rem 1.375rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--violet-border);
  background: var(--white);
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-align: left;
}
.contacto-btn:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contacto-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.icon-wa   { background: #e7fdf1; color: #25D366; }
.icon-mail { background: var(--violet-light); color: var(--violet); }
.icon-cal  { background: #fff3ec; color: #f57c00; }
.icon-ig-ag{ background: #fde8f0; color: #e91e63; }
.icon-ig-ju{ background: #f3e8fd; color: #9c27b0; }
.contacto-btn-text p { font-size: 13px; font-weight: 800; color: var(--text); margin: 0 0 2px; }
.contacto-btn-text span { font-size: 11px; color: var(--subtle); }
.contacto-btn--primary {
  background: #e8f8f0;
  border-color: #25d366;
  box-shadow: 0 2px 12px rgba(37,211,102,.15);
}
.contacto-btn--primary .contacto-btn-text p { font-size: 15px; }
.contacto-btn--primary:hover { border-color: #25d366; background: #d4f3e4; box-shadow: 0 6px 20px rgba(37,211,102,.22); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 5px;
  color: var(--violet);
  opacity: .6;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: 1; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { color: var(--faint); font-size: 17px; transition: color .2s; }
.footer-social a:hover { color: var(--violet); }
.footer-copy { font-size: 11px; color: var(--faint); letter-spacing: .2px; }

/* ─────────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────────── */
.page-hero {
  background: var(--bg-tint);
  border-bottom: 1px solid var(--violet-border);
  padding: 4.5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(91,53,213,.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 100% at 100% 50%, rgba(91,53,213,.06), transparent),
    radial-gradient(ellipse 30% 50% at 0% 0%, rgba(91,53,213,.04), transparent);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; letter-spacing: .5px;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: .94;
}
.page-hero p {
  font-size: 15px; color: var(--muted);
  max-width: 520px; line-height: 1.72;
  margin-top: .75rem;
}

/* ─────────────────────────────────────────────
   INNER SECTION
───────────────────────────────────────────── */
.inner-sec { padding: 4rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.divider { height: 1px; background: var(--violet-border); }
.section-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 0;
  gap: 10px;
}
.section-bridge span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
}

/* ─────────────────────────────────────────────
   FILTER TAGS
───────────────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-tag {
  background: var(--white);
  color: var(--muted);
  font-size: 12px; font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--violet-border);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .1px;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.filter-tag:hover { border-color: var(--violet); color: var(--violet); }
.filter-tag.active {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
  box-shadow: 0 2px 8px rgba(91,53,213,.28);
}

/* ─────────────────────────────────────────────
   SOBRE MÍ
───────────────────────────────────────────── */
.sobre-grid { display: grid; grid-template-columns: 1fr 300px; gap: 4.5rem; align-items: start; }
.sobre-photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  margin-bottom: 1.625rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.sobre-bio { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.sobre-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h4 {
  font-size: 10px; font-weight: 800; color: var(--text);
  margin-bottom: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--violet-border);
  text-decoration: none; transition: opacity .2s;
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { opacity: .7; }
.contact-row-icon {
  width: 34px; height: 34px;
  background: var(--violet-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--violet); flex-shrink: 0;
}
.contact-row p { font-size: 13px; font-weight: 700; color: var(--text); margin: 0; }
.contact-row span { font-size: 11px; color: var(--subtle); }

/* ─────────────────────────────────────────────
   CALCULADORA PAGE
───────────────────────────────────────────── */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.calc-card {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.calc-tip {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 1.125rem 0; border-bottom: 1px solid var(--violet-border);
}
.calc-tip:last-child { border-bottom: none; }
.calc-tip-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--white); flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
}
.calc-tip p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.calc-tip strong { color: var(--text); }

/* ─────────────────────────────────────────────
   DARK SURFACE CARD (accent block en páginas blancas)
───────────────────────────────────────────── */
.dark-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
}
.dark-card-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--violet-mid); font-weight: 700; margin-bottom: .75rem;
}
.dark-card p {
  font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 1.25rem;
}

/* ─────────────────────────────────────────────
   INFO BOX (nota / tip informativo)
───────────────────────────────────────────── */
.info-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1.125rem 1.375rem;
  background: var(--bg-card);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-md);
}
.info-box i { font-size: 18px; color: var(--violet); margin-top: 2px; flex-shrink: 0; }
.info-box p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────────
   CALC TIP COLORS
───────────────────────────────────────────── */
.tip-red    { background: #dc2626 !important; }
.tip-yellow { background: #ca8a04 !important; }
.tip-violet { background: var(--violet) !important; }

/* ─────────────────────────────────────────────
   NAV MOBILE OPEN STATE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--violet-border);
    padding: .75rem 1.5rem 1.25rem;
    gap: 2px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─────────────────────────────────────────────
   PRICING / CONTACTO PAGE
───────────────────────────────────────────── */
.pricing-hero { padding: 4.5rem 2.5rem 3.5rem; background: var(--bg-tint); border-bottom: 1px solid var(--violet-border); text-align: center; position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(91,53,213,.045) 1px, transparent 1px); background-size: 20px 20px; pointer-events: none; }
.pricing-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.pricing-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,9vw,86px); color: var(--text); line-height: .92; margin-bottom: 1rem; }
.pricing-hero h1 em { color: var(--violet); font-style: normal; }
.pricing-hero p { font-size: 15px; color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 1.72; }

.curr-bar { display: flex; flex-direction: column; align-items: center; gap: 8px; padding-top: 1.75rem; }
.curr-bar .mep { font-size: 11px; color: var(--faint); transition: opacity .3s; }
.curr-tog { display: inline-flex; background: var(--bg-tint); border: 1.5px solid var(--violet-border); border-radius: var(--radius-sm); overflow: hidden; }
.curr-tog button { background: transparent; border: none; color: var(--subtle); font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; padding: 8px 20px; cursor: pointer; transition: all .2s; }
.curr-tog button.on { background: var(--violet); color: var(--white); }

.pricing-wrap { max-width: 1060px; margin: 0 auto; padding: 3.5rem 2.5rem 4.5rem; }
.pricing-hdr { text-align: center; margin-bottom: 2.5rem; }
.pricing-hdr .sub { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.pricing-hdr h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px,5vw,54px); color: var(--text); line-height: 1; margin-bottom: 8px; }
.pricing-hdr p { font-size: 14px; color: var(--subtle); max-width: 440px; margin: 0 auto; line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 3rem; }
.p-card {
  background: var(--white); border: 1.5px solid var(--violet-border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.p-card:hover { border-color: var(--violet); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-card.featured { border-color: var(--violet); background: var(--bg-tint); box-shadow: var(--shadow-md); }

.p-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 1.25rem; width: fit-content; }
.p-badge.one    { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(255,107,43,.2); }
.p-badge.equipo { background: var(--violet-light); color: var(--violet); border: 1px solid var(--violet-border); }
.p-badge.juani  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

.p-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--text); line-height: 1.05; margin-bottom: 4px; }
.p-sub  { font-size: 11px; color: var(--subtle); margin-bottom: 1.375rem; }
.p-price { margin-bottom: 6px; }
.p-price .amount { font-family: 'Manrope', sans-serif; font-size: clamp(26px,3.5vw,36px); font-weight: 700; color: var(--violet); line-height: 1; }
.p-price .cur    { font-size: 12px; color: var(--subtle); margin-left: 4px; }
.p-price .period { font-size: 11px; color: var(--faint); display: block; margin-top: 3px; }

.p-divider { border: none; border-top: 1px solid var(--violet-border); margin: 1.25rem 0; }
.p-who { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }

.p-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.p-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); line-height: 1.45; }
.p-features li i { color: var(--violet); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

.p-cta { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; font-family: 'Manrope', sans-serif; text-decoration: none; transition: all .2s; border: none; cursor: pointer; }
.p-cta.primary { background: linear-gradient(135deg, var(--violet-mid), var(--violet)); color: var(--white); box-shadow: 0 3px 10px rgba(91,53,213,.28); }
.p-cta.primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.p-cta.outline { background: transparent; border: 1.5px solid var(--violet-border); color: var(--subtle); }
.p-cta.outline:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-light); }
.p-cupos { display: flex; align-items: center; gap: 5px; font-size: 9px; color: var(--orange); margin-top: 10px; justify-content: center; font-weight: 700; }

.areas-wrap { max-width: 900px; margin: 0 auto; padding: 0 2.5rem 4.5rem; }
.areas-hdr { text-align: center; margin-bottom: 2.25rem; }
.areas-hdr .sub { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.areas-hdr h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,48px); color: var(--text); line-height: 1; margin-bottom: 8px; }
.areas-hdr p { font-size: 13px; color: var(--subtle); max-width: 400px; margin: 0 auto; }

.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--violet-border); border-radius: var(--radius-lg); overflow: hidden; }
.area { background: var(--white); padding: 1.5rem; transition: background .2s; }
.area:hover { background: var(--bg-tint); }
.area-num { font-family: 'Manrope', sans-serif; font-size: 10px; color: var(--violet); margin-bottom: 10px; letter-spacing: 1px; font-weight: 700; }
.area-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); margin-bottom: 6px; }
.area-desc { font-size: 12px; color: var(--subtle); line-height: 1.6; }

.metodo-wrap { max-width: 800px; margin: 0 auto; padding: 0 2.5rem 4.5rem; }
.metodo-hdr { text-align: center; margin-bottom: 2.5rem; }
.metodo-hdr .sub { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.metodo-hdr h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,48px); color: var(--text); line-height: 1; margin-bottom: 8px; }
.metodo-hdr p { font-size: 13px; color: var(--subtle); }

.metodo-steps { display: flex; flex-direction: column; }
.ms { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--violet-border); }
.ms:last-child { border-bottom: 1px solid var(--violet-border); }
.ms-num { font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--violet); flex-shrink: 0; width: 28px; padding-top: 3px; letter-spacing: .5px; font-weight: 700; }
.ms-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); margin-bottom: 5px; }
.ms-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

.faq-wrap { max-width: 700px; margin: 0 auto; padding: 0 2.5rem 5rem; }
.faq-hdr { text-align: center; margin-bottom: 2.25rem; }
.faq-hdr .sub { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.faq-hdr h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px,4vw,44px); color: var(--text); line-height: 1; margin-bottom: 8px; }
.faq-hdr p { font-size: 13px; color: var(--subtle); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--violet-border); }
.faq-item:last-child { border-bottom: 1px solid var(--violet-border); }
.faq-q { width: 100%; background: transparent; border: none; text-align: left; padding: 1.125rem 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; color: var(--muted); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; line-height: 1.4; transition: color .2s; }
.faq-q:hover { color: var(--text); }
.faq-q i { color: var(--faint); flex-shrink: 0; transition: transform .25s, color .25s; font-size: 14px; }
.faq-item.open .faq-q { color: var(--text); }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--violet); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-size: 13px; color: var(--muted); line-height: 1.72; padding-bottom: 1.125rem; }

.final-strip { background: var(--surface); padding: 5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.final-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.final-strip::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(91,53,213,.18), transparent); pointer-events: none; }
.final-strip-inner { position: relative; z-index: 1; }
.final-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5vw,56px); color: var(--white); margin-bottom: 10px; }
.final-strip p { font-size: 14px; color: rgba(255,255,255,.42); max-width: 400px; margin: 0 auto 1.75rem; line-height: 1.72; }

/* ─────────────────────────────────────────────
   SKELETON
───────────────────────────────────────────── */
.skeleton,
.skeleton-box,
.skeleton-line {
  background: linear-gradient(90deg, #ede9f8 25%, #f5f2fd 50%, #ede9f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.skeleton-box, .skeleton { border-radius: var(--radius-md); }
.skeleton-line { border-radius: 4px; margin-bottom: 6px; }
@keyframes shimmer {
  0%   { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .55s ease both; }
.fade-up-2 { animation: fadeUp .55s .1s ease both; }
.fade-up-3 { animation: fadeUp .55s .2s ease both; }
.fade-up-4 { animation: fadeUp .55s .3s ease both; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem 3rem; }
  .hero-h1 { font-size: 72px; }
  .videos-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stats-bar { gap: 2.5rem; flex-wrap: wrap; padding: 1.5rem; }
  .roas-inner, .forward-top, .calc-grid, .sobre-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 54px; }
  .contacto-title { font-size: 52px; }
  .sec-title { font-size: 44px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .videos-grid, .blog-grid, .resources-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 58px; }
  .sec-title { font-size: 38px; }
  .page-hero h1 { font-size: 44px; }
  .inner-sec { padding: 3rem 1.25rem; }
  .roas-band, .forward-band, .contacto-band { padding: 3.5rem 1.25rem; }
  .stats-bar { padding: 1.5rem 1.25rem; gap: 1.5rem; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .pricing-grid { max-width: 100%; }
  .pricing-wrap { padding: 3rem 1.25rem; }
}
