:root {
  --navy: #050A30;
  --navy-2: #0a1248;
  --navy-3: #101b62;
  --gold: #B79347;
  --gold-light: #d5b66c;
  --taupe: #8B8383;
  --paper: #F4F6FC;
  --white: #ffffff;
  --ink: #15182c;
  --muted: #666a7c;
  --line: rgba(5, 10, 48, 0.11);
  --shadow: 0 28px 80px rgba(5, 10, 48, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .14;
  pointer-events: none;
  z-index: -2;
}
.page-glow--one { background: var(--gold); top: 30%; left: -360px; }
.page-glow--two { background: #7d89d9; top: 70%; right: -420px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(244, 246, 252, .96);
  border-bottom: 1px solid rgba(5, 10, 48, .07);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(5, 10, 48, .055);
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(244, 246, 252, .985);
  box-shadow: 0 14px 40px rgba(5, 10, 48, .09);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex;
  align-items: center;
  width: 174px;
  height: 62px;
  overflow: hidden;
}
.brand-logo {
  width: 174px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.025);
  filter: saturate(1.08);
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .9rem; font-weight: 700; color: var(--navy); transition: .2s ease; }
.site-header.scrolled .main-nav a { color: var(--navy); }
.main-nav a:hover { color: var(--gold); }
.main-nav .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(183,147,71,.55);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(183,147,71,.07);
}
.site-header.scrolled .main-nav .nav-cta { color: var(--navy); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }
.site-header.scrolled .nav-toggle span { background: var(--navy); }

