/* ==========================================================================
   Resume Builder — Vibrant Light Design System
   Theme: Bold clean, electric blue gradient, premium micro-animations
   Domain: resumebuilderapp.in
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:        #2563EB;
  --primary-deep:   #1D4ED8;
  --primary-darker: #1E3A8A;
  --primary-light:  #EFF6FF;
  --primary-glow:   rgba(37, 99, 235, 0.18);

  --accent:         #F59E0B;
  --accent-deep:    #D97706;
  --accent-light:   #FFFBEB;

  --success:        #10B981;
  --success-light:  #ECFDF5;

  /* Surfaces */
  --bg:             #FFFFFF;
  --bg-alt:         #F8FAFF;
  --bg-blue:        #EFF6FF;
  --white:          #FFFFFF;

  /* Text */
  --ink:            #0F172A;
  --ink-soft:       #475569;
  --ink-muted:      #94A3B8;

  /* Borders */
  --border:         #E2E8F0;
  --border-strong:  #CBD5E1;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,23,42,0.08);
  --shadow-md:   0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg:   0 20px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.25), 0 2px 8px rgba(37,99,235,0.1);
  --shadow-card: 0 2px 8px rgba(15,23,42,0.06), 0 8px 24px rgba(15,23,42,0.04);

  /* Typography */
  --display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --body:    'Inter', -apple-system, sans-serif;

  /* Shape */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease:      0.2s ease;
  --ease-slow: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-deep); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--ink-soft); line-height: 1.72; }
.lede { font-size: 18px; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container        { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px;  margin: 0 auto; padding: 0 24px; }

/* ── Eyebrow Label ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.06); }
  66%       { transform: translate(-25px, 15px) scale(0.96); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Header & Nav ───────────────────────────────────────────────────────── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
header.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: 36px; border-radius: 10px; }

nav.primary-nav { display: flex; align-items: center; gap: 4px; }
nav.primary-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  text-decoration: none;
}
nav.primary-nav a:hover { color: var(--primary); background: var(--primary-light); }

.nav-install-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px var(--primary-glow) !important;
  margin-left: 8px;
  transition: all var(--ease) !important;
  text-decoration: none !important;
}
.nav-install-btn:hover {
  background: var(--primary-deep) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--primary-glow) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.menu-toggle:hover { background: var(--bg-alt); }

@media (max-width: 840px) {
  nav.primary-nav {
    position: fixed;
    inset: 66px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  nav.primary-nav.open { transform: translateX(0); }
  nav.primary-nav a { font-size: 16px; width: 100%; padding: 13px 16px; border-radius: var(--radius); }
  .nav-install-btn { width: 100% !important; text-align: center !important; margin: 8px 0 0 0 !important; display: flex !important; justify-content: center !important; }
  .menu-toggle { display: flex; align-items: center; }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.38);
  color: var(--white);
  filter: brightness(1.08);
}
.btn-outline {
  border-color: var(--border-strong);
  color: var(--ink);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0F1E4A 0%, #1A2F7A 28%, #2563EB 65%, #0EA5E9 100%);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  top: -350px; right: -200px;
  animation: floatBlob 12s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 65%);
  bottom: -200px; left: -80px;
  animation: floatBlob 16s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #93C5FD;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .eyebrow::before { background: #60A5FA; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero h1 { color: white; margin-bottom: 22px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #93C5FD 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lede {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero .btn-primary {
  background: white;
  color: var(--primary-darker) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.hero .btn-primary:hover {
  background: #F0F7FF;
  color: var(--primary-darker) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.18);
  color: white;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust span::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.28);
  color: #34D399;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Resume Card Visual ─────────────────────────────────────────────────── */
.doc-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}
.doc-card {
  width: min(320px, 100%);
  background: white;
  border-radius: 18px;
  box-shadow: 0 48px 96px -24px rgba(0,0,0,0.55), 0 16px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.12);
  padding: 28px 26px 32px;
  transform: rotate(-3.5deg);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.doc-card:hover { transform: rotate(-1.5deg) scale(1.025); }
