/* ═══════════════════════════════════════════════════════════════
   Topessayz — main.css
   Color System: Sky Blue primary, Coral accent, Clean whites
   Font: Plus Jakarta Sans + Fraunces (display)
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ────────────────────────────────────────────── */
:root {
  /* Primary palette */
  --sky:        #0EA5E9;   /* Primary blue */
  --sky-dark:   #0284C7;
  --sky-light:  #E0F2FE;
  --sky-xlight: #F0F9FF;
  --coral:      #F97316;   /* Accent orange-coral */
  --coral-dark: #EA580C;
  --coral-light:#FFF7ED;

  /* Neutrals */
  --ink:        #0F172A;   /* Darkest text */
  --ink-2:      #1E293B;
  --body:       #334155;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --offwhite:   #F8FAFC;
  --white:      #FFFFFF;

  /* Semantic */
  --success:    #10B981;
  --info:       #3B82F6;
  --warning:    #F59E0B;

  /* Typography */
  --sans:   'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --serif:  'Fraunces', Georgia, serif;

  /* Layout */
  --max-w:  1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:     0 4px 16px rgba(14,165,233,.08), 0 2px 8px rgba(15,23,42,.06);
  --shadow-md:  0 8px 32px rgba(14,165,233,.12), 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg:  0 20px 60px rgba(14,165,233,.15), 0 8px 24px rgba(15,23,42,.1);
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--sky); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sky-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── UTILITIES ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-20  { margin-top: 20px; }
.mt-36  { margin-top: 36px; }

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── EYEBROW ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow-sky   { background: var(--sky-xlight); color: var(--sky-dark); }
.eyebrow-coral { background: var(--coral-light); color: var(--coral-dark); }
.eyebrow-white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.eyebrow-blue  { background: rgba(59,130,246,.1); color: var(--info); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  box-shadow: 0 4px 14px rgba(14,165,233,.35);
}
.btn-primary:hover {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14,165,233,.45);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
}

