/* ── FONT FALLBACK — métricas ajustadas para eliminar CLS ── */
@font-face {
  font-family: 'Plus Jakarta Sans Fallback';
  src: local('Arial');
  size-adjust: 102.3%;
  ascent-override: 100%;
  descent-override: 20%;
  line-gap-override: 0%;
}

/* ── VARIABLES ── */
:root {
  --navy: #0d1f3c; --navy2: #152a4a;
  --cyan: #00b4d8; --cyan2: #48cae4; --cyan-text: #006d8f;
  --green: #06d6a0; --orange: #fb8500; --purple: #7b2d8b; --red: #ef4444;
  --bg: #fff; --bg2: #f4f7fb; --bg3: #eaeff6;
  --border: #e4eaf2;
  --text: #1a2535; --text2: #3d4f63; --text3: #556070;
  --font: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --r: 12px; --r2: 8px;
  --max: 1200px; --max-narrow: 900px;
  --nav-h: 64px;
}

/* ── SKIP LINK (WCAG 2.1 Level A) ── */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  background: var(--navy); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 0 0 var(--r2) 0; z-index: 10000;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed; left: 0; top: 0; width: auto; height: auto; overflow: visible;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { line-height: 1.2; color: var(--navy); font-weight: 800; }
p { color: var(--text2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: var(--r2);
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s; white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,31,60,.2); }
.btn-cyan { background: var(--cyan); color: var(--navy); font-weight: 700; }
.btn-cyan:hover { background: var(--cyan2); transform: translateY(-1px); }
.btn-rose { background: #e11d48; color: #fff; font-weight: 700; }
.btn-rose:hover { background: #be123c; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--text3); background: var(--bg2); }
.btn-ghost-white { background: transparent; border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.btn-ghost-white:hover { border-color: white; color: white; }

/* ── BADGES ── */
.badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.badge-cyan  { background: rgba(0,180,216,.1); color: #006d8f; }
.badge-cyan-dark { background: rgba(0,180,216,.15); color: #7dd3e8; border: 1px solid rgba(0,180,216,.3); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-orange{ background: #fff7ed; color: #c2410c; }
.badge-purple{ background: #f5f3ff; color: #7c3aed; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,31,60,.08); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 5%; display: flex; align-items: center; gap: 8px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; display: block; max-width: none; }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 16px; }
.nav-link {
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  padding: 7px 10px; border-radius: var(--r2);
  display: flex; align-items: center; gap: 4px;
  transition: transform .15s, box-shadow .15s; white-space: nowrap;
}
.nav-link:hover { background: var(--bg2); color: var(--text); }
.nav-chevron { font-size: 10px; opacity: .5; }
.nav-badge {
  font-size: 10px; font-weight: 700; background: #dcfce7; color: #15803d;
  padding: 2px 7px; border-radius: 20px; margin-left: 4px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--text2); white-space: nowrap; }
.nav-phone:hover { color: var(--navy); }

/* NAV DROPDOWN */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: -20px;
  padding-top: 8px;
  display: none; z-index: 300; min-width: 680px;
  background: transparent;
}
.nav-dropdown-grid {
  background: white; border: 1px solid var(--border); border-radius: var(--r) var(--r) 0 0;
  box-shadow: 0 12px 40px rgba(13,31,60,.12);
  padding: 16px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
}
.nav-dropdown-footer {
  background: var(--bg2); border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text3);
}
.nav-dropdown-footer a { font-size: 12px; font-weight: 700; color: var(--cyan-text); }
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dd-code {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  flex-shrink: 0;
}
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-heading { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--text3); padding: 6px 10px 4px; }
.nav-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--r2);
}
.nav-dd-item:hover { background: var(--bg2); }
.nav-dd-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.nav-dd-name { font-size: 13px; font-weight: 700; color: var(--text); display: flex; flex-direction: column; gap: 1px; }
.nav-dd-name small { font-size: 11px; font-weight: 400; color: var(--text3); }
.nav-dd-more { font-size: 13px; font-weight: 700; color: var(--cyan-text); padding: 10px; }

/* MOBILE */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: white; z-index: 190; padding: 20px; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: var(--text); padding: 12px 16px; border-radius: var(--r2); }
.mobile-menu a:hover { background: var(--bg2); }
.mobile-section-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--text3); padding: 8px 16px 2px; }
.mobile-sep { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-cta { background: var(--navy) !important; color: white !important; text-align: center; margin-top: 8px; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--border); padding-top: var(--nav-h); }
.breadcrumb-inner { max-width: var(--max); margin: 0 auto; padding: 12px 5%; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text3); }
.breadcrumb-inner a { color: var(--cyan-text); }
.breadcrumb-inner a:hover { color: var(--cyan-text); }

