/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2A2D31;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
svg { display: block; }

/* ── Tokens — derivados del logotipo Dbrone Studio ───────────────
   #1F1F1F  carbón (marca, texto fuerte)
   #2FB5E9  azul cielo (acento, marca)
   #FFFFFF  blanco
──────────────────────────────────────────────────────────────── */
:root {
  --ink:       #1F1F1F;
  --ink-soft:  #2D2D2C;
  --ink-mute:  #4A4A47;
  --blue:      #2FB5E9;
  --blue-deep: #1496C7;
  --blue-ink:  #0E6E92;
  --blue-pale: #EAF8FD;
  --blue-mist: #CFEFFB;
  --paper:     #F6F8F8;
  --white:     #FFFFFF;
  --ash:       #62666B;
  --ash-light: #202020;
  --border:    #E3E7E8;
  --green:     #1E9A6C;
  --green-pale:#E9F7F1;
  --amber:     #B6650A;
  --amber-pale:#FBF1E2;
  --red:       #D14B4B;
  --red-pale:  #FBEAEA;
  --r:         12px;
  --r-lg:      20px;
  --r-full:    999px;
  --shadow:    0 6px 22px rgba(20,24,28,.07);
  --shadow-md: 0 18px 50px rgba(20,24,28,.14);
  --shadow-ink:0 18px 44px rgba(31,31,31,.28);
}

/* ── Typography ──────────────────────────────────────────────── */
.display { font-family: 'Fraunces', serif; }
h1,h2,h3.serif { font-family: 'Fraunces', serif; line-height: 1.15; letter-spacing: -.01em; }
h4 { font-family: 'Inter', sans-serif; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--ink { background: var(--ink); position: relative; overflow: hidden; }
.section--blue-pale { background: var(--blue-pale); }

/* ── Icons (sistema propio, sin emojis) ─────────────────────── */
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,248,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  width: 34px; height: 34px; border: 1.4px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--ink);
}
.nav__mark span { font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px; color: var(--white); letter-spacing: -1px; }
.nav__wordmark { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.2px; line-height: 1.1; }
.nav__wordmark span { display: block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; color: var(--blue-ink); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
.nav__links { display: flex; gap: 30px; list-style: none; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ash); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--blue); color: var(--ink);
  padding: 11px 22px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.nav__cta:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }

/* ── Hero — full-bleed con video de fondo (estilo Josso) ─────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center; justify-content: center;
  background: var(--ink);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(15,15,15,.82) 0%,
    rgba(14,110,146,.55) 45%,
    rgba(15,15,15,.88) 100%
  );
}
/* Segunda capa: viñeta radial para enfocar el texto central */
.hero__overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, transparent 0%, rgba(0,0,0,.38) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 110px 24px 90px;
  max-width: 820px; width: 100%;
}
.hero__mute {
  position: absolute; bottom: 28px; right: 28px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero__mute:hover { background: rgba(255,255,255,.22); }
.hero__mute .icon { width: 18px; height: 18px; stroke: #fff; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,181,233,.15); border: 1px solid rgba(47,181,233,.5);
  color: var(--blue); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--r-full); margin-bottom: 28px;
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 66px);
  color: #fff; font-weight: 600;
  margin-bottom: 22px; line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.65), 0 4px 40px rgba(0,0,0,.45);
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--blue); }
.hero__sub {
  font-size: 17px; color: rgba(255,255,255,.92); line-height: 1.75;
  margin-bottom: 36px; max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.hero__sub strong { color: #fff; font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; }
.btn-primary {
  background: var(--blue); color: var(--ink);
  padding: 16px 30px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700;
  transition: all .2s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(47,181,233,.4); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.85);
  padding: 16px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.28);
  transition: all .2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(255,255,255,.07); }
