/* ==========================================================================
   Jupiter Technologies — Shared Stylesheet
   Clean corporate light theme
   ========================================================================== */

:root {
  --blue-900: #08233f;
  --blue-800: #0b3e70;
  --blue-700: #0b74c4;
  --blue-600: #0e93e8;
  --blue-500: #2ba7f2;
  --blue-100: #e4f3fe;
  --blue-50:  #f2f9ff;
  --cyan-500: #24c1e0;
  --ink:      #0f1b2d;
  --slate:    #4a5a70;
  --slate-2:  #6b7a90;
  --line:     #e5ecf4;
  --bg:       #ffffff;
  --bg-soft:  #f6f9fd;
  --white:    #ffffff;
  --amber:    #ffb020;
  --green:    #1fb673;
  --radius:   16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 27, 45, .06);
  --shadow:    0 12px 34px rgba(15, 27, 45, .10);
  --shadow-lg: 0 26px 60px rgba(15, 27, 45, .16);
  --maxw: 1200px;
  --grad: linear-gradient(120deg, #0b74c4 0%, #159fee 55%, #24c1e0 100%);
  --grad-soft: linear-gradient(120deg, #f2f9ff 0%, #e9f5ff 100%);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--blue-900); font-weight: 800; letter-spacing: -.02em; }
p { color: var(--slate); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: 0; transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(27,111,209,.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(27,111,209,.42); }
.btn--ghost { background: #fff; color: var(--blue-700); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.14); color:#fff; border:1.5px solid rgba(255,255,255,.4); }
.btn--light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

/* ---------- Eyebrow / pills ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-100);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--light { color:#eaf4ff; background: rgba(255,255,255,.16); }

.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-lead { font-size: 18px; max-width: 680px; margin: 0 auto; color: var(--slate); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 20px; color: var(--blue-900); letter-spacing: -.02em; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; color:#fff; font-weight: 900; font-size: 20px;
  box-shadow: 0 8px 20px rgba(27,111,209,.4);
}
.brand small { display:block; font-size: 10.5px; font-weight: 700; letter-spacing:.16em; color: var(--slate-2); text-transform: uppercase; }
.brand-logo { height: 46px; width: auto; display: block; }
.site-footer .brand { background: #fff; padding: 12px 16px; border-radius: 14px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.site-footer .brand-logo { height: 40px; }
@media (max-width: 720px){ .brand-logo { height: 38px; } }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--slate); padding: 9px 14px; border-radius: 9px; transition: .16s;
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-700); background: var(--blue-100); }
.nav-cta { margin-left: 10px; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 10px; }
.hamburger span { display:block; width: 22px; height: 2.4px; background: var(--blue-900); margin: 4.5px auto; border-radius: 2px; transition: .25s; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 84px; overflow: hidden; background: var(--grad-soft); }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(600px 400px at 82% 8%, rgba(43,139,240,.18), transparent 60%),
    radial-gradient(520px 380px at 12% 92%, rgba(23,195,212,.14), transparent 60%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: var(--slate); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--slate); }
.hero-badge svg { width: 20px; height: 20px; color: var(--green); }

.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero-card h4 { font-size: 16px; margin-bottom: 4px; }
.hero-card .sub { font-size: 13px; color: var(--slate-2); margin-bottom: 20px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.mini-stat .n { font-size: 26px; font-weight: 900; color: var(--blue-700); letter-spacing: -.02em; }
.mini-stat .l { font-size: 12.5px; color: var(--slate-2); font-weight: 600; }
.hero-float {
  position: absolute; background:#fff; border:1px solid var(--line); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); display:flex; align-items:center; gap:10px; font-weight:700; font-size:13.5px; z-index: 3;
}
.hero-float svg { width: 22px; height: 22px; }
.hero-float.f1 { top: -22px; right: 18px; color: var(--blue-600); }
.hero-float.f2 { bottom: -20px; left: -18px; color: var(--cyan-500); }
.hero-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,182,115,.18); }

/* ---------- Trusted strip ---------- */
.trust { border-bottom: 1px solid var(--line); background:#fff; padding: 26px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; align-items:center; }
.trust-logos span { font-weight: 800; color: #8fa0b6; font-size: 17px; letter-spacing: .01em; }

/* ---------- Stat band ---------- */
.stat-band { background: var(--blue-900); color:#fff; position: relative; overflow: hidden; }
.stat-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 80% 0%, rgba(43,139,240,.35), transparent 60%); }
.stat-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat .num { font-size: clamp(34px, 4.4vw, 50px); font-weight: 900; letter-spacing: -.03em; background: linear-gradient(120deg,#fff,#bfe0ff); -webkit-background-clip:text; background-clip:text; color: transparent; }
.stat .lbl { color: #b9cbe0; font-weight: 600; font-size: 15px; margin-top: 4px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--grad); transition: width .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d6e4f5; }
.card:hover::after { width: 100%; }
.card .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--blue-100); color: var(--blue-600);
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; }
.card .learn { display:inline-flex; align-items:center; gap:6px; margin-top: 16px; font-weight:700; font-size:14px; color: var(--blue-600); }
.card .learn svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .learn svg { transform: translateX(4px); }

.card--accent { background: var(--grad); color:#fff; border: 0; }
.card--accent h3, .card--accent p { color:#fff; }
.card--accent .ico { background: rgba(255,255,255,.18); color:#fff; }
.card--accent p { opacity: .92; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split ul { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--slate); }
.split ul li svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.split ul li b { color: var(--ink); }
.media-panel {
  border-radius: 20px; padding: 34px; background: var(--grad-soft); border: 1px solid var(--line);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.media-panel .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background:#fff; border:1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: 13.5px; color: var(--blue-700); box-shadow: var(--shadow-sm); }
.chip.on { background: var(--grad); color:#fff; border:0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.step .num { width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color:#fff; display:grid; place-items:center; font-weight:900; font-size:18px; margin-bottom: 14px; }
.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); border-radius: 24px; padding: 56px; text-align: center; color:#fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 15% 20%, rgba(255,255,255,.18), transparent 55%); }
.cta-band h2 { color:#fff; font-size: clamp(26px,3.6vw,38px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap: wrap; position: relative; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--blue-900); color:#fff; padding: 70px 0 74px; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 320px at 85% 10%, rgba(43,139,240,.4), transparent 60%), radial-gradient(500px 300px at 5% 100%, rgba(23,195,212,.22), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color:#fff; font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 14px; max-width: 760px; }
.page-hero p { color: #c6d6ea; font-size: 18.5px; max-width: 640px; }
.breadcrumb { font-size: 13.5px; color: #93aacb; margin-bottom: 18px; }
.breadcrumb a:hover { color:#fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; display:flex; gap:16px; align-items:flex-start; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.info-card .ico { width: 50px; height: 50px; border-radius: 12px; background: var(--blue-100); color: var(--blue-600); display:grid; place-items:center; flex-shrink:0; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 16px; margin-bottom: 3px; }
.info-card p, .info-card a { font-size: 15px; color: var(--slate); }
.info-card a:hover { color: var(--blue-600); }
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size: 13.5px; font-weight:700; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft); transition: .16s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); background:#fff; box-shadow: 0 0 0 4px rgba(43,139,240,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--slate-2); margin-top: 12px; text-align:center; }
.form-success { display:none; background: rgba(31,182,115,.1); border:1px solid rgba(31,182,115,.4); color: #148a56; padding: 14px 16px; border-radius: 10px; font-weight:600; font-size: 14.5px; margin-bottom: 18px; }

/* ---------- Values / about ---------- */
.value { display:flex; gap:16px; align-items:flex-start; }
.value .ico { width: 48px; height:48px; border-radius:12px; background: var(--blue-100); color: var(--blue-600); display:grid; place-items:center; flex-shrink:0; }
.value .ico svg { width: 24px; height:24px; }
.value h4 { font-size: 18px; margin-bottom: 6px; }
.value p { font-size: 15px; }

.pill-list { display:flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pill-list .chip { background: var(--blue-50); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border:1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background:#fff; overflow:hidden; }
.faq-q { width:100%; text-align:left; background:none; border:0; padding: 20px 22px; font-size: 16.5px; font-weight:700; color: var(--blue-900); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:inherit; }
.faq-q svg { width: 20px; height:20px; color: var(--blue-500); transition: transform .25s; flex-shrink:0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: #b9cbe0; padding: 62px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer .brand { color:#fff; margin-bottom: 16px; }
.site-footer .brand small { color: #8ba5c4; }
.footer-about { font-size: 14.5px; color: #93aacb; max-width: 300px; }
.footer-col h5 { color:#fff; font-size: 14px; letter-spacing:.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display:grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color:#a9bdd6; transition:.15s; }
.footer-col a:hover { color:#fff; }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:#a9bdd6; margin-bottom: 12px; }
.footer-contact svg { width:18px; height:18px; color: var(--blue-500); flex-shrink:0; margin-top:2px; }
.footer-social { display:flex; gap:10px; margin-top: 18px; }
.footer-social a { width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.08); display:grid; place-items:center; transition:.16s; }
.footer-social a:hover { background: var(--blue-600); }
.footer-social svg { width:18px; height:18px; color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 42px; padding-top: 24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13.5px; color:#8ba5c4; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Safety: if JS is disabled or user prefers reduced motion, always show content */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px; gap: 4px;
    transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow); max-height: calc(100vh - 74px); overflow:auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .hamburger { display: block; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero-float.f2 { left: 0; }
}

/* ---------- Client logos ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: stretch; }
.logo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  min-height: 92px; padding: 18px; display: grid; place-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.logo-card img { max-height: 54px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .75; transition: .2s; }
.logo-card:hover img { filter: none; opacity: 1; }
.logo-card .logo-text { font-weight: 800; color: #8fa0b6; font-size: 15px; text-align: center; letter-spacing: .01em; }
@media (max-width: 960px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Affiliations strip ---------- */
.affiliations { background: #fff; border-top: 1px solid var(--line); padding: 34px 0; }
.affil-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.affil-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); }
.affil-logos { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.affil-item {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 10px 18px;
}
.affil-item img { max-height: 44px; width: auto; display: block; }
.affil-item .affil-text { font-weight: 800; color: var(--blue-800); font-size: 14.5px; white-space: nowrap; }

/* ---------- Promo bar ---------- */
.promo-bar { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 46px; padding: 8px 48px 8px 24px; position: relative; }
.promo-slide { display: none; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; animation: promoIn .45s ease; }
.promo-slide.on { display: flex; }
@keyframes promoIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.promo-slide .promo-text { font-weight: 700; font-size: 14px; letter-spacing: .01em; }
.promo-slide a.promo-btn {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 5px 14px;
  font-weight: 700; font-size: 12.5px; white-space: nowrap; transition: .16s;
}
.promo-slide a.promo-btn:hover { background: #fff; color: var(--blue-700); }
.promo-slide a.promo-btn svg { width: 14px; height: 14px; }
.promo-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255,255,255,.85); font-size: 20px; line-height: 1;
  cursor: pointer; width: 32px; height: 32px; border-radius: 8px;
}
.promo-close:hover { background: rgba(255,255,255,.16); color: #fff; }
.promo-dots { display: flex; gap: 5px; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }
.promo-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); transition: .2s; }
.promo-dots i.on { background: #fff; }
@media (max-width: 720px) {
  .promo-inner { padding: 8px 44px 8px 14px; }
  .promo-dots { display: none; }
  .promo-slide .promo-text { font-size: 13px; }
}

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; }
.post-card .cat { display: inline-flex; align-self: flex-start; background: var(--blue-100); color: var(--blue-700); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: 5px 12px; margin-bottom: 14px; }
.post-card h3 { font-size: 19px; margin-bottom: 10px; }
.post-card .date { margin-top: auto; padding-top: 14px; font-size: 13px; color: var(--slate-2); font-weight: 600; }
.article { max-width: 780px; margin: 0 auto; }
.article .article-meta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; color: var(--slate-2); font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.article h2 { font-size: 27px; margin: 38px 0 14px; }
.article h3 { font-size: 20px; margin: 28px 0 10px; }
.article p { margin: 0 0 16px; font-size: 16.5px; }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--slate); font-size: 16px; display: grid; gap: 8px; }
.article ul li::marker { color: var(--blue-600); }
.article strong { color: var(--ink); }
.article a { color: var(--blue-700); font-weight: 600; text-decoration: underline; text-decoration-color: var(--blue-100); text-underline-offset: 3px; }
.article a:hover { text-decoration-color: var(--blue-500); }
.article blockquote { border-left: 3px solid var(--blue-500); background: var(--blue-50); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 0 0 18px; color: var(--slate); font-size: 16px; }
.article .article-cta { background: var(--grad); border-radius: 18px; padding: 30px; color: #fff; margin: 34px 0; text-align: center; }
.article .article-cta h3 { color: #fff; margin: 0 0 8px; }
.article .article-cta p { color: rgba(255,255,255,.92); margin-bottom: 18px; font-size: 15.5px; }
.article .article-cta a.btn { background: #fff; color: var(--blue-700); }
.post-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
