﻿/* ===== BACKUP.CSS — Advik Email Backup Wizard ===== */
/* Palette: Deep indigo (authority) · Violet accent (innovation) · Gold (warmth) */
/* ALL page classes prefixed eb- to avoid conflicts                               */

/* ── GLOBAL LINK RESET ──────────────────────────────── */
a:hover { text-decoration: none; }

/* ── MAIN NAV FIX — prevent Bootstrap flex from stretching nav items ── */
.site-header .navbar-nav { gap: 0; }
.site-header .navbar-nav .nav-item { flex: 0 0 auto; }
.site-header .navbar-collapse { flex-grow: 0; margin-left: auto; }

/* ── SCROLL PROGRESS ───────────────────────────────── */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, #0284c7, #7dd3fc, #ffd700);
  z-index: 9999; transition: width .05s linear;
}

/* ── SUB-NAV ────────────────────────────────────────── */
.prd-nav {
  position: sticky; top: 0; z-index: 900;
  background: #fff; border-bottom: 2px solid #bae6fd;
  box-shadow: 0 2px 12px rgba(2,132,199,.07);
}
.prd-nav .container {
  display: flex; align-items: center;
  justify-content: space-between; padding-top: 0; padding-bottom: 0; gap: 1rem;
}
.prd-nav-links { display: flex; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.prd-nav-links a {
  display: block; padding: .75rem 1rem; font-size: .8rem; font-weight: 600;
  color: #0a1628; text-decoration: none; text-transform: uppercase;
  letter-spacing: .04em; border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.prd-nav-links a:hover { color: #0284c7; border-bottom-color: #0284c7; }
.prd-nav-dl { display: flex; gap: 8px; flex-shrink: 0; }
.btn-nav-dl {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: .55rem 1.15rem; font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap;
}
.btn-nav-dl:hover { background: #009a3e; transform: translateY(-1px); color: #fff; }
.btn-nav-dl.mac-btn { background: #0d2146; }
.btn-nav-dl.mac-btn:hover { background: #2d1f6e; }

/* ── BREADCRUMB ─────────────────────────────────────── */
.page-breadcrumb { background: #0a1628; padding: 10px 0; }
.breadcrumb-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb-list li { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; }
.breadcrumb-list li a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb-list li a:hover { color: #7dd3fc; }
.breadcrumb-list li + li::before { content: '›'; margin: 0 8px; opacity: .4; }

/* ── CHIP ───────────────────────────────────────────── */
.eb-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e0f2fe; color: #0369a1;
  border: 1px solid #bae6fd; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 5px 14px; margin-bottom: 16px;
}
.eb-chip.on-dark { background: rgba(125,211,252,.13); color: #bae6fd; border-color: rgba(125,211,252,.28); }
.eb-chip.gold    { background: rgba(255,215,0,.12); color: #f59e0b; border-color: rgba(255,215,0,.25); }

/* ══════════════════════════════════════════════════════
   HERO — 2-col: left content, right screenshot
══════════════════════════════════════════════════════ */
.eb-hero {
  background: linear-gradient(145deg, #0a1628 0%, #0d2146 55%, #0f1e40 100%);
  padding: 80px 20px 88px; overflow: hidden; position: relative;
}
.eb-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(2,132,199,.16) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 15%, rgba(255,215,0,.07) 0%, transparent 45%);
}
/* Drifting glow orb */
.eb-hero::after {
  content: ''; position: absolute; top: -160px; right: -80px;
  width: 640px; height: 640px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(2,132,199,.1), transparent 65%);
  animation: eborbdrift 14s ease-in-out infinite;
}
@keyframes eborbdrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-28px,22px) scale(1.07); }
  66%      { transform: translate(18px,-14px) scale(.95); }
}
.eb-hero-inner {
  position: relative; z-index: 2; max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center;
}
.eb-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(125,211,252,.14); border: 1px solid rgba(125,211,252,.32);
  color: #bae6fd; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 22px;
}
.eb-badge-pulse {
  width: 7px; height: 7px; background: #7dd3fc; border-radius: 50%;
  animation: ebpulse 2s ease-in-out infinite;
}
@keyframes ebpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.5)} }
.eb-hero-h1 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -.03em; margin-bottom: 20px;
}
.eb-hero-h1 span { color: #7dd3fc; }
/* Animated tagline below h1 */
.eb-hero-tagline {
  margin-bottom: 18px; margin-top: -6px;
}
.eb-hero-anim {
  display: inline-block; color: #7dd3fc;
  font-size: clamp(17px, 2.2vw, 26px); font-weight: 700;
  letter-spacing: -.01em;
  transition: opacity .35s ease, transform .35s ease;
}
.eb-hero-anim.fading { opacity: 0; transform: translateY(10px); }
.eb-hero-sub { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 26px; }
.eb-hero-sub strong { color: rgba(255,255,255,.88); font-weight: 700; }
.eb-hero-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.eb-hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.5;
}
.eb-bullet-dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(125,211,252,.2); border: 1.5px solid #7dd3fc;
  display: flex; align-items: center; justify-content: center;
}
.eb-bullet-dot::after { content: ''; width: 6px; height: 6px; background: #7dd3fc; border-radius: 50%; }

/* Platform download tabs */
.eb-dl-tabs { display: flex; gap: 0; background: rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; margin-bottom: 14px; width: fit-content; }
.eb-dl-tab {
  padding: 8px 20px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5);
  cursor: pointer; transition: all .2s; user-select: none; display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
}
.eb-dl-tab.active { color: #7dd3fc; background: rgba(125,211,252,.12); border-bottom-color: #7dd3fc; }
.eb-dl-pane { display: none; }
.eb-dl-pane.active { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.eb-hero-trust {
  display: flex; gap: 0; flex-wrap: wrap; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.eb-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; padding: 0 20px 0 0;
}
.eb-trust-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); margin-right: 20px; }
.eb-trust-item strong { color: rgba(255,255,255,.85); font-weight: 700; }