/* Rating Google bajo el hero */
.hero__rating {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12);
  width: 100%; flex-wrap: wrap;
}
.hero__rating-label { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 500; }
.hero__rating-stars { display: flex; gap: 3px; }
.hero__rating-stars svg { width: 14px; height: 14px; fill: #FDC53A; }
.hero__rating-score { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: #fff; }
.hero__rating-count { font-size: 12.5px; color: rgba(255,255,255,.45); }
/* Stats strip dentro del hero */
.hero__stats {
  display: flex; gap: 0; margin-bottom: 36px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full); backdrop-filter: blur(8px); overflow: hidden;
}
.hero__stat { padding: 14px 28px; text-align: center; position: relative; }
.hero__stat + .hero__stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.15);
}
.hero__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 600; color: #fff; line-height: 1; display: block;
  margin-bottom: 3px;
}
.hero__stat-num span { color: var(--blue); }
.hero__stat-label { font-size: 10.5px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; line-height: 1.3; }

/* ── Compare card (ahora sección propia, no en el hero) ────────── */
.compare-section { background: var(--blue-pale); padding: 80px 0; }
.compare-section .sec-header { margin-bottom: 44px; }
.compare-layout {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center;
}
.compare-layout__text { }
.compare-layout__text p { font-size: 15px; color: var(--ash); line-height: 1.75; margin-bottom: 22px; }
.compare-layout__text .btn-primary { margin-top: 6px; }
.compare-card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-ink); overflow: hidden; width: 100%; max-width: 440px;
}
.compare-card__top { padding: 18px 22px 14px; border-bottom: 1px solid var(--border); }
.compare-card__top p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-ink); margin-bottom: 3px; }
.compare-card__top span { font-size: 13px; color: var(--ash); }
.compare-slider {
  position: relative; height: 280px; overflow: hidden; cursor: ew-resize; user-select: none;
}
.compare-slider__panel { position: absolute; inset: 0; padding: 18px 20px; }
.compare-slider__panel--after { background: linear-gradient(160deg,#F2FBFE,#fff); }
.compare-slider__panel--before { background: #F2F2F1; }
.mockup-search {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 12px; font-size: 12px; color: var(--ash-light); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.compare-slider__panel--before .mockup-search { background: #EDEDEC; color: #A7A7A4; }
.mockup-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.mockup-row:last-child { border-bottom: none; }
.mockup-row__rank { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 700; color: var(--ash-light); width: 18px; flex-shrink: 0; }
.mockup-row__bar { height: 8px; border-radius: 4px; background: #E2E2E0; flex: 1; }
.mockup-row--ghost .mockup-row__bar { width: 70%; }
.mockup-row--you-before { opacity: .55; }
.mockup-row--you-before .mockup-row__rank { color: var(--ash); }
.mockup-row--you-before .mockup-row__bar { background: repeating-linear-gradient(135deg,#D9D9D6,#D9D9D6 4px,#CFCFCC 4px,#CFCFCC 8px); width: 55%; }
.mockup-you-card {
  background: var(--ink); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 24px rgba(31,31,31,.18);
}
.mockup-you-card__rank {
  width: 30px; height: 30px; border-radius: 50%; background: var(--blue);
  color: var(--ink); font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mockup-you-card__body strong { display: block; color: #fff; font-size: 12.5px; font-weight: 600; }
.mockup-you-card__meta { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.mockup-you-card__meta span { font-size: 11px; color: #9FE3FA; }
.compare-slider__panel--before .mockup-rest { margin-top: 10px; }
.compare-slider__divider {
  position: absolute; top: 0; bottom: 0; width: 2px; background: var(--white);
  box-shadow: 0 0 0 1px rgba(31,31,31,.08); pointer-events: none; left: 50%; transform: translateX(-50%);
}
.compare-slider__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  box-shadow: var(--shadow-md); pointer-events: none;
}
.compare-slider__handle .icon { width: 13px; height: 13px; stroke-width: 2.4; color: var(--ink); }
.compare-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.compare-slider__tag {
  position: absolute; top: 12px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: var(--r-full);
}
.compare-slider__tag--before { left: 12px; background: rgba(31,31,31,.08); color: var(--ash); }
.compare-slider__tag--after { right: 12px; background: var(--blue); color: var(--ink); }
.compare-card__caption { padding: 14px 22px 18px; font-size: 12px; color: var(--ash-light); display: flex; align-items: center; gap: 7px; }
.compare-card__caption .icon { width: 14px; height: 14px; }

/* ── Expert / Especialista section ──────────────────────────── */
.expert-section {
  background: var(--white); padding: 90px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.expert-layout {
  display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: center;
}
.expert-photo-col { position: relative; }
.expert-photo-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.expert-photo-frame img {
  width: 100%; height: 480px; object-fit: cover; object-position: top center;
  display: block;
}
/* Tarjeta credencial flotante */
.expert-credential {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(31,31,31,.92); backdrop-filter: blur(10px);
  border-radius: var(--r); border: 1px solid rgba(47,181,233,.25);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.expert-credential__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(47,181,233,.15); border: 1px solid rgba(47,181,233,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.expert-credential__icon .icon { width: 18px; height: 18px; color: var(--blue); }
.expert-credential__text strong {
  display: block; color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 2px;
}
.expert-credential__text span { color: rgba(255,255,255,.5); font-size: 11.5px; }
/* Texto del especialista */
.expert-content {}
.expert-content .sec-eyebrow { margin-bottom: 16px; }
.expert-name {
  font-family: 'Fraunces', serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 600; color: var(--ink); line-height: 1.15;
  margin-bottom: 6px;
}
.expert-title {
  font-size: 15px; color: var(--blue-ink); font-weight: 600;
  margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.expert-title::before { content: ''; width: 28px; height: 2px; background: var(--blue); display: block; }
.expert-bio {
  font-size: 16px; color: var(--ash); line-height: 1.8;
  margin-bottom: 32px;
}
.expert-bio strong { color: var(--ink); font-weight: 600; }
.expert-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px;
}
.expert-pillar {
  background: var(--paper); border-radius: var(--r); padding: 14px 16px;
  border-left: 3px solid var(--blue);
}
.expert-pillar strong {
  display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px;
}
.expert-pillar span { font-size: 12px; color: var(--ash); line-height: 1.4; }
.expert-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.expert-cta-note { font-size: 13px; color: var(--ash-light); }

/* ── Trust bar — ribbon carbón de alto impacto ───────────────── */
.trust-bar {
  background: var(--ink); padding: 0;
  border-top: 2px solid rgba(47,181,233,.25);
}
.trust-bar__inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 26px 16px; text-align: center;
  position: relative; transition: background .22s;
}
.trust-item:hover { background: rgba(47,181,233,.07); }
.trust-item + .trust-item::before {
  content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(255,255,255,.08);
}
.trust-item__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(47,181,233,.12); border: 1px solid rgba(47,181,233,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item__icon .icon { width: 20px; height: 20px; color: var(--blue); }
.trust-item__body strong {
  display: block; font-size: 13.5px; font-weight: 700; color: #fff;
  margin-bottom: 3px; line-height: 1.3;
}
.trust-item__body span { font-size: 11.5px; color: rgba(255, 255, 255, 0.916); line-height: 1.4; }

/* ── Section header ──────────────────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); color: var(--blue-ink); font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 15px; border-radius: var(--r-full); margin-bottom: 18px;
}
.sec-eyebrow--green { background: var(--green-pale); color: var(--green); }
.sec-eyebrow--amber { background: var(--amber-pale); color: var(--amber); }
.sec-header h2 { font-size: clamp(28px, 3.2vw, 40px); color: var(--ink); margin-bottom: 16px; font-weight: 600; }
.sec-header p { font-size: 17px; color: var(--ash); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.sec-header--left { text-align: left; margin-bottom: 0; }
.sec-header--left p { margin: 0; }

/* ── Problem section ─────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.problem__img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 6px solid var(--white);
}
.problem__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.problem__img-overlay {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(31,31,31,.88); border-radius: var(--r); backdrop-filter: blur(6px);
  padding: 16px 18px; display: flex; align-items: flex-start; gap: 10px;
}
.problem__img-overlay .icon { color: var(--blue); margin-top: 2px; }
.problem__img-overlay p { color: var(--blue); font-size: 11px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .07em; }
.problem__img-overlay strong { color: #fff; font-size: 14.5px; font-weight: 500; font-family: 'Fraunces', serif; line-height: 1.4; }
.pain-list { list-style: none; margin-top: 32px; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.pain-item:last-child { border-bottom: none; }
.pain-item__icon {
  width: 42px; height: 42px; border-radius: var(--r); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pain-item__icon--blue { background: var(--blue-pale); color: var(--blue-ink); }
.pain-item__icon--amber { background: var(--amber-pale); color: var(--amber); }
.pain-item__icon--red { background: var(--red-pale); color: var(--red); }
.pain-item__icon--ink { background: #ECECEA; color: var(--ink-mute); }
.pain-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.pain-item p { font-size: 14px; color: var(--ash); line-height: 1.65; }

/* ── Process ─────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.process-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); padding: 32px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .2s, border-color .2s;
}
.process-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-mist); }
.process-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.process-step-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700; color: var(--blue-ink);
  background: var(--blue-pale); padding: 5px 12px; border-radius: var(--r-full);
  letter-spacing: .03em;
}
.process-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.process-card__icon .icon { color: var(--blue); width: 21px; height: 21px; }
.process-card h3 { font-size: 17.5px; font-weight: 600; color: var(--ink); margin-bottom: 11px; font-family: 'Fraunces', serif; }
.process-card p { font-size: 14px; color: var(--ash); line-height: 1.7; }
.process-card ul { list-style: none; margin-top: 16px; }
.process-card ul li {
  font-size: 13.5px; color: var(--ash); padding: 6px 0;
  display: flex; gap: 9px; align-items: flex-start;
}
.process-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex-shrink: 0; }
.process-img-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px;
}
.process-img-row img { border-radius: var(--r-lg); height: 400px; width: 100%; object-fit: cover; border: 6px solid var(--white); box-shadow: var(--shadow); }

/* ── Results ─────────────────────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.result-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-card__img { height: 300px; overflow: hidden; position: relative; }
.result-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.result-card:hover .result-card__img img { transform: scale(1.04); }
.result-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--blue);
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-full);
}
.result-card__body { padding: 28px; }
.result-card__body h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 14px; font-family: 'Fraunces', serif; line-height: 1.4; }
.result-metrics { display: flex; gap: 22px; margin: 18px 0 18px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.metric { text-align: left; }
.metric__num {
  font-family: 'Fraunces', serif; font-size: 34px; font-weight: 600;
  color: var(--blue-ink); line-height: 1; display: block;
}
.metric__label { font-size: 10.5px; color: var(--ash); text-transform: uppercase; letter-spacing: .05em; margin-top: 5px; }
.result-card__body p { font-size: 13.5px; color: var(--ash); line-height: 1.65; }

/* ── Compare table ───────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; }
.compare-table th {
  padding: 18px 24px; font-size: 13.5px; font-weight: 700;
  text-align: left;
}
.compare-table th:first-child { background: var(--white); color: var(--ash); width: 40%; }
.compare-table th:nth-child(2) { background: #ECECE9; color: var(--ash); text-align: center; width: 30%; }
.compare-table th:nth-child(3) { background: var(--ink); color: var(--blue); text-align: center; width: 30%; }
.compare-table td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child { font-weight: 500; color: var(--ink); background: var(--white); }
.compare-table td:nth-child(2) { text-align: center; color: var(--ash-light); background: #FAFAF9; }
.compare-table td:nth-child(3) { text-align: center; color: var(--blue-ink); font-weight: 600; background: var(--blue-pale); }
.compare-table tr:last-child td { border-bottom: none; }
.x-mark { color: var(--red); font-weight: 700; }
.check-mark { color: var(--blue-ink); font-weight: 700; font-size: 16px; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  border-radius: var(--r-lg); border: 1px solid var(--border);
  padding: 36px 28px; position: relative;
  background: var(--white); transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card--featured {
  border-color: var(--ink); background: var(--ink);
  transform: scale(1.045);
}
.plan-card--featured:hover { transform: scale(1.045) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--ink);
  font-size: 10.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-full);
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-ink); margin-bottom: 14px; }
.plan-card--featured .plan-name { color: var(--blue); }
.plan-price { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 600; color: var(--ink); line-height: 1; }
.plan-card--featured .plan-price { color: #fff; }
.plan-price span { font-size: 22px; font-weight: 500; vertical-align: top; margin-right: 2px; }
.plan-period { font-size: 12.5px; color: var(--ash); margin: 8px 0 16px; }
.plan-card--featured .plan-period { color: #9499A0; }
.plan-desc { font-size: 13.5px; color: var(--ash); line-height: 1.6; margin-bottom: 24px; min-height: 42px; }
.plan-card--featured .plan-desc { color: #C3C7CA; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--ash); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-card--featured .plan-features li { color: #C3C7CA; border-color: rgba(255,255,255,.08); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li .icon { color: var(--blue-ink); width: 16px; height: 16px; margin-top: 2px; }
.plan-card--featured .plan-features li .icon { color: var(--blue); }
.btn-plan {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--r-full); font-size: 14.5px; font-weight: 700;
  transition: all .2s; cursor: pointer; border: none; width: 100%;
}
.btn-plan--outline {
  background: transparent; color: var(--blue-ink);
  border: 1.5px solid var(--blue-mist);
}
.btn-plan--outline:hover { background: var(--blue-pale); }
.btn-plan--solid { background: var(--blue); color: var(--ink); }
.btn-plan--solid:hover { background: #fff; }
.plan-guarantee {
  text-align: center; margin-top: 44px;
  font-size: 14px; color: var(--ash); line-height: 1.7;
}
.plan-guarantee strong { color: var(--ink); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.9fr; gap: 64px; }
.faq-sidebar h3 { font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 16px; font-family: 'Fraunces', serif; }
.faq-sidebar p { font-size: 14.5px; color: var(--ash); line-height: 1.7; margin-bottom: 26px; }
.faq-sidebar-cta {
  background: var(--ink); color: #fff;
  padding: 22px; border-radius: var(--r-lg); text-align: center;
}
.faq-sidebar-cta p { color: #9499A0; font-size: 12.5px; margin-bottom: 14px; }
.faq-sidebar-cta a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--blue); color: var(--ink);
  padding: 12px; border-radius: var(--r-full); font-size: 13.5px; font-weight: 700;
  transition: background .2s; margin-bottom: 10px;
}
.faq-sidebar-cta a:hover { background: #fff; }
.faq-sidebar-cta a.ghost { background: transparent; border: 1px solid rgba(255,255,255,.18); color: #C3C7CA; font-weight: 500; }
.faq-sidebar__img { border-radius: var(--r-lg); width: 100%; margin-top: 14px; height: 250px; object-fit: cover; border: 6px solid var(--white); box-shadow: var(--shadow); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left;
}
.faq-question__text { font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.45; }
.faq-question__icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-pale); color: var(--blue-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; transition: transform .25s, background .2s, color .2s;
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); background: var(--blue); color: var(--ink); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 650px; }
.faq-answer__inner { padding-bottom: 26px; }
.faq-answer__inner p { font-size: 14.5px; color: var(--ash); line-height: 1.75; margin-bottom: 12px; }
.faq-answer__inner p:last-child { margin-bottom: 0; }
.faq-answer__inner strong { color: var(--ink); }
.faq-highlight {
  background: var(--blue-pale); border-left: 3px solid var(--blue);
  padding: 14px 18px; border-radius: 0 var(--r) var(--r) 0;
  margin-top: 12px;
}
.faq-highlight p { font-size: 13.5px; color: var(--blue-ink) !important; font-style: italic; margin: 0 !important; }

/* ── CTA section ─────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  padding: 110px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 460px at 85% 10%, rgba(47,181,233,.18), transparent 60%),
    radial-gradient(500px 400px at 10% 95%, rgba(47,181,233,.1), transparent 60%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; font-size: clamp(28px, 3.2vw, 42px); position: relative; font-weight: 600; }
.cta-section > .container > p { color: #9499A0; font-size: 17px; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-primary {
  background: var(--blue); color: var(--ink);
  padding: 17px 34px; border-radius: var(--r-full);
  font-size: 15.5px; font-weight: 700;
  transition: all .2s; display: inline-flex; align-items: center; gap: 9px;
}
.btn-cta-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(47,181,233,.35); }
.btn-cta-ghost {
  background: transparent; color: #D7DADD;
  padding: 17px 34px; border-radius: var(--r-full);
  font-size: 15.5px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.18); transition: all .2s;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-checklist { display: flex; justify-content: center; gap: 30px; margin-top: 42px; flex-wrap: wrap; position: relative; }
.cta-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9499A0; }
.cta-check .icon { width: 15px; height: 15px; color: var(--blue); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: #161616; padding: 64px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { display: flex; align-items: flex-start; gap: 14px; }
.footer__brand p { font-size: 13.5px; color: #75787C; line-height: 1.7; margin-top: 10px; max-width: 300px; }
.footer__logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: #fff; line-height: 1.2; }
.footer__logo span { display: block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }
.footer__col h4 { font-size: 12.5px; font-weight: 700; color: #75787C; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a { font-size: 13.5px; color: #9499A0; transition: color .2s; }
.footer__col ul li a:hover { color: var(--blue); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 12.5px; color: #5C5F62; }

/* ── Whatsapp float ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 22px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,.5); }

/* ── Animations on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Focus visibility (accesibilidad) ───────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { order: 2; }
  .compare-layout { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 44px; }
  .problem__img-wrap img { height: 320px; }
  .trust-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(4)::before,
  .trust-item:nth-child(1)::before { display: none; }
  .expert-layout { grid-template-columns: 1fr; gap: 44px; }
  .expert-photo-frame img { height: 380px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav.mobile-open .nav__links {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--white);
    padding: 20px 24px; border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 26px rgba(0,0,0,.08); gap: 16px;
  }
  .nav.mobile-open .nav__cta { display: inline-flex; margin: 4px 24px 18px; align-self: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__content { padding: 80px 24px 80px; }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .hero__stats { flex-wrap: wrap; border-radius: var(--r-lg); }
  .hero__stat { flex: 1 1 40%; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd)::before { display: none; }
  .trust-item:nth-child(5) { grid-column: span 2; }
  .compare-table td, .compare-table th { padding: 12px 14px; font-size: 12.5px; }
  .process-img-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .expert-pillars { grid-template-columns: 1fr; }
  .expert-photo-frame img { height: 300px; }
  .expert-cta { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════════
   AMPLIACIONES — páginas internas (Perfil / Servicios / Contacto)
   ══════════════════════════════════════════════════════════════ */

/* ── Nav: estado activo ──────────────────────────────────────── */
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { content:''; display:block; height:2px; background:var(--blue); margin-top:4px; border-radius:2px; }

/* ── Page hero (banner interior para subpáginas) ─────────────── */
.page-hero {
  background: var(--ink); padding: 160px 0 76px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 460px at 85% 0%, rgba(47,181,233,.16), transparent 60%),
    radial-gradient(500px 400px at 10% 100%, rgba(47,181,233,.09), transparent 60%);
}
.breadcrumb { position: relative; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.breadcrumb a { color: var(--blue); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; color: rgba(255,255,255,.28); }
.page-hero h1 {
  position: relative; color: #fff; font-weight: 600;
  font-size: clamp(30px, 4.2vw, 50px); margin-bottom: 16px; line-height: 1.15;
}
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--blue); }
.page-hero p {
  position: relative; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75;
  max-width: 600px; margin: 0 auto;
}

/* ── Timeline (trayectoria — Perfil del profesional) ─────────── */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 38px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 3px;
  width: 15px; height: 15px; border-radius: 50%; background: var(--blue);
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue-mist);
}
.timeline-item__year {
  font-size: 11.5px; font-weight: 700; color: var(--blue-ink);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px;
}
.timeline-item h4 { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-family: 'Fraunces', serif; }
.timeline-item p { font-size: 14px; color: var(--ash); line-height: 1.75; }

/* ── Values grid (valores de trabajo — Perfil) ───────────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 28px 18px; }
.value-card__icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue-pale);
  color: var(--blue-ink); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--ash); line-height: 1.6; }

/* ── Servicios: cards de servicio (reutiliza .process-card) ──── */
.service-card-cta { margin-top: 18px; }
.service-card-cta a {
  font-size: 13px; font-weight: 700; color: var(--blue-ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card-cta a .icon { width: 13px; height: 13px; }
.service-card-cta a:hover { color: var(--ink); }

/* ── Servicios: bloque destacado alternante (reutiliza .problem-grid) */
.service-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.service-feature.reverse { grid-template-columns: 1.05fr .95fr; }
.service-feature.reverse .service-feature__img { order: 2; }
.service-feature__img img {
  width: 100%; height: 380px; object-fit: cover; border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); border: 6px solid var(--white);
}
.service-feature__list { list-style: none; margin-top: 22px; }
.service-feature__list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14px; color: var(--ash); line-height: 1.6; }
.service-feature__list li .icon { width: 16px; height: 16px; color: var(--blue-ink); margin-top: 3px; flex-shrink: 0; }

/* ── Contacto ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  transition: box-shadow .2s, transform .2s;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-info-card__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue-pale);
  color: var(--blue-ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-card__icon .icon { width: 19px; height: 19px; }
.contact-info-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--ash); line-height: 1.6; }
.contact-info-card a:hover { color: var(--blue-ink); }
.contact-hours { background: var(--ink); border-radius: var(--r-lg); padding: 26px; color: #fff; }
.contact-hours h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--blue); margin-bottom: 14px; font-weight: 700; }
.contact-hours ul { list-style: none; }
.contact-hours li { display: flex; justify-content: space-between; font-size: 13.5px; color: #C3C7CA; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li strong { color: #fff; font-weight: 600; }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-family: 'Fraunces', serif; }
.contact-form > p { font-size: 14px; color: var(--ash); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--r); font-size: 14.5px; font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--paper);
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.form-note { font-size: 12px; color: var(--ash); margin-top: 22px; text-align: center; line-height: 1.6; }
.form-note a { color: var(--blue-ink); font-weight: 600; }

/* ── Mapa embebido ────────────────────────────────────────────── */
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); margin-top: 28px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ── Responsive: ampliaciones ────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; gap: 36px; }
  .service-feature.reverse .service-feature__img { order: 0; }
  .service-feature__img img { height: 300px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ── Botón outline sobre fondos claros (reutilizable) ────────── */
.btn-outline-ink {
  background: transparent; color: var(--ink);
  padding: 16px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border);
  transition: all .2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline-ink:hover { border-color: var(--blue); background: var(--blue-pale); color: var(--blue-ink); }