.doc-line { height: 8px; background: #E2E8F0; border-radius: 4px; margin-bottom: 9px; }
.doc-line.blue { background: linear-gradient(90deg, var(--primary), #7C3AED); opacity: 0.92; }
.doc-line.w60 { width: 60%; }
.doc-line.w80 { width: 80%; }
.doc-line.w40 { width: 40%; }
.doc-line.w90 { width: 90%; }
.doc-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(37,99,235,0.45);
}
.stamp {
  position: absolute;
  bottom: -22px; right: -24px;
  width: 108px; height: 108px;
  border: 3.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  background: white;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.07em;
  color: var(--accent-deep);
  line-height: 1.4;
  box-shadow: 0 6px 24px rgba(245,158,11,0.35);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head > p { font-size: 17px; }

/* ── Stats Strip ────────────────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
@media (max-width: 640px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-blue); }
@media (max-width: 640px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Feature Cards ──────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--ease-slow);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #7C3AED, #0EA5E9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.12);
}
.card:hover::after { transform: scaleX(1); }
.card .icon-mark {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.card:hover .icon-mark { transform: scale(1.08); background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.card h3 { margin-bottom: 10px; font-size: 16.5px; }
.card p { font-size: 14.5px; margin: 0; color: var(--ink-soft); line-height: 1.65; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all var(--ease-slow);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.1);
}
.testimonial-stars { color: var(--accent); font-size: 15px; margin-bottom: 16px; letter-spacing: 1.5px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.t-avatar.blue  { background: linear-gradient(135deg, var(--primary), #7C3AED); }
.t-avatar.teal  { background: linear-gradient(135deg, #0EA5E9, #10B981); }
.t-avatar.amber { background: linear-gradient(135deg, var(--accent), #EF4444); }
.t-name { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); }
.t-role { font-size: 12.5px; color: var(--ink-muted); }

/* ── Screenshot Showcase ─────────────────────────────────────────────────── */
.showcase-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 12px 4px 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.showcase-scroll::-webkit-scrollbar { height: 6px; }
.showcase-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.showcase-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 200px;
  text-align: center;
}
.phone-frame {
  width: 200px;
  border-radius: 26px;
  border: 6px solid var(--ink);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15,23,42,0.28), 0 0 0 1px rgba(0,0,0,0.06);
  background: var(--ink);
  margin-bottom: 16px;
  transition: all var(--ease-slow);
}
.phone-frame:hover {
  box-shadow: var(--shadow-blue), 0 32px 64px rgba(15,23,42,0.2);
  transform: translateY(-6px);
}
.phone-frame img { display: block; width: 100%; }
.showcase-item h4 { font-family: var(--display); font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.showcase-item p { font-size: 12.5px; color: var(--ink-muted); margin: 0; }

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--ink);
  transition: color var(--ease);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  font-size: 18px;
  color: var(--primary);
  font-weight: 400;
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-item[open] > summary::after { content: '\2013'; background: var(--primary-light); }
.faq-item[open] > summary { color: var(--primary); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 15.5px;
  max-width: 68ch;
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 44px 0 0;
  padding: 0 0 14px;
  border-bottom: 2px solid var(--primary-light);
}
.faq-category:first-child { margin-top: 0; }

/* ── How It Works — Steps ───────────────────────────────────────────────── */
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.step h3 { margin-bottom: 8px; }

/* ── Blog Cards ──────────────────────────────────────────────────────────── */
.blog-card {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 24px;
  align-items: start;
}
.blog-card:first-child { padding-top: 0; }
@media (max-width: 600px) { .blog-card { grid-template-columns: 1fr; } }
.blog-date { font-size: 11.5px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.5; padding-top: 2px; }
.blog-card h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.35; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 14.5px; margin: 0 0 12px; }
.read-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--ease);
}
.read-more::after { content: '\2192'; }
.read-more:hover { gap: 8px; color: var(--primary-deep); }

/* ── Article / Post ──────────────────────────────────────────────────────── */
article.post h1 { margin-bottom: 12px; }
.post-meta { font-size: 12.5px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 40px; display: flex; gap: 20px; flex-wrap: wrap; }
.post-lede {
  font-size: 18px;
  color: var(--ink);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0 36px;
  line-height: 1.65;
}
article.post h2 { margin-top: 48px; font-size: 1.45rem; }
article.post ul, article.post ol { color: var(--ink-soft); padding-left: 24px; margin: 12px 0 20px; }
article.post li { margin-bottom: 10px; font-size: 15.5px; }
.post-cta {
  margin-top: 56px;
  padding: 36px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-blue));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  text-align: center;
}
.post-cta p { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }

/* ── Comparison Table ─────────────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.compare-table th { background: var(--bg-alt); font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-soft); font-weight: 700; }
.compare-table td.yes { color: var(--success); font-weight: 700; }
.compare-table td.no  { color: var(--ink-muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-alt); }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; color: var(--ink); }

/* ── CTA Band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0F1E4A 0%, #1A2F7A 35%, #2563EB 100%);
  color: white;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -300px; right: -150px;
  pointer-events: none;
}
.cta-band h2 { color: white; margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 46ch; margin: 0 auto 36px; font-size: 17px; }
.cta-band .btn-primary {
  background: white;
  color: var(--primary-darker) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover {
  background: #F0F7FF;
  color: var(--primary-darker) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer.site-footer { background: #0F172A; padding: 64px 0 32px; }
footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 14px;
  text-decoration: none;
}
footer .brand:hover { color: rgba(255,255,255,0.85); }
footer .brand img { border-radius: 10px; width: 34px; height: 34px; }
footer p { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 16px; font-weight: 700; }
.footer-grid a { display: block; color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 12px; transition: color var(--ease); }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.32);
}

/* ── Legal Pages ──────────────────────────────────────────────────────────── */
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 1.2rem; margin-bottom: 10px; }
.legal-section p, .legal-section li { font-size: 15px; color: var(--ink-soft); line-height: 1.72; }
.legal-section ul, .legal-section ol { padding-left: 22px; margin-top: 10px; }
.legal-section li { margin-bottom: 8px; }
.updated-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg-alt);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