.section-dark {
  position: relative;
  min-height: 790px;
  padding: 170px 0 95px;
  background:
    radial-gradient(circle at 78% 28%, rgba(183,147,71,.19), transparent 25%),
    radial-gradient(circle at 15% 35%, rgba(255,255,255,.07), transparent 20%),
    linear-gradient(135deg, #040829 0%, #07103d 55%, #0b1550 100%);
  color: var(--white);
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black 25%, transparent 85%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #d9dbe8; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 26px 0 24px;
  max-width: 800px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 600;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 690px; margin: 0; font-size: 1.08rem; color: #c8ccde; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.btn-gold { background: linear-gradient(135deg, #c2a15a, var(--gold)); color: #fff; box-shadow: 0 14px 35px rgba(183,147,71,.26); }
.btn-gold:hover { box-shadow: 0 18px 42px rgba(183,147,71,.34); }
.btn-ghost { border: 1px solid rgba(255,255,255,.24); color: white; background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }
.btn-full { width: 100%; border-radius: 14px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust strong { color: white; font-size: .94rem; }
.hero-trust span { color: #989fb9; font-size: .72rem; }

.hero-panel { position: relative; min-height: 525px; display: flex; align-items: center; justify-content: center; }
.hero-card {
  width: min(100%, 430px);
  min-height: 470px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(20px);
  transform: rotate(2deg);
}
.hero-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(183,147,71,.14); transform: translate(-12px,12px); z-index:-1; }
.hero-card-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .72rem; }
.mini-label { letter-spacing: .22em; color: var(--gold-light); font-weight: 800; }
.status-dot { color: #cfd3e5; display: flex; gap: 8px; align-items: center; }
.status-dot i { width: 7px; height: 7px; border-radius: 50%; background: #50cf8f; box-shadow: 0 0 0 5px rgba(80,207,143,.1); }
.hero-card-body { margin-top: 95px; }
.hero-card-kicker { color: var(--gold-light); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-card h2 { max-width: 330px; margin: 14px 0; font-size: 2rem; line-height: 1.12; }
.hero-card p { color: #bbc1d8; font-size: .9rem; }
.hero-card-bottom { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 52px; }
.hero-card-bottom span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .7rem; color: #d7dbea; }
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 235px;
  padding: 15px;
  border-radius: 18px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.floating-card > span { width: 37px; height: 37px; display:grid; place-items:center; border-radius:12px; background: rgba(183,147,71,.12); color: var(--gold); font-weight: 900; }
.floating-card div { display:flex; flex-direction:column; line-height:1.25; }
.floating-card strong { font-size: .78rem; }
.floating-card small { margin-top:4px; color:#777b8e; font-size:.65rem; }
.floating-card--one { left: -12px; top: 78px; }
.floating-card--two { right: -28px; bottom: 44px; }
.hero-line { position:absolute; left:0; right:0; bottom:0; height:1px; background:linear-gradient(90deg, transparent, rgba(183,147,71,.45), transparent); }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-strip-grid { min-height: 84px; display:flex; justify-content:space-between; align-items:center; gap:16px; color:#777b8c; font-size:.66rem; font-weight:800; letter-spacing:.13em; }
.trust-strip-grid i { width:4px; height:4px; border-radius:50%; background:var(--gold); }

.section { padding: 110px 0; }
.section-soft { background: #eef1f8; }
.section-heading { display:grid; grid-template-columns:1fr .58fr; gap:80px; align-items:end; margin-bottom:52px; }
.section-kicker { display:block; margin-bottom:14px; color:var(--gold); font-size:.72rem; font-weight:800; letter-spacing:.14em; }
.section-kicker.light { color:var(--gold-light); }
.section-heading h2, .profiles-copy h2, .coverage-card h2, .contact-copy h2 {
  margin:0;
  font-family:"Playfair Display", serif;
  color:var(--navy);
  font-size:clamp(2.3rem,4vw,4.2rem);
  line-height:1.02;
  letter-spacing:-.035em;
}
.section-heading p { margin:0; color:var(--muted); }

.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card {
  position:relative;
  min-height:390px;
  padding:30px;
  background:#fff;
  border:1px solid rgba(5,10,48,.08);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:.28s ease;
}
.service-card::after { content:""; position:absolute; right:-70px; bottom:-70px; width:160px; height:160px; border-radius:50%; background:rgba(183,147,71,.08); transition:.28s; }
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color:rgba(183,147,71,.2); }
.service-card:hover::after { transform:scale(1.35); }
.service-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:16px; background:rgba(5,10,48,.055); color:var(--navy); }
.service-icon svg { width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:1.6; }
.service-number { position:absolute; top:30px; right:30px; color:#bec1cb; font-size:.68rem; font-weight:800; letter-spacing:.1em; }
.service-card h3 { margin:74px 0 12px; color:var(--navy); font-size:1.45rem; }
.service-card p { color:var(--muted); font-size:.9rem; }
.service-card a { position:absolute; left:30px; bottom:28px; text-decoration:none; color:var(--navy); font-size:.82rem; font-weight:800; }
.service-card a span { color:var(--gold); margin-left:6px; }

.profiles-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; align-items:start; }
.profiles-copy { position:sticky; top:130px; }
.profiles-copy p { color:var(--muted); }
.profile-note { display:flex; gap:14px; align-items:flex-start; margin-top:32px; padding:18px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.55); }
.profile-note-icon { flex:0 0 30px; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#fff; font-size:.75rem; font-weight:900; }
.profile-note p { margin:0; font-size:.78rem; }
.profile-list { background:#fff; border-radius:var(--radius-lg); padding:12px 28px; box-shadow:0 25px 65px rgba(5,10,48,.06); }
.profile-item { display:grid; grid-template-columns:50px 1fr; gap:20px; align-items:center; padding:22px 0; border-bottom:1px solid var(--line); }
.profile-item:last-child { border-bottom:0; }
.profile-item > span { color:var(--gold); font-size:.7rem; font-weight:900; letter-spacing:.1em; }
.profile-item div { display:flex; flex-direction:column; gap:4px; }
.profile-item strong { color:var(--navy); }
.profile-item small { color:var(--muted); }

.requirements-section { background:#fff; }
.requirement-tabs { display:grid; grid-template-columns:280px 1fr; min-height:440px; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 24px 70px rgba(5,10,48,.06); }
.tab-buttons { background:var(--navy); padding:20px; display:flex; flex-direction:column; gap:8px; }
.tab-btn { width:100%; border:0; text-align:left; padding:14px 16px; border-radius:12px; color:#bfc5db; background:transparent; cursor:pointer; font-size:.82rem; font-weight:700; transition:.2s; }
.tab-btn:hover, .tab-btn.active { color:#fff; background:rgba(255,255,255,.09); }
.tab-panels { position:relative; padding:48px 54px; }
.tab-panel { display:none; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:start; animation:fadePanel .35s ease; }
.tab-panel.active { display:grid; }
@keyframes fadePanel { from {opacity:0; transform:translateY(8px)} to {opacity:1; transform:none} }
.tab-badge { display:inline-block; padding:7px 10px; border-radius:999px; background:rgba(183,147,71,.12); color:#8c6f30; font-size:.65rem; font-weight:900; letter-spacing:.08em; }
.tab-intro h3 { margin:18px 0 8px; color:var(--navy); font-size:1.6rem; }
.tab-intro p { margin:0; color:var(--muted); font-size:.88rem; }
.check-list { list-style:none; padding:0; margin:5px 0 0; }
.check-list li { display:flex; align-items:center; gap:13px; padding:15px 0; border-bottom:1px solid var(--line); color:#34384b; }
.check-list li:last-child { border-bottom:0; }
.check-list span { flex:0 0 28px; width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:rgba(183,147,71,.12); color:var(--gold); font-weight:900; }

.coverage-section { background:var(--navy); color:#fff; }
.coverage-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.coverage-card h2 { color:#fff; }
.coverage-card p { color:#b7bed7; max-width:570px; }
.text-link { display:inline-flex; gap:8px; margin-top:15px; text-decoration:none; color:var(--gold-light); font-weight:800; font-size:.88rem; }
.coverage-points { border-top:1px solid rgba(255,255,255,.15); }
.coverage-point { display:grid; grid-template-columns:50px 1fr; gap:22px; padding:25px 0; border-bottom:1px solid rgba(255,255,255,.15); }
.coverage-point > span { color:var(--gold-light); font-size:.7rem; font-weight:900; }
.coverage-point div { display:flex; flex-direction:column; gap:5px; }
.coverage-point strong { color:#fff; }
.coverage-point small { color:#929ab6; }

.contact-section { background:linear-gradient(180deg,#f4f6fc,#eef1f7); }
.contact-grid { display:grid; grid-template-columns:1fr .85fr; gap:90px; align-items:start; }
.contact-copy p { max-width:600px; color:var(--muted); }
.contact-details { margin-top:42px; border-top:1px solid var(--line); }
.contact-details > * { display:flex; flex-direction:column; gap:4px; padding:18px 0; border-bottom:1px solid var(--line); text-decoration:none; }
.contact-details span { color:var(--muted); font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; }
.contact-details strong { color:var(--navy); font-size:.95rem; }
.lead-form { padding:32px; border-radius:26px; background:#fff; box-shadow:var(--shadow); border:1px solid rgba(5,10,48,.06); }
.form-heading { margin-bottom:24px; }
.form-heading span { color:var(--gold); font-size:.68rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }
.form-heading h3 { margin:6px 0 0; color:var(--navy); font-size:1.45rem; }
.lead-form label { display:block; margin-bottom:15px; }
.lead-form label > span { display:block; margin-bottom:7px; color:#555a6c; font-size:.74rem; font-weight:800; }
.lead-form input, .lead-form select { width:100%; height:50px; padding:0 14px; border:1px solid #dfe2eb; border-radius:12px; background:#fafbfe; color:var(--navy); outline:none; transition:.2s; }
.lead-form input:focus, .lead-form select:focus { border-color:rgba(183,147,71,.75); box-shadow:0 0 0 4px rgba(183,147,71,.1); }
.form-privacy { margin:12px 0 0; color:#8a8e9e; text-align:center; font-size:.65rem; }

.site-footer { padding:60px 0 30px; background:#03061f; color:#fff; }
.footer-top { display:flex; justify-content:space-between; align-items:center; gap:30px; padding-bottom:35px; border-bottom:1px solid rgba(255,255,255,.11); }
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.footer-wordmark strong {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -.025em;
}
.footer-wordmark span {
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .06em;
}
.footer-links { display:flex; flex-wrap:wrap; gap:28px; }
.footer-links a { text-decoration:none; color:#c6cbdd; font-size:.8rem; }
.footer-bottom { display:grid; grid-template-columns:.45fr 1fr; gap:60px; padding-top:28px; color:#777f9d; font-size:.68rem; }
.footer-bottom p { margin:0; }
.legal-note { text-align:right; }

.whatsapp-float { position:fixed; right:22px; bottom:22px; z-index:1000; width:58px; height:58px; display:grid; place-items:center; border-radius:50%; background:#25d366; color:#fff; box-shadow:0 12px 28px rgba(37,211,102,.28); transition:.2s; }
.whatsapp-float:hover { transform:translateY(-4px) scale(1.03); }
.whatsapp-float svg { width:30px; height:30px; fill:currentColor; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.22s; }

@media (max-width: 980px) {
  .main-nav { position:absolute; top:74px; left:20px; right:20px; flex-direction:column; align-items:stretch; gap:0; padding:16px; border-radius:18px; background:rgba(5,10,48,.97); box-shadow:0 25px 50px rgba(0,0,0,.25); opacity:0; pointer-events:none; transform:translateY(-10px); transition:.25s; }
  .main-nav.open { opacity:1; pointer-events:auto; transform:none; }
  .main-nav a, .site-header.scrolled .main-nav a { color:#fff; padding:12px; }
  .main-nav .nav-cta, .site-header.scrolled .main-nav .nav-cta { margin-top:8px; color:var(--gold-light); text-align:center; }
  .nav-toggle { display:block; }
  .hero-grid, .profiles-grid, .coverage-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-panel { min-height:500px; }
  .hero-grid { gap:45px; }
  .service-grid { grid-template-columns:1fr; }
  .section-heading { grid-template-columns:1fr; gap:18px; }
  .profiles-copy { position:static; }
  .requirement-tabs { grid-template-columns:1fr; }
  .tab-buttons { flex-direction:row; overflow-x:auto; }
  .tab-btn { flex:0 0 auto; width:auto; white-space:nowrap; }
  .tab-panel { grid-template-columns:1fr; gap:25px; }
  .footer-bottom { grid-template-columns:1fr; gap:14px; }
  .legal-note { text-align:left; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .site-header { padding:12px 0; }
  .brand { width:142px; height:52px; }
  .brand-logo { width:142px; max-height:52px; }
  .section-dark { min-height:auto; padding:125px 0 70px; }
  .hero h1 { font-size:clamp(2.75rem,13vw,4.2rem); }
  .hero-lead { font-size:.96rem; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .hero-trust { gap:18px 28px; }
  .hero-panel { min-height:430px; margin-top:10px; }
  .hero-card { min-height:390px; padding:22px; }
  .hero-card-body { margin-top:70px; }
  .hero-card h2 { font-size:1.6rem; }
  .floating-card { width:205px; }
  .floating-card--one { left:-8px; top:45px; }
  .floating-card--two { right:-5px; bottom:15px; }
  .trust-strip-grid { min-height:74px; overflow:hidden; justify-content:flex-start; gap:18px; }
  .trust-strip-grid span:nth-of-type(n+3), .trust-strip-grid i:nth-of-type(n+3) { display:none; }
  .section { padding:78px 0; }
  .section-heading h2, .profiles-copy h2, .coverage-card h2, .contact-copy h2 { font-size:2.65rem; }
  .service-card { min-height:350px; }
  .profiles-grid, .coverage-grid, .contact-grid { gap:45px; }
  .profile-list { padding:8px 20px; }
  .tab-buttons { padding:12px; }
  .tab-panels { padding:28px 22px; }
  .footer-top { align-items:flex-start; flex-direction:column; }
  .footer-links { gap:15px 22px; }
  .whatsapp-float { width:54px; height:54px; right:16px; bottom:16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}


/* Finvera header polish: el fondo del JPG se integra con el header claro */
.site-header .brand::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
@media (max-width: 980px) {
  .nav-toggle span { background: var(--navy); }
}

/* =========================================================
   FINVERA — MOBILE POLISH
   Ajustes específicos para teléfono sin tocar el desktop.
   ========================================================= */

@media (max-width: 760px) {
  html, body { width: 100%; overflow-x: hidden; }

  .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  /* Header compacto y limpio */
  .site-header,
  .site-header.scrolled {
    padding: 9px 0;
  }
  .nav-wrap { gap: 12px; }
  .brand {
    width: 128px;
    height: 48px;
    flex: 0 0 128px;
  }
  .brand-logo {
    width: 128px;
    max-height: 48px;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    border-radius: 12px;
    background: rgba(5,10,48,.055);
  }
  .nav-toggle span { width: 22px; margin: 3px 0; }
  .main-nav {
    top: 70px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
  }
  .main-nav a,
  .site-header.scrolled .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  /* Hero: una sola columna y sin elementos flotantes encimados */
  .section-dark {
    min-height: 0;
    padding: 106px 0 54px;
    background:
      radial-gradient(circle at 85% 13%, rgba(183,147,71,.20), transparent 24%),
      radial-gradient(circle at 0% 35%, rgba(255,255,255,.06), transparent 22%),
      linear-gradient(150deg, #040829 0%, #07103d 62%, #0b1550 100%);
  }
  .section-dark::before { background-size: 36px 36px; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .eyebrow {
    max-width: 100%;
    align-items: flex-start;
    font-size: .66rem;
    line-height: 1.5;
    letter-spacing: .075em;
  }
  .eyebrow span { flex: 0 0 26px; margin-top: .48em; }
  .hero h1 {
    margin: 20px 0 18px;
    max-width: 100%;
    font-size: clamp(2.45rem, 11.7vw, 3.45rem);
    line-height: 1.01;
    letter-spacing: -.04em;
  }
  .hero-lead {
    max-width: 100%;
    font-size: .95rem;
    line-height: 1.7;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }
  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
  }
  .hero-trust div { min-width: 0; }
  .hero-trust strong { font-size: .78rem; line-height: 1.25; }
  .hero-trust span { font-size: .61rem; line-height: 1.35; }

  .hero-panel {
    min-height: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-card {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
    transform: none;
    backdrop-filter: blur(14px);
  }
  .hero-card::before { transform: translate(-6px, 6px); }
  .hero-card-top {
    gap: 10px;
    font-size: .65rem;
  }
  .status-dot { gap: 6px; }
  .hero-card-body { margin-top: 42px; }
  .hero-card-kicker { font-size: .67rem; }
  .hero-card h2 {
    max-width: 100%;
    margin: 12px 0;
    font-size: 1.55rem;
    line-height: 1.18;
  }
  .hero-card p { font-size: .84rem; line-height: 1.65; }
  .hero-card-bottom { margin-top: 26px; }
  .hero-card-bottom span { font-size: .64rem; }

  .floating-card,
  .floating-card--one,
  .floating-card--two {
    position: static;
    width: 100%;
    transform: none;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.16);
  }
  .floating-card > span {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  /* Franja de confianza: 2x2, nada cortado */
  .trust-strip-grid {
    min-height: 0;
    padding: 17px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    overflow: visible;
  }
  .trust-strip-grid span,
  .trust-strip-grid span:nth-of-type(n+3) {
    display: block !important;
    font-size: .58rem;
    line-height: 1.35;
    letter-spacing: .08em;
  }
  .trust-strip-grid i { display: none !important; }

  /* Ritmo vertical de landing */
  .section { padding: 66px 0; }
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .section-kicker { margin-bottom: 9px; font-size: .65rem; }
  .section-heading h2,
  .profiles-copy h2,
  .coverage-card h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: 1.04;
  }
  .section-heading p,
  .profiles-copy > p,
  .coverage-card p,
  .contact-copy > p { font-size: .9rem; }

  /* Servicios: tarjetas más compactas y CTA dentro del flujo */
  .service-grid { gap: 14px; }
  .service-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }
  .service-icon svg { width: 30px; height: 30px; }
  .service-card h3 { margin: 34px 0 10px; font-size: 1.32rem; }
  .service-card p { font-size: .86rem; }
  .service-card a {
    position: static;
    display: inline-flex;
    margin-top: 22px;
    font-size: .78rem;
  }

  /* Perfiles */
  .profiles-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .profile-note { margin-top: 24px; padding: 15px; }
  .profile-list {
    padding: 5px 17px;
    border-radius: 22px;
  }
  .profile-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .profile-item > span { font-size: .62rem; }
  .profile-item strong { font-size: .9rem; line-height: 1.35; }
  .profile-item small { font-size: .72rem; line-height: 1.45; }

  /* Requisitos: tabs swipeables arriba, contenido debajo */
  .requirement-tabs {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }
  .tab-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tab-buttons::-webkit-scrollbar { display: none; }
  .tab-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 11px 13px;
    white-space: nowrap;
    font-size: .72rem;
  }
  .tab-panels { padding: 26px 19px; }
  .tab-panel,
  .tab-panel.active {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tab-intro h3 { font-size: 1.38rem; }
  .tab-intro p { font-size: .82rem; }
  .check-list li {
    align-items: flex-start;
    padding: 13px 0;
    font-size: .84rem;
    line-height: 1.5;
  }
  .check-list span {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    margin-top: 1px;
  }

  /* Cobertura */
  .coverage-point {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  .coverage-point strong { font-size: .9rem; }
  .coverage-point small { font-size: .72rem; }

  /* Contacto y formulario */
  .contact-details { margin-top: 28px; }
  .lead-form {
    padding: 22px;
    border-radius: 20px;
  }
  .lead-form input,
  .lead-form select { height: 52px; }

  /* Footer */
  .site-footer { padding: 46px 0 24px; }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
    width: 100%;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }
  .legal-note { text-align: left; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .brand { width: 118px; flex-basis: 118px; }
  .brand-logo { width: 118px; }
  .hero h1 { font-size: 2.28rem; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .hero-trust div:last-child { grid-column: 1 / -1; }
  .hero-card-top { align-items: flex-start; flex-direction: column; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
