:root {
  --navy: #0B1F3A;
  --navy-2: #102b4f;
  --red: #E11B22;
  --red-dark: #b8141a;
  --blue: #1F6FEB;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --ink: #16263d;
  --muted: #5b6b82;
  --line: #e4eaf2;
  --radius: 16px;
  --shadow: 0 18px 50px -18px rgba(11, 31, 58, .28);
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(225, 27, 34, .6); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-mark { display: grid; place-items: center; color: var(--red); }
.brand-text { font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.brand-text span { color: var(--red); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; gap: 10px; }

/* Hero */
.hero { background: radial-gradient(1200px 600px at 80% -10%, #eaf1ff 0%, transparent 60%), var(--bg); padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--red); background: #fde9ea;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; margin-bottom: 18px; }
.accent { color: var(--red); }
.lead { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-points { list-style: none; display: flex; flex-direction: column; gap: 8px; color: var(--ink); font-weight: 500; }
.hero-points li { font-size: 15px; }

/* Hero visual */
.hero-visual { position: relative; }
.mock-card { background: var(--navy); color: #fff; border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.mock-head { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.08); }
.mock-head .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.mock-title { margin-left: 10px; font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }
.mock-body { padding: 28px 24px 26px; text-align: center; }
.clock { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.clock span { color: var(--red); animation: blink 1.4s steps(1) infinite; }
@keyframes blink { 50% { opacity: .25; } }
.clock-label { color: rgba(255,255,255,.6); font-size: 13px; margin: 6px 0 18px; }
.mock-btn { background: var(--red); color: #fff; border: none; border-radius: 999px; padding: 11px 22px; font-weight: 600; font-size: 14px; cursor: default; }
.mock-rows { margin-top: 22px; text-align: left; display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; }
.mrow { display: flex; justify-content: space-between; padding: 12px 16px; background: rgba(255,255,255,.03); font-size: 14px; }
.mrow span { color: rgba(255,255,255,.65); }
.mock-badge {
  position: absolute; right: -8px; bottom: -16px;
  background: #fff; color: var(--blue); font-weight: 600; font-size: 14px;
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--line);
}

/* Trust */
.trust { border-block: 1px solid var(--line); background: var(--bg-alt); }
.trust-inner { padding: 18px 0; text-align: center; color: var(--muted); font-size: 15px; }
.trust strong { color: var(--navy); }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 18px; }

/* Grid + cards */
.grid { display: grid; gap: 22px; }
.features { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Editions */
.editions { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan {
  position: relative; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column;
}
.plan h3 { font-size: 24px; margin-bottom: 4px; }
.plan-tag { color: var(--red); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.plan > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.plan ul li { position: relative; padding-left: 26px; font-size: 15px; font-weight: 500; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.plan-featured { background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow); }
.plan-featured h3, .plan-featured > p { color: #fff; }
.plan-featured .plan-tag { color: #ff8c91; }
.plan-featured ul li { color: rgba(255,255,255,.92); }
.plan-badge {
  position: absolute; top: -13px; right: 24px; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: .03em;
}

/* Integration */
.integration { overflow: hidden; }
.integ-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.integ-copy h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 18px; }
.integ-copy > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px;
  background: #e7f0ff; color: var(--blue); border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
}
.integ-flow { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.flow-node {
  width: 100%; max-width: 320px; text-align: center; padding: 18px; border-radius: 14px;
  background: var(--bg); border: 1px solid var(--line); font-weight: 600; box-shadow: var(--shadow);
}
.flow-cloud { background: var(--red); color: #fff; border-color: var(--red); }
.flow-bc { background: var(--navy); color: #fff; border-color: var(--navy); }
.flow-arrow { color: var(--muted); font-size: 14px; font-weight: 600; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 80px 0; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-inner > p { color: rgba(255,255,255,.78); font-size: 18px; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.cta .btn-ghost:hover { border-color: #fff; }
.cta-foot { margin-top: 22px; color: rgba(255,255,255,.7); font-size: 15px; }
.cta-foot a { color: #fff; font-weight: 600; }

/* Footer */
.site-footer { background: #07172c; color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand .brand-text { color: #fff; font-size: 22px; font-weight: 800; }
.footer-brand p { margin-top: 12px; font-size: 14px; max-width: 280px; }
.footer-by { margin-top: 16px !important; }
.footer-by a { color: #fff; font-weight: 600; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

/* Legal / help pages */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 72px; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 28px; }
.legal .back:hover { color: var(--navy); }
.legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; margin: 34px 0 10px; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; }
.legal p, .legal li { color: #34435a; font-size: 16px; }
.legal ul { margin: 8px 0 8px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); font-weight: 600; }
.legal .note { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 14px; color: var(--muted); margin-top: 28px; }
.legal table.help { width: 100%; border-collapse: collapse; margin: 14px 0; }
.legal table.help td { border: 1px solid var(--line); padding: 10px 12px; vertical-align: top; font-size: 15px; }
.legal table.help td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; width: 1%; }

/* ============ Marketing nav links (extra pages) ============ */
.nav-links a.is-cta { color: var(--navy); font-weight: 600; }

/* ============ Page hero (subpáginas: blog, comparativa, roi, faq) ============ */
.page-hero { background: radial-gradient(1100px 520px at 75% -20%, #eaf1ff 0%, transparent 60%), var(--bg); padding: 56px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--muted); font-weight: 600; }
.page-hero .breadcrumb a:hover { color: var(--navy); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; margin-bottom: 14px; max-width: 760px; }
.page-hero p.lead { font-size: 19px; color: var(--muted); max-width: 680px; margin-bottom: 0; }

/* ============ Blog index ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.post-thumb { height: 8px; background: linear-gradient(90deg, var(--red), var(--navy)); }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.post-card h2, .post-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.post-meta { font-size: 13px; color: var(--muted); margin-top: auto; }
.post-readmore { color: var(--red); font-weight: 600; font-size: 14px; margin-top: 12px; display: inline-flex; gap: 4px; }

/* ============ Article ============ */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.article-wrap .back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 24px; }
.article-wrap .back:hover { color: var(--navy); }
.article-head .cat { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.article-head h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.article-head .article-meta { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.article-body { margin-top: 36px; }
.article-body h2 { font-size: 26px; margin: 40px 0 14px; }
.article-body h3 { font-size: 20px; margin: 28px 0 10px; }
.article-body p, .article-body li { color: #34435a; font-size: 17px; line-height: 1.7; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--blue); font-weight: 600; }
.article-body strong { color: var(--navy); }
.article-body blockquote { border-left: 4px solid var(--red); background: var(--bg-alt); padding: 16px 20px; margin: 24px 0; border-radius: 0 10px 10px 0; color: #34435a; font-size: 17px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.article-body table th, .article-body table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.article-body table th { background: var(--bg-alt); color: var(--navy); font-weight: 700; }
.article-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: var(--radius); padding: 32px 28px; margin: 44px 0 8px; text-align: center; }
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.8); margin-bottom: 18px; font-size: 16px; }
.related { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.related h3 { font-size: 18px; margin-bottom: 14px; }
.related ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related a { color: var(--blue); font-weight: 600; font-size: 16px; }

/* ============ Blog: tarjetas amigables + CTAs ============ */
.post-icon { height: 120px; display: grid; place-items: center; font-size: 46px; background: linear-gradient(135deg, #eaf1ff, #f6f9ff); }
.post-icon.c-legal  { background: linear-gradient(135deg, #fde9ea, #fff5f5); }
.post-icon.c-bc     { background: linear-gradient(135deg, #e7f0ff, #f5f9ff); }
.post-icon.c-hr     { background: linear-gradient(135deg, #e9f7ee, #f4fbf6); }
.post-icon.c-d365   { background: linear-gradient(135deg, #ece8ff, #f7f4ff); }
.post-icon.c-mobile { background: linear-gradient(135deg, #fff1e0, #fff9f1); }
.post-icon.c-cost   { background: linear-gradient(135deg, #e6f7f6, #f3fbfb); }
.post-cat-pill { display: inline-block; background: var(--bg-alt); border: 1px solid var(--line); color: var(--navy); font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--red); }
.post-meta .dot { margin: 0 7px; color: var(--line); }

/* Post destacado (primero, a lo ancho) */
.post-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr 1.15fr; align-items: stretch; }
.post-featured .post-icon { height: 100%; min-height: 200px; font-size: 84px; }
.post-featured .post-body { padding: 32px 34px; }
.post-featured h2 { font-size: 27px; }
.post-featured p { font-size: 16px; }
@media (max-width: 760px) { .post-featured { grid-template-columns: 1fr; } .post-featured .post-icon { min-height: 130px; } }

/* Tira de CTA intermedia en el índice */
.blog-strip { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 28px; flex-wrap: wrap; box-shadow: var(--shadow); }
.blog-strip h3 { color: #fff; font-size: 21px; margin: 0; }
.blog-strip p { color: rgba(255,255,255,.78); margin: 5px 0 0; font-size: 15px; }
.blog-strip .strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* CTA inline (ligero) dentro de artículos */
.inline-cta { display: flex; gap: 16px; align-items: center; background: var(--bg-alt); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; padding: 18px 22px; margin: 30px 0; }
.inline-cta .ic-emoji { font-size: 30px; line-height: 1; flex: none; }
.inline-cta .ic-text { flex: 1; }
.inline-cta .ic-text b { color: var(--navy); display: block; margin-bottom: 2px; }
.inline-cta .ic-text span { color: var(--muted); font-size: 14px; }
.inline-cta a.btn { flex: none; }
@media (max-width: 560px) { .inline-cta { flex-direction: column; align-items: flex-start; text-align: left; } }

/* ============ Comparison tables ============ */
.compare-block { margin-bottom: 56px; }
.compare-block > h2 { font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 8px; }
.compare-block > p.sub { color: var(--muted); font-size: 17px; margin-bottom: 22px; max-width: 760px; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
table.compare th, table.compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare thead th { background: var(--bg-alt); color: var(--navy); font-weight: 700; font-size: 14px; }
table.compare thead th.col-dvg { background: var(--navy); color: #fff; }
table.compare tbody td.col-dvg { color: var(--navy); font-weight: 600; }
table.compare td.feature { font-weight: 600; color: var(--navy); }
table.compare tbody tr:last-child td { border-bottom: none; }
.yes { color: #1a8f3c; font-weight: 700; }
.no { color: var(--muted); font-weight: 700; }
.partial { color: #b5791a; font-weight: 700; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: var(--bg); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 17px; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red); font-size: 24px; font-weight: 700; line-height: 1; flex: none; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer { padding: 0 22px 20px; color: #34435a; font-size: 16px; line-height: 1.7; }
.faq-item .faq-answer p { margin-bottom: 12px; }
.faq-item .faq-answer a { color: var(--blue); font-weight: 600; }

/* ============ ROI calculator ============ */
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.roi-form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.roi-form h2 { font-size: 22px; margin-bottom: 6px; }
.roi-form .form-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.roi-field { margin-bottom: 18px; }
.roi-field label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.roi-field .hint { font-weight: 400; color: var(--muted); font-size: 13px; }
.roi-field input { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 16px; font-family: inherit; color: var(--ink); }
.roi-field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,111,235,.15); }
.roi-results { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); position: sticky; top: 88px; }
.roi-results h2 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.roi-results .results-sub { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 22px; }
.roi-headline { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.roi-headline .big { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.roi-headline .big span { color: #ff8c91; }
.roi-headline .cap { color: rgba(255,255,255,.7); font-size: 14px; }
.roi-metrics { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,.1); border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.roi-metric { display: flex; justify-content: space-between; padding: 14px 16px; background: rgba(255,255,255,.04); font-size: 15px; }
.roi-metric span { color: rgba(255,255,255,.7); }
.roi-metric b { font-variant-numeric: tabular-nums; }
.roi-payback { background: rgba(225,27,34,.16); border: 1px solid rgba(255,140,145,.4); border-radius: 10px; padding: 14px 16px; font-size: 15px; margin-bottom: 22px; }
.roi-results .btn-primary { width: 100%; }
.roi-disclaimer { max-width: 820px; margin: 36px auto 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.roi-disclaimer summary { cursor: pointer; font-weight: 600; color: var(--navy); }

/* Responsive */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-results { position: static; }
}
@media (max-width: 920px) {
  .hero-grid, .integ-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .features, .editions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features, .editions, .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .section { padding: 60px 0; }
  .hero { padding: 48px 0; }
}