/* Hero screenshot */
.eb-hero-screen { position: relative; }
.eb-screen-card {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(125,211,252,.15);
  animation: ebscreenfloat 5s ease-in-out infinite;
}
@keyframes ebscreenfloat {
  0%,100% { transform: translateY(0); box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(125,211,252,.15); }
  50%      { transform: translateY(-10px); box-shadow: 0 44px 96px rgba(0,0,0,.45), 0 0 0 1px rgba(125,211,252,.25); }
}
.eb-screen-header {
  background: rgba(0,0,0,.25); padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.eb-screen-dots { display: flex; gap: 6px; }
.eb-screen-dots span { width: 10px; height: 10px; border-radius: 50%; }
.eb-screen-dots span:nth-child(1) { background: rgba(255,255,255,.15); }
.eb-screen-dots span:nth-child(2) { background: rgba(255,255,255,.1); }
.eb-screen-dots span:nth-child(3) { background: rgba(255,255,255,.08); }
.eb-screen-title { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 600; }
.eb-screen-card img { width: 100%; display: block; }

/* Floating badges */
.eb-hero-float {
  position: absolute; background: rgba(255,255,255,.95);
  border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 700;
  color: #1e1b4b; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.eb-float-1 { top: 20px; right: -20px; }
.eb-float-2 { bottom: 40px; left: -24px; }

/* ══════════════════════════════════════════════════════
   PROVIDER MARQUEE — scrolling logo strip
══════════════════════════════════════════════════════ */
.eb-marquee-section {
  background: #fff; padding: 0; overflow: hidden;
  border-bottom: 1px solid #e0f2fe;
}
.eb-marquee-label {
  text-align: center; font-size: 11px; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .1em; padding: 16px 0 0;
}
.eb-marquee-wrap { overflow: hidden; padding: 14px 0 18px; }
.eb-marquee { display: flex; width: max-content; animation: ebmarquee 40s linear infinite; }
.eb-marquee:hover { animation-play-state: paused; }
@keyframes ebmarquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.eb-provider-pill {
  display: flex; align-items: center; gap: 8px; padding: 8px 22px;
  font-size: 13px; font-weight: 700; color: #374151; white-space: nowrap;
  border-right: 1px solid #f3f4f6; transition: color .2s;
}
.eb-provider-pill:hover { color: #0284c7; }
.eb-provider-icon { font-size: 18px; }

/* ══════════════════════════════════════════════════════
   RISK SECTION — why you need backup
══════════════════════════════════════════════════════ */
.eb-risk { padding: 88px 20px; background: #f0f9ff; }
.eb-risk-inner { max-width: 1100px; margin: 0 auto; }
.eb-risk-head { text-align: center; margin-bottom: 52px; }
.eb-risk-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 14px;
}
.eb-risk-head h2 span { color: #0284c7; }
.eb-risk-head p { font-size: 16px; color: #6b7280; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.eb-risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.eb-risk-card {
  background: #fff; border: 2px solid #e0f2fe; border-radius: 20px;
  padding: 32px 28px; transition: all .3s; position: relative; overflow: hidden;
}
.eb-risk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0284c7, #7dd3fc); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.eb-risk-card:hover { border-color: #bae6fd; box-shadow: 0 12px 40px rgba(2,132,199,.12); transform: translateY(-4px); }
.eb-risk-card:hover::before { transform: scaleX(1); }
.eb-risk-icon {
  width: 52px; height: 52px; border-radius: 14px; background: #e0f2fe;
  display: flex; align-items: center; justify-content: center;
  color: #0284c7; margin-bottom: 18px; transition: all .3s;
}
.eb-risk-card:hover .eb-risk-icon { background: #0284c7; color: #fff; }
.eb-risk-card h3 { font-size: 16px; font-weight: 800; color: #0a1628; margin-bottom: 10px; }
.eb-risk-card p { font-size: 13.5px; color: #6b7280; line-height: 1.65; margin-bottom: 14px; }
.eb-risk-stat {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: #fef2f2; color: #dc2626; border-radius: 100px; padding: 3px 10px;
}

/* Risk counter banner */
.eb-risk-banner {
  background: linear-gradient(135deg, #0a1628, #0d2146);
  border-radius: 20px; padding: 36px 44px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.eb-risk-banner-text { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; }
.eb-risk-banner-text strong { color: #fff; font-size: 17px; display: block; margin-bottom: 4px; }
.eb-risk-counter-box { text-align: center; }
.eb-risk-count { font-size: 52px; font-weight: 800; color: #7dd3fc; line-height: 1; }
.eb-risk-count-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* ══════════════════════════════════════════════════════
   MYTH BUSTERS — dark, flip cards
══════════════════════════════════════════════════════ */
.eb-myths { padding: 88px 20px; background: linear-gradient(135deg, #0a1628, #0d2146); }
.eb-myths-inner { max-width: 1100px; margin: 0 auto; }
.eb-myths-head { text-align: center; margin-bottom: 52px; }
.eb-myths-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #fff;
  letter-spacing: -.025em; margin-bottom: 14px;
}
.eb-myths-head h2 span { color: #7dd3fc; }
.eb-myths-head p { font-size: 15px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; }

.eb-myth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eb-myth-card { perspective: 900px; height: 280px; cursor: pointer; }
.eb-myth-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.eb-myth-card:hover .eb-myth-inner,
.eb-myth-card.flipped .eb-myth-inner { transform: rotateY(180deg); }
.eb-myth-front, .eb-myth-back {
  position: absolute; inset: 0; border-radius: 20px; padding: 32px 28px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
}
.eb-myth-front {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  justify-content: space-between;
}
.eb-myth-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border: 1.5px solid rgba(125,211,252,.4);
  justify-content: space-between;
}
.eb-myth-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: #ef4444; background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25);
  border-radius: 100px; padding: 4px 12px; display: inline-block; margin-bottom: 14px; width: fit-content;
}
.eb-myth-front h3 { font-size: 17px; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.4; flex: 1; }
.eb-myth-front p { font-size: 12px; color: rgba(255,255,255,.4); margin: 0; margin-top: 12px; }
.eb-myth-flip-hint { font-size: 11px; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 4px; }

.eb-truth-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: #a7f3d0; background: rgba(167,243,208,.15); border: 1px solid rgba(167,243,208,.3);
  border-radius: 100px; padding: 4px 12px; display: inline-block; margin-bottom: 14px; width: fit-content;
}
.eb-myth-back h3 { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.5; flex: 1; }
.eb-myth-back p { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════
   EMAIL SOURCE TABS — provider explorer
══════════════════════════════════════════════════════ */
.eb-sources { padding: 88px 20px; background: #fff; }
.eb-sources-inner { max-width: 1100px; margin: 0 auto; }
.eb-sources-head { text-align: center; margin-bottom: 44px; }
.eb-sources-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-sources-head p { font-size: 15px; color: #6b7280; max-width: 520px; margin: 0 auto; }

.eb-src-tabs {
  display: flex; gap: 8px; margin-bottom: 28px;
  overflow-x: auto; padding-bottom: 4px;
}
.eb-src-tab {
  display: flex; align-items: center; gap: 8px; padding: 11px 20px;
  background: #f0f9ff; border: 1.5px solid #e0f2fe; border-radius: 10px;
  font-size: 13px; font-weight: 700; color: #0c4a6e; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.eb-src-tab:hover { background: #e0f2fe; border-color: #bae6fd; }
.eb-src-tab.active { background: #0284c7; color: #fff; border-color: #0284c7; box-shadow: 0 4px 14px rgba(2,132,199,.3); }
.eb-src-tab-icon { font-size: 18px; }

.eb-src-panel { display: none; }
.eb-src-panel.active { display: block; animation: ebfade .3s ease; }
@keyframes ebfade { from{opacity:0} to{opacity:1} }
.eb-src-wrap {
  background: #f0f9ff; border: 1.5px solid #bae6fd; border-radius: 20px;
  padding: 40px; display: grid; grid-template-columns: 240px 1fr 1fr; gap: 40px; align-items: start;
}
.eb-src-identity { }
.eb-src-logo {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.eb-src-name { font-size: 20px; font-weight: 800; color: #0a1628; margin-bottom: 6px; }
.eb-src-desc { font-size: 13px; color: #6b7280; line-height: 1.65; margin-bottom: 16px; }
.eb-src-stat { font-size: 12px; font-weight: 700; color: #0284c7; }
.eb-src-what h4 { font-size: 13px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.eb-src-items { display: flex; flex-direction: column; gap: 8px; }
.eb-src-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #374151; font-weight: 600;
}
.eb-src-item-dot { width: 6px; height: 6px; border-radius: 50%; background: #0284c7; flex-shrink: 0; }
.eb-src-formats h4 { font-size: 13px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.eb-fmt-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.eb-fmt-pill {
  background: #fff; border: 1.5px solid #bae6fd; border-radius: 8px;
  padding: 5px 11px; font-size: 11.5px; font-weight: 700; color: #0c4a6e;
  transition: all .2s;
}
.eb-fmt-pill:hover { background: #0284c7; color: #fff; border-color: #0284c7; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — vertical sidebar + screenshot
══════════════════════════════════════════════════════ */
.eb-hiw { padding: 88px 20px; background: #f0f9ff; }
.eb-hiw-inner { max-width: 1100px; margin: 0 auto; }
.eb-hiw-head { text-align: center; margin-bottom: 52px; }
.eb-hiw-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-hiw-head p { font-size: 15px; color: #6b7280; max-width: 520px; margin: 0 auto; }
.eb-hiw-layout { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }

/* Left sidebar steps */
.eb-hiw-steps { display: flex; flex-direction: column; gap: 0; }
.eb-hiw-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border-radius: 16px; cursor: pointer;
  transition: all .25s; border: 2px solid transparent; position: relative;
}
.eb-hiw-step:not(:last-child)::after {
  content: ''; position: absolute; left: 38px; bottom: -1px;
  width: 2px; height: 2px; background: #bae6fd;
}
.eb-hiw-step.active {
  background: #fff; border-color: #bae6fd;
  box-shadow: 0 4px 20px rgba(2,132,199,.1);
}
.eb-step-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: #e0f2fe; color: #0284c7; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.eb-hiw-step.active .eb-step-num { background: #0284c7; color: #fff; box-shadow: 0 4px 14px rgba(2,132,199,.4); }
.eb-step-body h4 { font-size: 14px; font-weight: 700; color: #374151; margin-bottom: 4px; transition: color .2s; }
.eb-hiw-step.active .eb-step-body h4 { color: #0a1628; }
.eb-step-body p { font-size: 12.5px; color: #9ca3af; line-height: 1.5; margin: 0; }
.eb-hiw-step.active .eb-step-body p { color: #6b7280; }

/* Right screenshot panel */
.eb-hiw-screen {
  background: #fff; border: 1.5px solid #bae6fd; border-radius: 20px;
  overflow: hidden; box-shadow: 0 16px 48px rgba(2,132,199,.1);
  position: sticky; top: 80px;
}
.eb-hiw-slide { display: none; }
.eb-hiw-slide.active { display: block; animation: ebslide .35s ease; }
@keyframes ebslide { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.eb-hiw-slide img { width: 100%; display: block; }
.eb-hiw-slide-caption {
  padding: 16px 20px; background: #f0f9ff;
  font-size: 13px; font-weight: 600; color: #6b7280;
  border-top: 1px solid #bae6fd;
  display: flex; align-items: center; gap: 8px;
}

/* ══════════════════════════════════════════════════════
   OUTPUT FORMATS — categorised pill grid
══════════════════════════════════════════════════════ */
.eb-formats { padding: 88px 20px; background: #fff; }
.eb-formats-inner { max-width: 1100px; margin: 0 auto; }
.eb-formats-head { text-align: center; margin-bottom: 44px; }
.eb-formats-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-formats-head p { font-size: 15px; color: #6b7280; max-width: 520px; margin: 0 auto; }

.eb-fmt-filter { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.eb-fmt-btn {
  padding: 8px 18px; background: #f0f9ff; border: 1.5px solid #e0f2fe;
  border-radius: 8px; font-size: 13px; font-weight: 700; color: #0c4a6e;
  cursor: pointer; transition: all .2s;
}
.eb-fmt-btn:hover { background: #e0f2fe; border-color: #bae6fd; }
.eb-fmt-btn.active { background: #0284c7; color: #fff; border-color: #0284c7; }

.eb-fmt-group { display: none; }
.eb-fmt-group.active { display: block; animation: ebfade .3s ease; }
.eb-fmt-group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 14px; }
.eb-fmt-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.eb-fmt-badge {
  background: #f0f9ff; border: 1.5px solid #bae6fd; border-radius: 10px;
  padding: 9px 16px; font-size: 13px; font-weight: 700; color: #0c4a6e;
  display: flex; align-items: center; gap: 6px; transition: all .2s; cursor: default;
}
.eb-fmt-badge:hover { background: #0284c7; color: #fff; border-color: #0284c7; transform: translateY(-2px); }
.eb-fmt-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #0284c7; }
.eb-fmt-badge:hover .eb-fmt-badge-dot { background: #fff; }

/* ══════════════════════════════════════════════════════
   FEATURES — 2×4 card grid, hover lift
══════════════════════════════════════════════════════ */
.eb-features { padding: 88px 20px; background: #f0f9ff; }
.eb-features-inner { max-width: 1100px; margin: 0 auto; }
.eb-features-head { text-align: center; margin-bottom: 52px; }
.eb-features-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-features-head p { font-size: 15px; color: #6b7280; max-width: 540px; margin: 0 auto; }
.eb-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.eb-feat-card {
  background: #fff; border: 1.5px solid #e0f2fe; border-radius: 18px;
  padding: 28px 24px; transition: all .3s;
}
.eb-feat-card:hover {
  border-color: #bae6fd; box-shadow: 0 12px 36px rgba(2,132,199,.12);
  transform: translateY(-6px);
}
.eb-feat-card-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #e0f2fe;
  color: #0284c7; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all .3s;
}
.eb-feat-card:hover .eb-feat-card-icon { background: #0284c7; color: #fff; }
.eb-feat-card h3 { font-size: 15px; font-weight: 700; color: #0a1628; margin-bottom: 8px; line-height: 1.3; }
.eb-feat-card p { font-size: 13px; color: #6b7280; line-height: 1.65; margin: 0; }
.eb-feat-tag {
  display: inline-block; margin-top: 12px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #0284c7; background: #e0f2fe; border-radius: 100px; padding: 3px 10px;
}

/* ══════════════════════════════════════════════════════
   USE CASES — persona tabs
══════════════════════════════════════════════════════ */
.eb-usecases { padding: 88px 20px; background: linear-gradient(135deg, #0a1628, #0d2146); }
.eb-usecases-inner { max-width: 1100px; margin: 0 auto; }
.eb-usecases-head { text-align: center; margin-bottom: 48px; }
.eb-usecases-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #fff;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-usecases-head p { font-size: 15px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; }

.eb-uc-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.eb-uc-tab {
  padding: 12px 28px; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6);
  cursor: pointer; transition: all .25s;
}
.eb-uc-tab:hover { background: rgba(125,211,252,.1); border-color: rgba(125,211,252,.3); color: #bae6fd; }
.eb-uc-tab.active { background: #0284c7; border-color: #0284c7; color: #fff; box-shadow: 0 4px 16px rgba(2,132,199,.4); }

.eb-uc-panel { display: none; }
.eb-uc-panel.active {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  animation: ebfade .3s ease;
}
.eb-uc-story blockquote {
  font-size: 18px; font-style: italic; color: rgba(255,255,255,.8);
  line-height: 1.7; margin: 0 0 20px; border-left: 3px solid #7dd3fc; padding-left: 20px;
}
.eb-uc-story-meta { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.5); padding-left: 20px; }
.eb-uc-points { display: flex; flex-direction: column; gap: 14px; }
.eb-uc-point {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 16px 18px;
}
.eb-uc-point-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(125,211,252,.15); color: #7dd3fc;
  display: flex; align-items: center; justify-content: center;
}
.eb-uc-point h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.eb-uc-point p { font-size: 12.5px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   STATS — dark 4-col counters
══════════════════════════════════════════════════════ */
.eb-stats { padding: 80px 20px; background: #0a1628; }
.eb-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.06); border-radius: 20px; overflow: hidden;
}
.eb-stat-block {
  background: rgba(255,255,255,.03); padding: 44px 32px; text-align: center;
  transition: background .3s;
}
.eb-stat-block:hover { background: rgba(2,132,199,.1); }
.eb-stat-big { font-size: 48px; font-weight: 800; color: #7dd3fc; line-height: 1; margin-bottom: 8px; }
.eb-stat-label { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.eb-stat-sub { font-size: 12px; color: rgba(255,255,255,.28); margin-top: 6px; }

/* ══════════════════════════════════════════════════════
   REVIEWS — 3-col testimonial grid
══════════════════════════════════════════════════════ */
.eb-reviews { padding: 88px 20px; background: #fff; }
.eb-reviews-inner { max-width: 1100px; margin: 0 auto; }
.eb-reviews-head { text-align: center; margin-bottom: 52px; }
.eb-reviews-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-reviews-head p { font-size: 15px; color: #6b7280; max-width: 500px; margin: 0 auto; }
.eb-rating-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: #f0f9ff; border: 1.5px solid #bae6fd; border-radius: 100px;
  padding: 12px 24px; margin-top: 20px;
}
.eb-rating-num { font-size: 20px; font-weight: 800; color: #0a1628; }
.eb-rating-lbl { font-size: 12px; color: #6b7280; }

/* Featured review */
.eb-review-featured {
  background: linear-gradient(135deg, #0a1628, #0d2146);
  border-radius: 24px; padding: 48px 52px; margin-bottom: 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
}
.eb-rf-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0284c7, #7dd3fc);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: #fff;
  box-shadow: 0 0 0 4px rgba(125,211,252,.2);
}
.eb-rf-body blockquote {
  font-size: 18px; font-style: italic; color: rgba(255,255,255,.85);
  line-height: 1.65; margin: 0 0 18px; position: relative;
}
.eb-rf-body blockquote::before { content: '"'; font-size: 64px; color: rgba(125,211,252,.2); line-height: 0; vertical-align: -.5em; margin-right: 4px; }
.eb-rf-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.eb-rf-name { font-size: 15px; font-weight: 700; color: #fff; }
.eb-rf-loc  { font-size: 13px; color: rgba(255,255,255,.45); }
.eb-rf-tag  { background: rgba(125,211,252,.15); border: 1px solid rgba(125,211,252,.28); color: #bae6fd; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-left: auto; }

/* 3-col grid */
.eb-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.eb-review-card {
  background: #f0f9ff; border: 1.5px solid #e0f2fe; border-radius: 18px;
  padding: 28px 24px; transition: all .25s;
}
.eb-review-card:hover { box-shadow: 0 10px 36px rgba(2,132,199,.1); transform: translateY(-3px); border-color: #bae6fd; }
.eb-rc-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f59e0b; font-size: 14px; }
.eb-rc-text { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.eb-rc-meta { display: flex; align-items: center; gap: 10px; }
.eb-rc-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #e0f2fe; color: #0284c7; border: 1.5px solid #bae6fd;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
}
.eb-rc-name { font-size: 14px; font-weight: 700; color: #0a1628; }
.eb-rc-loc  { font-size: 12px; color: #9ca3af; }

/* ══════════════════════════════════════════════════════
   PRICING — 3-tier comparison table
══════════════════════════════════════════════════════ */
.eb-pricing { padding: 88px 20px; background: #f0f9ff; }
.eb-pricing-inner { max-width: 960px; margin: 0 auto; }
.eb-pricing-head { text-align: center; margin-bottom: 44px; }
.eb-pricing-head h2 {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: #0a1628;
  letter-spacing: -.025em; margin-bottom: 12px;
}
.eb-pricing-head p { font-size: 15px; color: #6b7280; }

.eb-price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.eb-price-card {
  background: #fff; border: 2px solid #e0f2fe; border-radius: 22px;
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.eb-price-card.popular { border-color: #0284c7; box-shadow: 0 0 0 1px #0284c7, 0 20px 60px rgba(2,132,199,.15); }
.eb-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #0284c7; color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.eb-price-tier { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 8px; }
.eb-price-card.popular .eb-price-tier { color: #0284c7; }
.eb-price-val { font-size: 42px; font-weight: 800; color: #0a1628; line-height: 1; margin-bottom: 4px; }
.eb-price-val sup { font-size: 20px; vertical-align: top; margin-top: 8px; font-weight: 700; }
.eb-price-note { font-size: 13px; color: #9ca3af; margin-bottom: 24px; }
.eb-price-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.eb-price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: #374151; line-height: 1.5; }
.eb-pf-yes { color: #16a34a; flex-shrink: 0; margin-top: 1px; }
.eb-pf-no  { color: #d1d5db; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════
   SPECS — clean table
══════════════════════════════════════════════════════ */
.eb-specs { padding: 72px 20px; background: #fff; }
.eb-specs-inner { max-width: 820px; margin: 0 auto; }
.eb-specs-head { text-align: center; margin-bottom: 36px; }
.eb-specs-head h2 { font-size: 28px; font-weight: 800; color: #0a1628; margin-bottom: 10px; }
.eb-specs-head p  { font-size: 15px; color: #6b7280; }
.eb-specs-table {
  width: 100%; border-collapse: collapse;
  border: 1.5px solid #e0f2fe; border-radius: 16px; overflow: hidden;
}
.eb-specs-table tr:nth-child(even) td { background: #f0f9ff; }
.eb-specs-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid #e0f2fe; }
.eb-specs-table tr:last-child td { border-bottom: none; }
.eb-specs-table td:first-child { font-weight: 700; color: #6b7280; width: 200px; }
.eb-specs-table td:last-child  { color: #0a1628; }

/* ══════════════════════════════════════════════════════
   CTA — dark indigo + gold warmth
══════════════════════════════════════════════════════ */
.eb-cta {
  padding: 96px 20px; text-align: center;
  background: linear-gradient(135deg, #0a1628, #0d2146, #0a1d3a);
  position: relative; overflow: hidden;
}
.eb-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(255,215,0,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(2,132,199,.12) 0%, transparent 45%);
}
.eb-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.eb-cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff;
  margin-bottom: 16px; letter-spacing: -.03em; line-height: 1.1;
}
.eb-cta-inner h2 span { color: #7dd3fc; }
.eb-cta-inner p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 40px; }
.eb-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.eb-cta-note { font-size: 12.5px; color: rgba(255,255,255,.35); margin-top: 18px; }

/* ══════════════════════════════════════════════════════
   FAQ — light lavender
══════════════════════════════════════════════════════ */
.eb-faq { padding: 88px 20px; background: #f0f9ff; }
.eb-faq-inner { max-width: 780px; margin: 0 auto; }
.eb-faq-head { text-align: center; margin-bottom: 44px; }
.eb-faq-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #0a1628; letter-spacing: -.025em; margin-bottom: 10px; }
.eb-faq-head p  { font-size: 15px; color: #6b7280; }
.eb-faq-list { display: flex; flex-direction: column; gap: 10px; }
.eb-faq-item { background: #fff; border: 2px solid #e0f2fe; border-radius: 16px; overflow: hidden; transition: border-color .3s; }
.eb-faq-item.open { border-color: #0284c7; }
.eb-faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 14px;
}
.eb-faq-qtext { font-size: 15px; font-weight: 700; color: #0a1628; line-height: 1.4; }
.eb-faq-chev {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: #e0f2fe; border: 1.5px solid #bae6fd;
  display: flex; align-items: center; justify-content: center;
  color: #0284c7; transition: transform .3s, background .2s;
}
.eb-faq-item.open .eb-faq-chev { transform: rotate(180deg); background: #0284c7; border-color: #0284c7; color: #fff; }
.eb-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.eb-faq-item.open .eb-faq-a { max-height: 500px; }
.eb-faq-ainner { padding: 0 24px 22px; font-size: 14px; color: #6b7280; line-height: 1.75; }
.eb-faq-ainner ul { padding-left: 18px; margin: 8px 0 0; }
.eb-faq-ainner li { margin-bottom: 6px; }

/* ══════════════════════════════════════════════════════
   NAV — DOWNLOAD DROPDOWN
══════════════════════════════════════════════════════ */
.eb-nav-dl-wrap { position: relative; }
.eb-nav-dl-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: .55rem 1.15rem; font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap;
  text-decoration: none;
}
.eb-nav-dl-btn:hover { background: #009a3e; transform: translateY(-1px); }
.eb-nav-chev { transition: transform .25s; }
.eb-nav-dl-wrap.open .eb-nav-chev { transform: rotate(180deg); }
.eb-nav-dl-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1.5px solid #bae6fd; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15); min-width: 240px; z-index: 9999;
  overflow: hidden;
  display: none;
}
.eb-nav-dl-wrap.open .eb-nav-dl-dropdown { display: block; }
.eb-nav-dl-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  text-decoration: none; transition: background .15s; border-bottom: 1px solid #f0f9ff;
}
.eb-nav-dl-item:last-child { border-bottom: none; }
.eb-nav-dl-item:hover { background: #f0f9ff; }
.eb-nav-dl-item strong { display: block; font-size: 13px; font-weight: 700; color: #0a1628; }
.eb-nav-dl-item span  { display: block; font-size: 11px; color: #9ca3af; margin-top: 1px; }

/* ══════════════════════════════════════════════════════
   HERO — OS PILL TOGGLE
══════════════════════════════════════════════════════ */
.eb-os-toggle {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 5px; gap: 4px;
  margin-bottom: 20px;
}
.eb-os-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5);
  cursor: pointer; transition: all .22s; user-select: none;
}
.eb-os-pill:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); }
.eb-os-pill.active {
  background: #0284c7; color: #fff;
  box-shadow: 0 3px 12px rgba(2,132,199,.45);
}

/* Hero CTA buttons */
.eb-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 11px;
  font-size: 15px; font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  animation: ebbtnpulse 3s ease-in-out infinite;
}
.eb-hero-btn-primary:hover { background: #009a3e; transform: translateY(-2px); color: #fff; animation: none; box-shadow: 0 8px 28px rgba(0,155,62,.55); }
@keyframes ebbtnpulse {
  0%,100% { box-shadow: 0 4px 18px rgba(0,155,62,.28); }
  50%      { box-shadow: 0 6px 32px rgba(0,155,62,.55); }
}
.eb-hero-btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.18); text-decoration: none;
  padding: 14px 22px; border-radius: 11px;
  font-size: 15px; font-weight: 700; transition: all .2s;
}
.eb-hero-btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }

/* ══════════════════════════════════════════════════════
   HERO — SCREENSHOT QUICK-LINK BUTTONS
══════════════════════════════════════════════════════ */
.eb-screen-qlinks {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  padding: 14px 0 0; margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.eb-qlink-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7); text-decoration: none; transition: all .2s;
  white-space: nowrap;
}
.eb-qlink-btn:hover {
  background: rgba(125,211,252,.12); border-color: rgba(125,211,252,.3);
  color: #7dd3fc;
}

/* ══════════════════════════════════════════════════════
   FEATURES — 2-col grid layout enhancements
══════════════════════════════════════════════════════ */
.eb-feat-card { display: flex; flex-direction: column; }
.eb-feat-card-icon { flex-shrink: 0; }
.eb-feat-card p { flex: 1; }

/* ══════════════════════════════════════════════════════
   PRICING — COMPARISON TABLE
══════════════════════════════════════════════════════ */
.eb-cmp-wrap { max-width: 820px; margin: 0 auto; overflow-x: auto; }
.eb-cmp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 2px solid #bae6fd; border-radius: 20px; overflow: hidden;
  background: #fff;
}
.eb-cmp-thead { }
.eb-cmp-thead th {
  background: #0a1628; color: #fff; font-size: 14px;
  padding: 22px; text-align: center; font-weight: 600;
}
.eb-cmp-thead th:first-child { text-align: left; background: #0d2146; }
.eb-th-free {
  background: #0d2146; font-size: 17px; font-weight: 800;
  border-left: 2px solid rgba(255,255,255,.08);
}
.eb-th-pro {
  background: #0284c7; font-size: 17px; font-weight: 800;
  border-left: 2px solid rgba(255,255,255,.08); position: relative;
}
.eb-cmp-cat td {
  background: #e0f2fe !important; color: #0284c7;
  font-weight: 700; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .07em; padding: 10px 22px;
}
.eb-feat-col { text-align: left; color: #374151; font-weight: 600; font-size: 14px; padding: 13px 22px; }
.eb-cmp-table td  { padding: 13px 22px; text-align: center; border-bottom: 1px solid #e0f2fe; font-size: 14px; }
.eb-cmp-table tr:last-child td { border-bottom: none; }
.eb-cmp-table tr:hover td { background: #f0f9ff; }
.eb-cmp-yes { color: #16a34a; font-size: 18px; font-weight: 800; }
.eb-cmp-no  { color: #cbd5e1; font-size: 16px; }
.eb-cmp-val { color: #374151; font-weight: 600; font-size: 13px; }
.eb-cmp-val-pro { color: #0284c7; font-weight: 800; font-size: 13px; }
.eb-cmp-cta-row td { background: #f0f9ff !important; padding: 18px 22px; vertical-align: middle; }
.eb-cmp-cta-free {
  display: inline-block; padding: 11px 22px; border-radius: 8px;
  background: transparent; border: 2px solid #0284c7; color: #0284c7;
  font-size: 13px; font-weight: 700; text-decoration: none; transition: all .2s;
}
.eb-cmp-cta-free:hover { background: #0284c7; color: #fff; }
.eb-cmp-cta-pro {
  display: inline-block; padding: 11px 22px; border-radius: 8px;
  background: #0284c7; color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 14px rgba(2,132,199,.3);
}
.eb-cmp-cta-pro:hover { background: #0369a1; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   SPECS — ENHANCED WITH DL BAR + OS TABS + RESOURCES
══════════════════════════════════════════════════════ */
.eb-specs-dlbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding: 20px 24px;
  background: #f0f9ff; border: 2px solid #bae6fd; border-radius: 16px;
  margin-bottom: 20px;
}
.eb-specs-dlbar-left  { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.eb-specs-dlbar-right { display: flex; align-items: center; gap: 10px; }
.eb-specs-ver-badge {
  background: #0a1628; color: #7dd3fc; font-size: 12px; font-weight: 800;
  padding: 6px 14px; border-radius: 100px; letter-spacing: .04em;
  border: 1.5px solid rgba(125,211,252,.25);
}
.eb-specs-os-tabs { display: flex; gap: 4px; background: #fff; border: 1.5px solid #bae6fd; border-radius: 10px; overflow: hidden; padding: 3px; }
.eb-specs-os-tab {
  display: flex; align-items: center; gap: 7px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; color: #6b7280;
  background: none; border: none; border-radius: 7px;
  cursor: pointer; transition: all .2s;
}
.eb-specs-os-tab.active { background: #0284c7; color: #fff; box-shadow: 0 2px 8px rgba(2,132,199,.3); }
.eb-specs-fileinfo { font-size: 12px; color: #6b7280; font-weight: 600; }
.eb-specs-dl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff; border: none; border-radius: 10px;
  padding: 11px 22px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap;
}
.eb-specs-dl-btn:hover { background: #009a3e; transform: translateY(-1px); color: #fff; }

.eb-specs-resources {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid #bae6fd;
}
.eb-res-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #fff; border: 1.5px solid #bae6fd;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  color: #0284c7; text-decoration: none; transition: all .2s;
}
.eb-res-btn:hover { background: #0284c7; color: #fff; border-color: #0284c7; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(2,132,199,.2); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .eb-hero-inner        { grid-template-columns: 1fr; gap: 40px; }
  .eb-hero-screen       { max-width: 600px; margin: 0 auto; }
  .eb-float-1, .eb-float-2 { display: none; }
  .eb-src-wrap          { grid-template-columns: 1fr 1fr; }
  .eb-src-identity      { grid-column: 1 / -1; }
  .eb-hiw-layout        { grid-template-columns: 280px 1fr; gap: 32px; }
  .eb-feat-grid         { grid-template-columns: repeat(2, 1fr); }
  .eb-uc-panel.active   { grid-template-columns: 1fr; gap: 32px; }
  .eb-review-featured   { grid-template-columns: 1fr; text-align: center; }
  .eb-rf-avatar         { margin: 0 auto; }
  .eb-rf-meta           { justify-content: center; }
}
@media (max-width: 768px) {
  .eb-risk-grid         { grid-template-columns: 1fr; }
  .eb-myth-grid         { grid-template-columns: 1fr; }
  .eb-myth-card         { height: auto; }
  .eb-myth-inner        { transform-style: flat; transform: none !important; }
  .eb-myth-front        { position: static; border-radius: 20px; backface-visibility: visible; }
  .eb-myth-back         { display: none; }
  .eb-myth-card.flipped .eb-myth-back  { display: block; position: static; transform: none; backface-visibility: visible; }
  .eb-myth-card.flipped .eb-myth-front { display: none; }
  .eb-src-wrap          { grid-template-columns: 1fr; }
  .eb-hiw-layout        { grid-template-columns: 1fr; }
  .eb-hiw-screen        { position: static; }
  .eb-os-toggle         { flex-wrap: wrap; }
  .eb-os-pill           { flex: 1; justify-content: center; }
  .eb-specs-dlbar       { flex-direction: column; align-items: flex-start; }
  .eb-screen-qlinks     { gap: 6px; }
  .eb-qlink-btn         { font-size: 11px; padding: 7px 11px; }
  .eb-feat-grid         { grid-template-columns: 1fr 1fr; }
  .eb-review-grid       { grid-template-columns: 1fr; }
  .eb-price-cards       { grid-template-columns: 1fr; }
  .eb-stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .prd-nav-links        { display: none; }
  .eb-cta-btns          { flex-direction: column; align-items: center; }
  .eb-risk-banner       { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .eb-feat-grid         { grid-template-columns: 1fr; }
  .eb-stats-inner       { grid-template-columns: 1fr 1fr; }
  .eb-dl-tabs           { flex-direction: column; }
}

