*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-glow: rgba(14,165,233,0.25);
  --accent: #06B6D4;
  --navy: #071525;
  --navy-mid: #0F2744;
  --text: #0F172A;
  --text-mid: #334155;
  --text-muted: #64748B;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --success: #10B981;
  --warn: #F59E0B;
  --radius: 18px;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,21,37,0.88); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: white; text-decoration: none; }
.logo em { color: var(--primary); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.62); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 0.45rem 1.2rem; border-radius: 8px; font-weight: 600 !important; font-size: 0.85rem !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px) !important; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: var(--navy); min-height: 100vh; padding: 118px 6% 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -15%; left: -8%; width: 55%; height: 65%; background: radial-gradient(ellipse, rgba(14,165,233,0.13) 0%, transparent 68%); pointer-events: none; }
.hero::after  { content: ''; position: absolute; bottom: -8%; right: -4%; width: 45%; height: 55%; background: radial-gradient(ellipse, rgba(6,182,212,0.07) 0%, transparent 65%); pointer-events: none; }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22);
  color: #7DD3FC; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); font-weight: 800; color: white; line-height: 1.14; letter-spacing: -0.03em; margin-bottom: 1.2rem; text-wrap: pretty; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub { font-size: 1.025rem; color: rgba(255,255,255,0.58); max-width: 500px; line-height: 1.72; margin-bottom: 2.25rem; text-wrap: pretty; }

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: white; padding: 0.85rem 1.85rem; border-radius: 10px;
  font-weight: 700; font-size: 0.975rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 22px var(--primary-glow); border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(14,165,233,0.38); }
.btn-ghost { color: rgba(255,255,255,0.65); padding: 0.85rem 1.25rem; font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.45rem; transition: color 0.2s; background: none; border: none; cursor: pointer; font-family: inherit; }
.btn-ghost:hover { color: white; }