/* ── SECTIONS ── */
.section { padding: 80px 5%; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.product-img-wrap { border-radius: var(--r); overflow: hidden; }
.product-img-wrap img { width: 100%; height: auto; aspect-ratio: 8/5; object-fit: cover; display: block; border-radius: var(--r); box-shadow: 0 8px 32px rgba(13,31,60,.12); }
.section-alt { background: var(--bg2); }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan-text); background: rgba(0,180,216,.08); border: 1px solid rgba(0,180,216,.15); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.section-tag-dark { color: #7dd3e8; background: rgba(0,180,216,.15); border-color: rgba(0,180,216,.3); }
.section-title { font-size: clamp(24px,2.5vw,36px); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-title em { font-style: normal; color: var(--cyan-text); }
.section-sub { font-size: 16px; color: var(--text2); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── HERO ── */
.hero { padding-top: var(--nav-h); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 80px 5%; display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,180,216,.08); border: 1px solid rgba(0,180,216,.2); color: var(--cyan-text); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(32px,3.5vw,52px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--cyan-text); }
.hero-sub { font-size: 17px; color: var(--text2); line-height: 1.75; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text2); font-weight: 500; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 5%; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.tb-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text2); }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cards-grid-4 { grid-template-columns: repeat(4,1fr); }
.card { background: white; border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px; transition: box-shadow .25s, transform .25s; position: relative; overflow: hidden; }
.card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--cyan2)); transform: scaleX(0); transform-origin: left; transition: transform .3s; pointer-events: none; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,31,60,.1); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.card-more { font-size: 13px; font-weight: 700; color: var(--cyan-text); }