.btn-outline {
  background: transparent;
  color: var(--sky);
  border-color: var(--sky);
}
.btn-outline:hover {
  background: var(--sky);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

.btn-lg  { padding: 15px 36px; font-size: .95rem; }
.btn-xl  { padding: 18px 44px; font-size: 1rem;   border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }

.btn-free-badge {
  font-size: .62rem;
  font-weight: 800;
  background: rgba(255,255,255,.22);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: .06em;
}

/* ── TOPBAR ───────────────────────────────────────────────────── */
.topbar {
  background: var(--sky);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-msg { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.topbar-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.topbar-link:hover { color: var(--coral-light); }
.topbar-trust { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); }
.topbar-sep { opacity: .4; }

/* ── HEADER / NAV ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.logo-wrap:hover { opacity: .88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--sky);
  background: var(--sky-xlight);
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-login {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-login:hover { color: var(--sky); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  margin-left: auto;
}
.hamburger:hover { background: var(--sky-xlight); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}
.mm-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.mm-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mm-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: all .15s;
}
.mm-links a:hover {
  color: var(--sky);
  border-left-color: var(--sky);
  background: var(--sky-xlight);
}
.mm-cta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── HERO SLIDER ──────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #0C4A6E 100%);
  overflow: hidden;
  min-height: 600px;
}

.slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-h1 .accent { color: var(--coral); }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 16px;
}

.hero-submit-line {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}
.hero-submit-line a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 5px 12px;
}
.trust-chip::before { content: '✓'; color: var(--sky); }

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(249,115,22,.18);
  color: #FED7AA;
  border: 1px solid rgba(249,115,22,.25);
  padding: 5px 12px;
  border-radius: 100px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hs-item { text-align: center; }
.hs-val {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hs-val span { font-size: 1.1rem; color: var(--coral); }
.hs-lbl { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* Hero card */
.hero-card-wrap {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.hc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(16,185,129,.15);
  color: #6EE7B7;
  border: 1px solid rgba(16,185,129,.25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.hc-title { font-size: .95rem; font-weight: 700; margin-bottom: 18px; line-height: 1.4; }
.hc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.hc-field { background: rgba(255,255,255,.05); border-radius: 8px; padding: 10px 12px; }
.hc-fl { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.hc-fv { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hc-sep { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 16px; }
.hc-experts-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hc-avs { display: flex; }
.hc-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255,255,255,.1);
  margin-right: -8px;
}
.hc-exp-txt { font-size: .8rem; color: rgba(255,255,255,.65); }
.hc-exp-txt strong { color: #fff; }
.hc-footer { display: flex; justify-content: space-between; font-size: .72rem; margin-bottom: 16px; color: rgba(255,255,255,.5); }
.hc-free { color: #6EE7B7; font-weight: 600; }

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.hb-1 { top: -16px; right: -10px; }
.hb-2 { bottom: 40px; left: -24px; }
.hbdot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.hbdot-coral { background: var(--coral); }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.sdot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 4px;
}
.sarr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.sarr:hover { background: rgba(255,255,255,.2); }
.sarr-prev { left: 20px; }
.sarr-next { right: 20px; }

/* ── PROOF BAR ────────────────────────────────────────────────── */
.proof-bar {
  background: var(--sky-xlight);
  border-bottom: 1px solid var(--sky-light);
  padding: 14px 0;
  overflow: hidden;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.pi-icon { color: var(--sky); }
.proof-sep { color: var(--border); font-size: .8rem; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-light), var(--coral-light));
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}
.how-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(14,165,233,.35);
  font-family: var(--serif);
}
.how-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.how-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── SERVICES GRID ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sky-xlight), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.svc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.svc-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; position: relative; z-index: 1; }
.svc-tag {
  font-size: .68rem;
  font-weight: 700;
  background: var(--sky-xlight);
  color: var(--sky-dark);
  border: 1px solid var(--sky-light);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ── COUNTRY TABS ─────────────────────────────────────────────── */
.ctabs-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ctab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.ctab-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,165,233,.3);
}
.ctab-btn:not(.active):hover { border-color: var(--sky); color: var(--sky); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.subjects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.subject-chip {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 100px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.subject-chip:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  box-shadow: 0 4px 14px rgba(14,165,233,.25);
  transform: translateY(-1px);
}

/* ── WHY US ───────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}
.why-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 10px;
}
.why-lbl { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.why-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── PRICING ──────────────────────────────────────────────────── */
.price-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.ptab.active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.3);
}
.ptab-flag { font-size: 1rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12), var(--shadow-md);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(14,165,233,.35);
}
.plan-name { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.plan-meta { font-size: .78rem; color: var(--muted); margin-bottom: 20px; }
.plan-price { display: flex; align-items: flex-start; line-height: 1; margin-bottom: 4px; }
.price-sym { font-size: 1.4rem; font-weight: 700; color: var(--sky); padding-top: 8px; }
.price-val {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--ink);
  transition: all .3s;
}
.price-val.price-flip { animation: priceFlip .3s ease; }
@keyframes priceFlip { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0;transform:translateY(-6px)} }
.price-best { font-size: .76rem; font-weight: 700; color: var(--success); margin-bottom: 16px; }
.plan-feats { margin: 16px 0 24px; padding: 0; }
.plan-feats li {
  font-size: .85rem;
  color: var(--body);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-feats li:last-child { border: none; }
.plan-feats li::before { content: '✓'; color: var(--sky); font-weight: 800; flex-shrink: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
}
.tcard:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(14,165,233,.3);
  transform: translateY(-3px);
}
.tcard-stars { color: #FBBF24; font-size: .9rem; letter-spacing: 1px; margin-bottom: 10px; }
.tcard-grade {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(16,185,129,.15);
  color: #6EE7B7;
  border: 1px solid rgba(16,185,129,.25);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.tcard-type { font-size: .68rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.tcard-subject { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.tcard-body { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tcard-name { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); }
.tcard-detail { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── GUARANTEES ───────────────────────────────────────────────── */
.guar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guar-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.guar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}
.guar-icon { font-size: 2.2rem; margin-bottom: 16px; }
.guar-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.guar-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .2s;
  gap: 12px;
}
.faq-q:hover { background: var(--sky-xlight); }
.faq-ico {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
.faq-ans {
  display: none;
  padding: 0 20px 18px;
  background: var(--sky-xlight);
}
.faq-ans p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 14px 0 0; }

/* ── BLOG GRID ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--sky-xlight); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 24px; }
.post-cats-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.post-cat-pill {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--sky-xlight);
  color: var(--sky-dark);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--sky-light);
}
.post-date-sm { font-size: .72rem; color: var(--muted); margin-left: auto; }
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--sky); }
.blog-card-excerpt { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.read-time { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.read-more-link { font-size: .8rem; font-weight: 700; color: var(--sky); }
.read-more-link:hover { color: var(--sky-dark); }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dark) 0%, #0C4A6E 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.15) 0%, transparent 60%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}
.cta-desc a { color: var(--coral); text-decoration: underline; font-weight: 600; }
.cta-acts { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer { background: var(--ink); }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  transition: all .2s;
  text-decoration: none;
}
.footer-social:hover { background: var(--sky); border-color: var(--sky); color: #fff; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.35); font-size: .78rem; transition: color .15s; }
.footer-links a:hover { color: var(--sky); }

/* ── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs {
  font-size: .78rem;
  color: var(--muted);
  padding: 12px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--sky); }

/* ── SINGLE / PAGE / SIDEBAR ──────────────────────────────────── */
.post-wrap { max-width: 860px; margin: 0 auto; }
.content-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.widget { margin-bottom: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.widget-title { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

/* Post content typography */
.post-content h2 { font-size: 1.5rem; margin: 2em 0 .75em; }
.post-content h3 { font-size: 1.2rem; margin: 1.75em 0 .6em; }
.post-content p  { font-size: .95rem; line-height: 1.8; margin-bottom: 1.2em; }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.post-content li { font-size: .95rem; line-height: 1.7; margin-bottom: .4em; }
.post-content blockquote {
  border-left: 4px solid var(--sky);
  padding: 16px 20px;
  margin: 1.5em 0;
  background: var(--sky-xlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-2);
}
.post-content img { border-radius: var(--radius-sm); margin: 1.5em 0; }
.post-content a { color: var(--sky); text-decoration: underline; }
.post-content code {
  background: var(--sky-xlight);
  color: var(--sky-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .85em;
}

/* ── 404 ──────────────────────────────────────────────────────── */
.page-404 { text-align: center; padding: 100px 0; }
.page-404 h1 {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--sky);
  margin-bottom: 16px;
}

/* ── SEARCH ───────────────────────────────────────────────────── */
.search-form-wrap { max-width: 480px; margin: 0 auto 40px; }
.search-form { display: flex; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.search-form:focus-within { border-color: var(--sky); }
.search-field { flex: 1; padding: 13px 18px; border: none; outline: none; font-family: var(--sans); font-size: .9rem; }
.search-submit { background: var(--sky); color: #fff; border: none; padding: 0 20px; font-size: .9rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.search-submit:hover { background: var(--sky-dark); }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.an {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.an.visible {
  opacity: 1;
  transform: none;
}

/* ── ARCHIVE / CATEGORY ───────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.archive-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 60px 0;
  margin-bottom: 0;
}
.archive-header h1 { color: #fff; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.archive-header p  { color: rgba(255,255,255,.55); margin-top: 10px; }

/* ── PAGE REVIEWS ─────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--sky-light); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-wrap { display: none; }
  .hero-h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .guar-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }

  .topbar-trust { display: none; }
  .proof-inner { gap: 12px; }
  .proof-sep { display: none; }

  .how-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .tgrid { grid-template-columns: 1fr; }
  .guar-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-columns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-acts { flex-direction: row; flex-wrap: wrap; }
  .posts-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .slide { padding: 60px 0 80px; }
  .hero-stats { gap: 20px; }
  .sarr { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .guar-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .ctabs-row { flex-direction: column; align-items: center; }
  .ptab, .ctab-btn { width: 100%; justify-content: center; }
  .mm-cta .btn { font-size: .85rem; padding: 13px 20px; }
}

/* ── PRINT ────────────────────────────────────────────────────── */
@media print {
  .site-header, .topbar, .site-footer, .mobile-menu, .hero-slider, .cta-banner { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ── REVIEWS PAGE ─────────────────────────────────────────────── */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
}
.rev-big { text-align: center; }
.rev-big-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 6px;
}
.rev-big-stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 6px; }
.rev-big-sub   { font-size: .78rem; color: var(--muted); font-weight: 600; }

.rev-bars { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; }
.rev-bar-lbl  { font-size: .75rem; color: var(--muted); width: 52px; flex-shrink: 0; }
.rev-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  border-radius: 4px;
  transition: width .6s ease;
}
.rev-bar-pct { font-size: .72rem; font-weight: 700; color: var(--sky); width: 30px; text-align: right; flex-shrink: 0; }

.rev-stats-col { display: flex; flex-direction: column; gap: 16px; }
.rev-stat { text-align: center; }
.rev-stat-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 3px;
}
.rev-stat-lbl { font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* Review cards */
.rcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.rcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sky-light); }
.rcard-stars  { color: #FBBF24; font-size: .9rem; letter-spacing: 1px; margin-bottom: 8px; }
.rcard-grade  {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(16,185,129,.08);
  color: #059669;
  border: 1px solid rgba(16,185,129,.2);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.rcard-subject { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rcard-type    { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.rcard-body    { font-size: .84rem; color: var(--body); line-height: 1.65; margin-bottom: 18px; }
.rcard-author  { display: flex; align-items: center; gap: 10px; }
.rcard-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.rcard-name   { font-size: .84rem; font-weight: 700; color: var(--ink); }
.rcard-detail { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .65rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 4px;
}

/* ── POST CONTENT STYLES ──────────────────────────────────────── */
.post-body h2 { font-size: 1.45rem; font-weight: 800; margin: 2.2em 0 .8em; color: var(--ink); border-bottom: 2px solid var(--sky-xlight); padding-bottom: 10px; }
.post-body h3 { font-size: 1.15rem; font-weight: 700; margin: 1.8em 0 .65em; color: var(--ink-2); }
.post-body h4 { font-size: 1rem; font-weight: 700; margin: 1.5em 0 .5em; color: var(--ink-2); }
.post-body p  { font-size: .97rem; line-height: 1.82; margin-bottom: 1.25em; color: var(--body); }
.post-body ul, .post-body ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.post-body li { font-size: .95rem; line-height: 1.75; margin-bottom: .45em; color: var(--body); }
.post-body ul li::marker { color: var(--sky); }
.post-body a  { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--sky-dark); }
.post-body blockquote {
  border-left: 4px solid var(--sky);
  padding: 16px 20px;
  margin: 1.8em 0;
  background: var(--sky-xlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-2);
}
.post-body img { border-radius: var(--radius-sm); margin: 1.5em 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .9rem; }
.post-body th { background: var(--sky); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.post-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--body); }
.post-body tr:nth-child(even) td { background: var(--offwhite); }
.post-body code {
  background: var(--sky-xlight);
  color: var(--sky-dark);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .85em;
  font-family: 'Fira Code', 'Consolas', monospace;
}
.post-body pre {
  background: var(--ink);
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5em 0;
}
.post-body pre code { background: none; color: inherit; padding: 0; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .rev-bars { min-width: auto; }
  .rev-stats-col { flex-direction: row; justify-content: center; gap: 28px; }
}

/* ── 404 PAGE ─────────────────────────────────────────────────── */
.err-code {
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  opacity: .15;
}

/* ── SIDEBAR CTA WIDGET ───────────────────────────────────────── */
.sidebar-cta-widget {
  background: var(--ink) !important;
  border: none !important;
}
.sidebar-cta-widget .widget-title {
  color: var(--coral) !important;
  border-color: rgba(255,255,255,.1) !important;
}
.sidebar-cta-widget p { color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: 14px; }