.hero-stats { display: flex; gap: 2.25rem; margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.hstat .n { font-size: 1.45rem; font-weight: 800; color: white; letter-spacing: -0.03em; }
.hstat .l { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

/* ─── INTERVIEW WIDGET ────────────────────────────── */
.widget-wrap { position: relative; z-index: 1; }
.interview-window {
  background: #0C1E33; border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(14,165,233,0.08);
}
.win-header {
  background: #0A1827; padding: 0.875rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.win-title { font-size: 0.77rem; font-weight: 600; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.5rem; }
.live-dot { width: 7px; height: 7px; background: #EF4444; border-radius: 50%; animation: pulseRed 1.6s ease-in-out infinite; }
@keyframes pulseRed { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(0.8); } }
.win-badges { display: flex; gap: 0.45rem; }
.win-badge { background: rgba(14,165,233,0.1); color: #7DD3FC; font-size: 0.68rem; font-weight: 600; padding: 0.18rem 0.6rem; border-radius: 100px; border: 1px solid rgba(14,165,233,0.18); }

.win-body { padding: 1.35rem; min-height: 255px; display: flex; flex-direction: column; gap: 0.875rem; }

.ai-bubble { display: flex; align-items: flex-start; gap: 0.65rem; }
.ai-avatar { width: 30px; height: 30px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; color: white; }
.ai-text { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px 10px 10px 3px; padding: 0.65rem 0.9rem; font-size: 0.825rem; color: rgba(255,255,255,0.82); line-height: 1.56; flex: 1; text-wrap: pretty; min-height: 42px; }

.recording-bar {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(239,68,68,0.055); border: 1px solid rgba(239,68,68,0.14);
  border-radius: 10px; padding: 0.8rem 1rem;
}
.mic-icon { width: 28px; height: 28px; background: rgba(239,68,68,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.waveform { display: flex; align-items: center; gap: 2.5px; flex: 1; }
.wbar { width: 3px; border-radius: 2px; background: rgba(239,68,68,0.65); animation: wv 0.75s ease-in-out infinite; }
.wbar:nth-child(1){height:7px;animation-delay:0s} .wbar:nth-child(2){height:14px;animation-delay:.1s} .wbar:nth-child(3){height:22px;animation-delay:.18s} .wbar:nth-child(4){height:17px;animation-delay:.28s} .wbar:nth-child(5){height:26px;animation-delay:.08s} .wbar:nth-child(6){height:11px;animation-delay:.35s} .wbar:nth-child(7){height:19px;animation-delay:.05s} .wbar:nth-child(8){height:14px;animation-delay:.22s} .wbar:nth-child(9){height:9px;animation-delay:.42s} .wbar:nth-child(10){height:20px;animation-delay:.14s} .wbar:nth-child(11){height:13px;animation-delay:.3s} .wbar:nth-child(12){height:17px;animation-delay:.06s}
@keyframes wv { 0%,100%{ transform:scaleY(1); } 50%{ transform:scaleY(0.28); } }
.rec-label { font-size: 0.75rem; color: rgba(239,68,68,0.78); font-weight: 600; white-space: nowrap; }

.feedback-card {
  background: rgba(16,185,129,0.055); border: 1px solid rgba(16,185,129,0.18);
  border-radius: 10px; padding: 0.9rem 1rem;
}
.fb-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.65rem; }
.fb-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.score-chip { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-size: 0.82rem; font-weight: 800; padding: 0.2rem 0.65rem; border-radius: 7px; }
.fb-items { display: flex; flex-direction: column; gap: 0.28rem; }
.fb-item { font-size: 0.78rem; display: flex; align-items: center; gap: 0.4rem; }
.fb-item.ok { color: rgba(52,211,153,0.9); } .fb-item.warn { color: rgba(251,191,36,0.9); }

.win-progress { height: 3px; background: rgba(255,255,255,0.05); }
.win-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width 0.5s ease; }

@keyframes fadeUp { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:translateY(0); } }

/* ─── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.25rem 6%; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.trust-item strong { color: var(--text); font-weight: 700; }
.tdot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

/* ─── SECTIONS ────────────────────────────────────── */
section { padding: 5.5rem 6%; }
.sec-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.sec-title { font-size: clamp(1.8rem, 2.8vw, 2.65rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; color: var(--text); margin-bottom: 0.9rem; text-wrap: pretty; }
.sec-sub { font-size: 1.025rem; color: var(--text-muted); line-height: 1.7; text-wrap: pretty; }

/* ─── FEATURES BENTO ──────────────────────────────── */
#features { background: white; }
.features-head { text-align: center; max-width: 600px; margin: 0 auto 3.25rem; }
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; max-width: 1100px; margin: 0 auto; }
.bcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.bcard:hover { border-color: rgba(14,165,233,0.28); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,165,233,0.07); }
.bcard.wide { grid-column: span 2; }
.bicon { width: 42px; height: 42px; background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.06)); border: 1px solid rgba(14,165,233,0.18); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1.1rem; }
.btitle { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.bdesc { font-size: 0.855rem; color: var(--text-muted); line-height: 1.62; text-wrap: pretty; }
.cv-demo { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.cv-row { display: flex; align-items: flex-start; gap: 0.55rem; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.775rem; color: var(--text-muted); line-height: 1.45; }
.cv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 3px; }
.cv-row strong { color: var(--text); font-weight: 600; }

/* ─── HOW IT WORKS ────────────────────────────────── */
#how { background: var(--navy); }
#how .sec-title { color: white; } #how .sec-label { color: #7DD3FC; } #how .sec-sub { color: rgba(255,255,255,0.5); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.25rem; max-width: 980px; margin: 3.25rem auto 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 23px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,0.25) 30%, rgba(14,165,233,0.25) 70%, transparent); pointer-events: none; }
.step-num { width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; color: white; margin-bottom: 1.35rem; }
.step-title { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; text-wrap: pretty; }

/* ─── PRICING ─────────────────────────────────────── */
#pricing { background: var(--bg); }
.pricing-head { text-align: center; max-width: 560px; margin: 0 auto 3.25rem; }
.pcards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; max-width: 1180px; margin: 0 auto; }
.free-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--success); color: white; font-size: 0.7rem; font-weight: 700; padding: 0.28rem 1rem; border-radius: 100px; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.pcard { background: white; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.pcard:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.06); }
.pcard.hot { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 18px 45px rgba(14,165,233,0.13); }
.hot-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 0.28rem 1rem; border-radius: 100px; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-name { font-size: 0.76rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.plan-price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 0.2rem; }
.plan-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; }
.plan-price .per { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.plan-desc { font-size: 0.835rem; color: var(--text-muted); margin: 0.75rem 0 1.5rem; line-height: 1.55; }
.pfeats { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.85rem; }
.pfeats li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.85rem; color: var(--text-mid); line-height: 1.4; }
.ck { color: var(--success); flex-shrink: 0; font-size: 0.88rem; margin-top: 0.05rem; }
.xk { color: var(--text-muted); flex-shrink: 0; font-size: 0.88rem; margin-top: 0.05rem; }
.pfeats li.off { color: var(--text-muted); }
.pbtn { display: block; text-align: center; padding: 0.825rem; border-radius: 10px; font-weight: 700; font-size: 0.925rem; text-decoration: none; cursor: pointer; transition: all 0.2s; border: 1.5px solid var(--border); color: var(--text); background: white; width: 100%; font-family: inherit; }
.pbtn:hover { border-color: var(--primary); color: var(--primary); }
.pbtn.fill { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 14px var(--primary-glow); }
.pbtn.fill:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.pricing-note { text-align: center; margin-top: 1.75rem; font-size: 0.825rem; color: var(--text-muted); }