/* ── PRODUCT PAGE ── */
.product-hero { background: var(--navy); padding: calc(var(--nav-h) + 64px) 5% 64px; }
.product-hero-inner { max-width: var(--max); margin: 0 auto; }
.product-icon-wrap { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.product-badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.product-title { font-size: clamp(28px,3vw,44px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 14px; }
.product-desc { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 620px; margin-bottom: 28px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-content { max-width: var(--max); margin: 0 auto; padding: 64px 5%; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 72px 5%; text-align: center; }
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(22px,2.5vw,34px); font-weight: 800; color: white; margin-bottom: 10px; }
.cta-band p { font-size: 16px; color: #b8c4d0; margin-bottom: 28px; }
.cta-band p strong, .cta-band p em { color: #fff; }
.cta-band-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── BLOG ── */
.blog-header { background: var(--navy); padding: calc(var(--nav-h) + 48px) 5% 48px; }
.blog-header-inner { max-width: var(--max); margin: 0 auto; }
.blog-header h1 { font-size: clamp(28px,3vw,42px); font-weight: 800; color: white; margin-bottom: 10px; }
.blog-header p { font-size: 16px; color: rgba(255,255,255,.6); max-width: 520px; }
.blog-cats { padding: 16px 5%; background: var(--bg2); border-bottom: 1px solid var(--border); display: flex; gap: 6px; flex-wrap: wrap; }
.blog-cat-btn { font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: var(--r2); text-decoration: none; color: var(--text2); border: 1.5px solid var(--border); background: white; transition: transform .15s, box-shadow .15s; }
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.blog-inner { max-width: var(--max); margin: 0 auto; padding: 48px 5%; }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post-card { background: white; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; text-decoration: none; color: inherit; display: block; transition: box-shadow .25s, transform .25s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,31,60,.1); border-color: transparent; }
.post-card-featured { grid-column: 1/-1; }
.post-card-body { padding: 24px; }
.post-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.post-card-cat { font-size: 11px; font-weight: 700; background: rgba(0,180,216,.1); color: #006d8f; padding: 3px 9px; border-radius: 4px; }
.post-card-date { font-size: 12px; color: var(--text3); }
.post-card-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.post-card-featured .post-card-title { font-size: 20px; }
.post-card-desc { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 16px; }
.post-card-more { font-size: 13px; font-weight: 700; color: var(--cyan-text); }

/* POST PAGE */
.post-header { background: var(--navy); padding: calc(var(--nav-h) + 48px) 5% 48px; }
.post-header-inner { max-width: var(--max); margin: 0 auto; }
.post-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.post-cat-badge { font-size: 12px; font-weight: 700; background: rgba(0,180,216,.15); color: var(--cyan-text); border: 1px solid rgba(0,180,216,.2); padding: 4px 12px; border-radius: 20px; }
.post-date { font-size: 13px; color: rgba(255,255,255,.5); }
.post-updated { font-size: 12px; color: rgba(255,255,255,.60); }
.post-header h1 { font-size: clamp(24px,3vw,40px); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 14px; }
.post-lead { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 680px; margin-bottom: 16px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.post-tag { font-size: 11px; color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); padding: 3px 10px; border-radius: 4px; }

.post-body { max-width: var(--max); margin: 0 auto; padding: 48px 5%; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.post-content { min-width: 0; }
.post-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1.5px solid var(--border); }
.post-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.post-content p { font-size: 16px; color: var(--text2); line-height: 1.85; margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 20px; }
.post-content li { font-size: 16px; color: var(--text2); line-height: 1.75; margin-bottom: 6px; }
.post-content strong { color: var(--text); font-weight: 700; }
.post-content a { color: var(--cyan-text); font-weight: 600; }
.post-content a:hover { text-decoration: underline; }
.post-content blockquote { background: rgba(0,180,216,.06); border-left: 3px solid var(--cyan); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.post-content blockquote p { margin: 0; }
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 15px; }
.post-content th { background: var(--bg2); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--navy); border: 1px solid var(--border); }
.post-content td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text2); }
.post-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.post-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 16px; }
.sidebar-cta-card { background: var(--navy); border-radius: var(--r); padding: 22px; }
.sidebar-cta-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 16px; }
.sidebar-tags-card, .sidebar-products-card { background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r); padding: 18px; }
.sidebar-tags-title { font-size: 11px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.sidebar-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag { font-size: 12px; color: var(--text2); background: white; border: 1px solid var(--border); padding: 4px 10px; border-radius: 6px; }
.sidebar-product-link { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); padding: 8px 10px; border-radius: var(--r2); background: white; border: 1px solid var(--border); margin-bottom: 6px; transition: transform .15s, box-shadow .15s; }
.sidebar-product-link:hover { border-color: var(--cyan); color: var(--cyan); }
.post-cta-band { background: var(--navy); padding: 56px 5%; text-align: center; }
.post-cta-band h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.post-cta-band p { font-size: 15px; color: #b8c4d0; margin-bottom: 22px; }

/* ── FOOTER ── */
.footer { background: #080f1d; padding: 56px 5% 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.60); line-height: 1.75; margin: 12px 0 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 13px; color: #7dd3e8; }
.footer-col h3 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-col .footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col .footer-links a { font-size: 13px; color: rgba(255,255,255,.60); }
.footer-col .footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom-inner { max-width: var(--max); margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,.6); }
.footer-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pill { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); padding: 3px 10px; border-radius: 4px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.feature { display: flex; flex-direction: column; background: white; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.feature:hover { box-shadow: 0 8px 32px rgba(11,61,145,.10); border-color: var(--cyan); transform: translateY(-3px); }
.feature-icon { background-color: #eff6ff; background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%); border-bottom: 1px solid var(--border); padding: 16px 20px 12px; display: flex; align-items: center; justify-content: center; height: 180px; }
.feature-icon svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.feature-body { padding: 14px 16px 16px; flex: 1; }
.feature h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.feature p { font-size: 13px; color: var(--text2); line-height: 1.6; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card-featured { grid-column: 1; }
  .post-body { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .trust-bar { gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}

/* ── Video sections ─────────────────────────────────────────── */
.video-section {
  padding: 80px 5%;
}
.video-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.video-full {
  width: 100%;
  border-radius: var(--r);
  display: block;
  background: #0d1f3c;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(13,31,60,.2);
}
.video-wrap {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,31,60,.15);
}
.video-hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,31,60,.25);
}
.video-hero video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #0d1f3c;
}

/* ═══════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy);
  color: #e2e8f0;
  border-top: 2px solid var(--cyan);
  box-shadow: 0 -4px 32px rgba(0,0,0,.25);
  transform: translateY(0);
  transition: transform .35s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 5%;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 220px; }
.cookie-banner-text strong { display: block; font-size: 15px; color: #fff; margin-bottom: 4px; }
.cookie-banner-text p { font-size: 13px; line-height: 1.6; color: #b0bec5; margin: 0; }
.cookie-banner-text a { color: #7dd3e8; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r2);
  cursor: pointer;
  border: none;
  transition: all .15s;
  white-space: nowrap;
}
.cookie-btn-ghost {
  background: transparent;
  color: #90a4ae;
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.cookie-btn-accept {
  background: var(--cyan);
  color: #0d1f3c;
}
.cookie-btn-accept:hover { filter: brightness(1.1); }

/* Modal configuración */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(13,31,60,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-inner {
  background: #fff;
  border-radius: var(--r);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(13,31,60,.3);
  overflow: hidden;
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cookie-modal-header h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0; }
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text3);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.cookie-modal-close:hover { color: var(--navy); }
.cookie-modal-body { padding: 8px 24px; }
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-row > div { flex: 1; }
.cookie-toggle-row strong { font-size: 14px; color: var(--navy); display: block; margin-bottom: 3px; }
.cookie-toggle-row p { font-size: 12px; color: var(--text3); margin: 0; line-height: 1.5; }
.cookie-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  text-align: right;
}

/* Toggle switch */
.toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cfd8dc;
  border-radius: 24px;
  transition: .2s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle input:checked + .toggle-slider { background: var(--cyan); }
.toggle input:checked + .toggle-slider:before { transform: translateX(20px); }
.toggle-disabled .toggle-slider { opacity: .5; cursor: not-allowed; }

/* Botón re-abrir (esquina inferior izquierda) */
.cookie-reopen {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 8900;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,31,60,.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  opacity: .7;
}
.cookie-reopen:hover { opacity: 1; transform: scale(1.1); }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(-8px); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r2);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: all .2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #fff;
}

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 5%;
}
.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 13px;
  color: var(--text3);
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb-inner a { color: var(--cyan-text); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 48px;
}
.pricing-toggle-label { font-size: 14px; font-weight: 500; color: var(--text3); }
.pricing-toggle-label.active { color: var(--text1); }
.pricing-toggle {
  width: 48px; height: 26px;
  background: var(--cyan);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
}
.pricing-toggle::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .2s;
}
.pricing-toggle.monthly::after { transform: translateX(0); }
.pricing-toggle:not(.monthly)::after { transform: translateX(22px); }
.pricing-save-badge {
  background: var(--cyan);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.pricing-card--featured {
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(0,180,200,.15);
}
.pricing-featured-badge {
  background: var(--cyan);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card-top {
  padding: 28px 24px 20px;
  min-height: 160px;
}
.pricing-card-top--featured { background: var(--navy); }

.pricing-card-price {
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-price--featured {
  background: var(--navy);
  border-bottom-color: rgba(255,255,255,.1);
}

.pricing-plan-icon { font-size: 28px; margin-bottom: 8px; }
.pricing-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text1);
  margin-bottom: 6px;
}
.pricing-card-top--featured .pricing-plan-name { color: white; }
.pricing-plan-tagline {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.5;
  margin-bottom: 0;
}
.pricing-card-top--featured .pricing-plan-tagline { color: rgba(255,255,255,.7); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2px;
}
.pricing-currency { font-size: 20px; font-weight: 600; color: var(--text1); }
.pricing-amount { font-size: 48px; font-weight: 800; color: var(--text1); line-height: 1; }
.pricing-period { font-size: 16px; color: var(--text3); }
.pricing-card-price--featured .pricing-currency,
.pricing-card-price--featured .pricing-amount,
.pricing-card-price--featured .pricing-period { color: white; }
.pricing-price-note { font-size: 12px; color: var(--text3); margin-bottom: 20px; }
.pricing-card-price--featured .pricing-price-note { color: rgba(255,255,255,.5); }

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  align-self: end;
}

.pricing-card-body { padding: 20px 24px 24px; flex: 1; }
.pricing-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text3);
  margin: 18px 0 8px;
}
.pricing-group-label:first-child { margin-top: 0; }
.pricing-feature {
  font-size: 13.5px;
  color: var(--text2);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-feature::before {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 13px;
}
.pricing-feature.check::before { content: '✓'; color: var(--cyan-text); font-weight: 700; }
.pricing-feature.none::before { content: '✕'; color: var(--text3); }
.pricing-feature.addon::before { content: '+'; color: var(--cyan-text); font-weight: 700; }
.pricing-feature.addon { color: var(--text3); font-style: italic; }
.pricing-badge {
  background: var(--bg2);
  color: var(--text3);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
  vertical-align: middle;
}

/* Add-ons */
.pricing-addons {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
}
.pricing-addons-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pricing-addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}
@media (max-width: 900px) { .pricing-addons-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .pricing-addons-grid { grid-template-columns: 1fr; } }
.pricing-addon-item {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pricing-addon-item strong { color: var(--text); font-weight: 700; }
.pricing-addon-item::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cyan-text);
  font-weight: 700;
}

/* ── HELP CENTER ────────────────────────────────── */
.help-article-content ol { padding-left: 20px; margin: 12px 0; }
.help-article-content ol li { margin-bottom: 8px; }
.help-article-content p { margin-bottom: 10px; }
.help-tip {
  background: rgba(0,180,216,.06);
  border-left: 3px solid var(--cyan);
  padding: 12px 16px;
  border-radius: 0 var(--r2) var(--r2) 0;
  font-size: 13px;
  color: var(--text2);
  margin-top: 12px;
  line-height: 1.6;
}
#help-search:focus { border-color: var(--cyan); }
details summary::-webkit-details-marker { display: none; }