/* ─── TESTIMONIALS ────────────────────────────────── */
#testimonials { background: white; }
.t-head { text-align: center; max-width: 520px; margin: 0 auto 3.25rem; }
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; max-width: 1060px; margin: 0 auto; }
.tcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; transition: transform 0.2s, box-shadow 0.2s; }
.tcard:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.045); }
.tstars { color: var(--warn); font-size: 0.85rem; letter-spacing: 0.06em; margin-bottom: 0.9rem; }
.tquote { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; font-style: italic; margin-bottom: 1.4rem; text-wrap: pretty; }
.tauthor { display: flex; align-items: center; gap: 0.7rem; }
.tavatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; color: white; flex-shrink: 0; }
.tname { font-weight: 700; font-size: 0.855rem; color: var(--text); }
.trole { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ─── FAQ ─────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-head { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.fitem { background: white; border: 1px solid var(--border); border-radius: 13px; overflow: hidden; transition: border-color 0.2s; }
.fitem.open { border-color: rgba(14,165,233,0.28); }
.fq { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.1rem 1.4rem; font-weight: 600; font-size: 0.925rem; font-family: inherit; text-align: left; background: none; border: none; cursor: pointer; color: var(--text); gap: 1rem; user-select: none; }
.fq:hover { color: var(--primary); }
.fq:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }
.fq-icon { width: 22px; height: 22px; background: var(--bg); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; transition: background 0.2s, transform 0.25s; color: var(--text-muted); }
.fitem.open .fq-icon { background: rgba(14,165,233,0.1); color: var(--primary); transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.fa-inner { padding: 0 1.4rem 1.1rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; text-wrap: pretty; }

/* ─── FOOTER ──────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,0.45); padding: 3rem 6% 2rem; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 2.75rem; flex-wrap: wrap; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); margin-top: 0.6rem; max-width: 230px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; }
.fcol h4 { font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.fcol a { font-size: 0.83rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.fcol a:hover { color: rgba(255,255,255,0.78); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.79rem; flex-wrap: wrap; gap: 0.75rem; }
.dach-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); padding: 0.28rem 0.8rem; border-radius: 100px; font-size: 0.76rem; }

/* ─── TWEAKS ──────────────────────────────────────── */
#tweaks {
  position: fixed; bottom: 1.5rem; right: 1.5rem; width: 252px;
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 1.15rem; box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  z-index: 9999; display: none;
}
#tweaks.on { display: block; }
.tw-title { font-size: 0.74rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.tw-row { margin-bottom: 0.9rem; }
.tw-label { font-size: 0.8rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.45rem; }
.tw-swatches { display: flex; gap: 0.45rem; }
.sw { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.18s, transform 0.15s; }
.sw:hover, .sw.active { border-color: var(--text); transform: scale(1.12); }
.tw-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.toggle { width: 38px; height: 21px; background: var(--border); border-radius: 11px; cursor: pointer; position: relative; transition: background 0.2s; flex-shrink: 0; }
.toggle.on { background: var(--primary); }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 17px; height: 17px; background: white; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.18); }
.toggle.on::after { transform: translateX(17px); }

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── PROMO POPUP ─────────────────────────────────── */
.promo-overlay {
  position: fixed; inset: 0; z-index: 1000; padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,21,37,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.promo-overlay.show { opacity: 1; pointer-events: auto; }
.promo-modal {
  background: white; border-radius: var(--radius); max-width: 420px; width: 100%;
  padding: 2.25rem 2rem 2rem; position: relative; text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(14,165,233,0.1);
  transform: translateY(14px) scale(0.97); transition: transform 0.25s ease;
}
.promo-overlay.show .promo-modal { transform: translateY(0) scale(1); }
.promo-close {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 32px; height: 32px;
  border-radius: 8px; border: none; background: var(--bg); color: var(--text-muted);
  font-size: 1.15rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.promo-close:hover { background: rgba(14,165,233,0.1); color: var(--primary); }
.promo-badge {
  display: inline-flex; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22);
  color: var(--primary-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem;
}
.promo-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.6rem; }
.promo-sub { font-size: 0.925rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.4rem; }
.promo-code {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: var(--bg); border: 1.5px dashed rgba(14,165,233,0.4); border-radius: 10px;
  padding: 0.75rem 1rem; margin-bottom: 1.25rem;
}
.promo-code span { font-weight: 800; letter-spacing: 0.06em; color: var(--text); font-size: 1rem; }
.promo-code button {
  background: var(--primary); color: white; border: none; border-radius: 8px;
  padding: 0.4rem 0.85rem; font-weight: 700; font-size: 0.8rem; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
}
.promo-code button:hover { background: var(--primary-dark); }
.promo-code button.copied { background: var(--success); }
.promo-cta { width: 100%; justify-content: center; margin-bottom: 0.85rem; }
.promo-decline {
  background: none; border: none; color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; font-family: inherit; text-decoration: underline; text-underline-offset: 2px;
}
.promo-decline:hover { color: var(--text-mid); }
@media (max-width: 720px) {
  .promo-overlay { align-items: flex-end; padding: 0; }
  .promo-modal { border-radius: 18px 18px 0 0; max-width: 100%; transform: translateY(100%); }
  .promo-overlay.show .promo-modal { transform: translateY(0); }
}

/* ─── BLOG ────────────────────────────────────────── */
.blog-hero { background: var(--navy); padding: 130px 6% 3.5rem; position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; top: -20%; left: -8%; width: 50%; height: 70%; background: radial-gradient(ellipse, rgba(14,165,233,0.12) 0%, transparent 68%); pointer-events: none; }
.blog-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.blog-hero .sec-label { color: #7DD3FC; }
.blog-hero .sec-title { color: white; margin-bottom: 0.6rem; }
.blog-hero .sec-sub { color: rgba(255,255,255,0.55); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.25); }
body:not(.blog-hero-page) .breadcrumb { color: var(--text-muted); }
body:not(.blog-hero-page) .breadcrumb a { color: var(--text-muted); }
body:not(.blog-hero-page) .breadcrumb a:hover { color: var(--primary); }
body:not(.blog-hero-page) .breadcrumb span[aria-hidden] { color: var(--border); }

.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; max-width: 1000px; margin: 0 auto; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; text-decoration: none; display: block; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { border-color: rgba(14,165,233,0.28); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,165,233,0.07); }
.blog-card-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.7rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; letter-spacing: -0.01em; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-muted); line-height: 1.62; }
.blog-card-meta { font-size: 0.76rem; color: var(--text-muted); margin-top: 1rem; }

body.article-page { background: var(--bg); }
.article-page-inner {
  max-width: 780px; margin: 110px auto 3rem; background: white;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.045); padding: 2.75rem;
}

.article-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.article-title { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.22; color: var(--text); margin-bottom: 1rem; text-wrap: pretty; }
.article-meta { font-size: 0.85rem; color: var(--text-muted); display: flex; gap: 0.6rem; align-items: center; margin-bottom: 1.75rem; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

.article-body { font-size: 1.02rem; line-height: 1.8; color: var(--text-mid); }
.article-body h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 2.2rem 0 0.9rem; }
.article-body h3 { font-size: 1.12rem; font-weight: 700; color: var(--text); margin: 1.7rem 0 0.7rem; }
.article-body p { margin-bottom: 1.15rem; text-wrap: pretty; }
.article-body ul, .article-body ol { margin: 0 0 1.15rem 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a:not(.btn-primary) { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.article-cta { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; margin: 2.5rem 0; }
.article-cta p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1.1rem; }

.article-related { max-width: 780px; margin: 0 auto; padding: 2.5rem 2.75rem 4rem; border-top: 1px solid var(--border); }
.article-related h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1.2rem; }
.article-related-list { display: flex; flex-direction: column; gap: 0.5rem; }
.article-related-list a { color: var(--primary); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.article-related-list a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding-top: 100px; }
  .article-page-inner { margin: 90px 4% 2rem; padding: 1.75rem 1.25rem; }
  .article-related { padding: 2rem 1.25rem 3rem; }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; }
  .widget-wrap { display: none; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bcard.wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pcards { grid-template-columns: 1fr; max-width: 400px; }
  .tcards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  nav .nav-links li:not(:last-child) { display: none; }
  .hero { padding: 95px 6% 55px; }
  .hero h1 { font-size: 1.95rem; }
  .bento { grid-template-columns: 1fr; }
  .bcard.wide { grid-column: span 1; }
  .footer-links { flex-direction: column; gap: 2rem; }
  section { padding: 4rem 6%; }
  .trust-bar { gap: 1.4rem; }
  .tdot { display: none; }
}
