/* ============================================================
   NexTech Ads – theme.css
   Complete design system: tokens → reset → layout → components
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────── */
:root {
  --red:        #E53E3E;
  --red-dark:   #C53030;
  --red-glow:   rgba(229,62,62,0.25);
  --gold:       #F59E0B;
  --green:      #10B981;
  --bg:         #0B0B0F;
  --bg2:        #111118;
  --bg3:        #16161F;
  --surface:    #1A1A26;
  --surface2:   #22223A;
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.14);
  --text:       #F0F0F5;
  --muted:      rgba(240,240,245,0.62);  /* ~6.4:1 on bg — WCAG AA pass for body text */
  --muted2:     rgba(240,240,245,0.50);  /* ~5.0:1 on bg — WCAG AA pass for body text (was 0.35 = 2.91:1, FAIL) */
  --font-main:  'Sora', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.65);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --max-w:      1180px;
}

/* ── 2. 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(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

::selection { background: var(--red-glow); color: var(--text); }

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

section { padding: 96px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 16px;
}

.section-header-wrap { margin-bottom: 64px; }

.accent { color: var(--red); }
.outline { -webkit-text-stroke: 2px var(--red); color: transparent; }

/* Fade-up animation — opacity-only to avoid CLS.
   Previously used translateY(30px) which caused 30px of layout shift.
   No-JS fallback ensures content is visible if JS fails. */
.fade-up {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
}
html.no-js .fade-up { opacity: 1 !important; }

/* ── A11Y — Skip Link & Screen Reader Text ─────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  background: var(--red);
  color: #fff;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  height: auto;
  left: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  top: 16px;
  width: auto;
  z-index: 100000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Sub-menu support (Walker_Nav with start_lvl/end_lvl) */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-links .has-children { position: relative; }
.nav-links .has-children:hover > .sub-menu,
.nav-links .has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .sub-menu li { display: block; }
.nav-links .sub-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.85rem;
  border-radius: 8px;
}
.nav-links .sub-menu a:hover {
  background: var(--bg3);
  color: var(--red);
}

/* ── 4. BUTTONS ────────────────────────────────────────── */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border2);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── 5. ANNOUNCE BAR ───────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #1a0a0a, var(--red-dark), #1a0a0a);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.5;
}
.announce-bar span { margin: 0 8px; opacity: 0.5; }

/* ── 6. NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,15,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo em { color: var(--red); font-style: normal; }
.logo .custom-logo { height: 40px; width: auto; }

.nt-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li { list-style: none; }
.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  padding: 9px 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11,11,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--muted);
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
}
.mob-link {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  padding: 12px 24px;
  transition: color var(--transition);
}
.mob-link:hover { color: var(--red); }

/* ── 7. HERO ───────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(229,62,62,0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,62,62,0.12);
  border: 1px solid rgba(229,62,62,0.3);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero-badge .dot, .page-hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
}

.hero-desc {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  display: block;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}
.hero-stats .stat p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero visual / card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}

.thumb-mock {
  height: 180px;
  background: linear-gradient(135deg, #1a1a2e, #2a1a2e);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.thumb-mock::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(229,62,62,0.15), rgba(245,158,11,0.05));
}
.play-btn {
  width: 56px; height: 56px;
  background: rgba(229,62,62,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 0 32px rgba(229,62,62,0.5);
}

.video-meta { margin-bottom: 20px; }
.video-meta h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.video-meta span { font-size: 0.8rem; color: var(--green); font-family: var(--font-mono); }

.metrics-row { display: flex; gap: 12px; }
.metric-chip {
  flex: 1;
  background: var(--bg3);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.metric-chip .num { font-family: var(--font-main); font-weight: 700; font-size: 1.1rem; color: var(--text); }
.metric-chip .lbl { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.floating-badge.top { top: -28px; left: -24px; }
.floating-badge.bottom { bottom: -28px; right: -16px; }
.floating-badge strong { display: block; font-weight: 600; font-size: 0.85rem; }
.floating-badge span { display: block; color: var(--muted); font-size: 0.72rem; }
.floating-badge .icon { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.floating-badge .icon.green { background: rgba(16,185,129,0.15); }
.floating-badge .icon.gold { background: rgba(245,158,11,0.15); }

/* ── 8. TRUST STRIP ────────────────────────────────────── */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item i { color: var(--red); font-size: 0.9rem; }

/* ── 9. PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(229,62,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted2);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 0.65rem; color: var(--muted2); }

.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.25);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── 10. PACKAGES ──────────────────────────────────────── */
.packages-section { background: var(--bg2); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.pkg-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-card:hover::before { opacity: 1; }

.pkg-card.featured {
  background: linear-gradient(135deg, #1e0a0a, var(--surface));
  border-color: rgba(229,62,62,0.4);
  box-shadow: 0 0 40px rgba(229,62,62,0.15);
}
.pkg-card.featured::before { opacity: 1; background: linear-gradient(90deg, var(--red), var(--gold)); }
.pkg-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute; top: 20px; right: -28px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 32px;
  transform: rotate(45deg);
}

.pkg-card.custom-pkg { border: 2px dashed rgba(245,158,11,0.3); background: linear-gradient(135deg, #1a1500, var(--surface)); }

.pkg-icon {
  width: 52px; height: 52px;
  background: rgba(229,62,62,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red);
  margin-bottom: 20px;
}
.pkg-name { font-family: var(--font-main); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pkg-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.pkg-price { font-family: var(--font-main); font-size: 2.4rem; font-weight: 800; color: var(--red); }
.pkg-price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.pkg-per { font-size: 0.75rem; color: var(--muted2); margin-top: 4px; margin-bottom: 20px; font-family: var(--font-mono); }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 20px; }

.pkg-features { margin-bottom: 28px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pkg-features li i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }

.pkg-btn {
  display: block; text-align: center;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.pkg-btn.solid { background: var(--red); color: #fff; border: 2px solid var(--red); }
.pkg-btn.solid:hover { background: var(--red-dark); transform: translateY(-2px); color: #fff; }
.pkg-btn.outline { background: transparent; color: var(--text); border: 2px solid var(--border2); }
.pkg-btn.outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.pkg-btn.gold-btn { background: rgba(245,158,11,0.1); color: var(--gold); border: 2px solid rgba(245,158,11,0.3); }
.pkg-btn.gold-btn:hover { background: var(--gold); color: #0B0B0F; transform: translateY(-2px); }
/* button reset for modal-trigger pkg-btn */
button.pkg-btn { width: 100%; font-family: var(--font-main); }

/* ── WPForms Pre-Payment Modal ─────────────────────────── */
.pkg-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: pkgModalFadeIn 0.25s ease-out;
}
.pkg-modal[hidden] { display: none; }
@keyframes pkgModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pkg-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.pkg-modal-box {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: pkgModalSlideUp 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes pkgModalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.pkg-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.pkg-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg);
}
.pkg-modal-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(229,62,62,0.06), rgba(245,158,11,0.04));
}
.pkg-modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.pkg-modal-header h3 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pkg-modal-selected {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.pkg-modal-selected strong {
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
}
.pkg-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
}
/* Style WPForms inside the modal to match dark theme */
.pkg-modal-body .wpforms-container { margin: 0 !important; }
.pkg-modal-body .wpforms-form label,
.pkg-modal-body .wpforms-field-label {
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
}
.pkg-modal-body .wpforms-form input[type="text"],
.pkg-modal-body .wpforms-form input[type="email"],
.pkg-modal-body .wpforms-form input[type="url"],
.pkg-modal-body .wpforms-form input[type="tel"],
.pkg-modal-body .wpforms-form input[type="number"],
.pkg-modal-body .wpforms-form select,
.pkg-modal-body .wpforms-form textarea {
  background: var(--bg3) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
  padding: 12px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  transition: border-color var(--transition) !important;
  width: 100% !important;
  box-shadow: none !important;
}
.pkg-modal-body .wpforms-form input:focus,
.pkg-modal-body .wpforms-form select:focus,
.pkg-modal-body .wpforms-form textarea:focus {
  outline: none !important;
  border-color: var(--red) !important;
}
.pkg-modal-body .wpforms-form button[type="submit"],
.pkg-modal-body .wpforms-submit {
  background: var(--red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-family: var(--font-main) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  margin-top: 8px !important;
}
.pkg-modal-body .wpforms-form button[type="submit"]:hover,
.pkg-modal-body .wpforms-submit:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
}
.pkg-modal-body .wpforms-required-label,
.pkg-modal-body .wpforms-error {
  color: var(--red) !important;
}
.pkg-modal-footer {
  padding: 14px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.pkg-modal-footer i { color: var(--green); }
body.pkg-modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .pkg-modal { padding: 0; }
  .pkg-modal-box { max-height: 100vh; max-height: 100dvh; height: 100%; border-radius: 0; max-width: 100%; }
  .pkg-modal-header { padding: 24px 20px 16px; }
  .pkg-modal-body { padding: 20px; }
  .pkg-modal-footer { padding: 12px 20px; }
  .pkg-modal-header h3 { font-size: 1.2rem; }
}

/* Custom package form */
.custom-form-grid { display: grid; gap: 14px; }
.custom-field label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.custom-field input,
.custom-field select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--transition);
}
.custom-field input:focus,
.custom-field select:focus { outline: none; border-color: var(--red); }

/* ── 11. WHY US / FEATURES ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(229,62,62,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red);
  margin-bottom: 20px;
}
.feature-card h4 { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── 12. HOW IT WORKS ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.step-item {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.step-item:hover { border-color: var(--border2); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(229,62,62,0.12);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-item h4 { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── 13. TESTIMONIALS ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testi-text { font-size: 0.925rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 700; font-size: 1rem;
  color: #fff; flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author-info span { font-size: 0.78rem; color: var(--muted); }

/* ── 13b. WHO WE HELP (pills) ──────────────────────────── */
.who-we-help-section { padding-top: 0; }
.who-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.who-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.2px;
  transition: all var(--transition);
  cursor: default;
}
.who-pill:hover {
  border-color: rgba(229,62,62,0.45);
  background: rgba(229,62,62,0.08);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .who-pill { padding: 8px 16px; font-size: 0.8rem; }
  .who-pills-wrap { gap: 8px; }
}

/* ── 14. FAQ ───────────────────────────────────────────── */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border2); }
.faq-item.open { border-color: rgba(229,62,62,0.3); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  /* Reset native button styles */
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.faq-q:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  border-radius: var(--radius);
}
.faq-q span { font-size: 0.95rem; font-weight: 600; line-height: 1.4; }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(229,62,62,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.8rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: #fff; }

.faq-a {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a[hidden] { display: none; }

/* FAQ page tabs */
.section-faq-page { padding: 80px 0; }

.faq-cat-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
}
.faq-cat-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat-tab:hover { border-color: var(--border2); color: var(--text); }
.faq-cat-tab.active { background: var(--red); border-color: var(--red); color: #fff; }

.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-panel-title {
  font-family: var(--font-main); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.faq-panel-title i { color: var(--red); }
.faq-list { max-width: 860px; display: flex; flex-direction: column; gap: 12px; }

.faq-contact-cta {
  margin-top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.faq-cta-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(229,62,62,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--red);
}
.faq-cta-body h3 { font-family: var(--font-main); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.faq-cta-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.faq-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 15. CTA SECTION & FORM ────────────────────────────── */
.cta-section { background: var(--bg2); }

.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,62,62,0.08), transparent 70%);
  pointer-events: none;
}

.cta-header { text-align: center; margin-bottom: 40px; }
.cta-header h2 { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-header h2 span { color: var(--red); }
.cta-header p { color: var(--muted); max-width: 540px; margin: 0 auto; }

.pkg-selector { margin-bottom: 40px; text-align: center; }
.pkg-selector-label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; font-family: var(--font-mono); }
.pkg-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pkg-tab {
  padding: 7px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.pkg-tab:hover, .pkg-tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.pkg-tab.custom-tab { border-color: rgba(245,158,11,0.3); color: var(--gold); }
.pkg-tab.custom-tab:hover, .pkg-tab.custom-tab.active { background: var(--gold); color: #0B0B0F; border-color: var(--gold); }

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.cta-left-info h3 { font-family: var(--font-main); font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.cta-checklist { display: flex; flex-direction: column; gap: 10px; }
.cta-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--muted); line-height: 1.5;
}
.cta-checklist li i { color: var(--green); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

.cta-mini-review {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--bg3);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* Form box */
.form-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-box h3 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-wrap { margin-bottom: 16px; }

.input-label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229,62,62,0.15);
}

select { cursor: pointer; }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-submit {
  display: block; width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note { font-size: 0.75rem; color: var(--muted2); text-align: center; margin-top: 12px; }

#formFeedback, #contactFeedback, #auditFeedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  display: none;
}
#formFeedback.success, #contactFeedback.success, #auditFeedback.success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  display: block;
}
#formFeedback.error, #contactFeedback.error, #auditFeedback.error {
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.3);
  color: var(--red);
  display: block;
}

/* ── 16. GOOGLE VERIFIED SECTION ───────────────────────── */
.gv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; gap: 64px;
  flex-wrap: wrap;
}
.gv-badge-wrap { flex-shrink: 0; }
.gv-badge-svg { width: 200px; height: 200px; }

.gv-content { flex: 1; min-width: 300px; }
.gv-content h2 { font-family: var(--font-main); font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.gv-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.gv-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.gv-btn-verify {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(66,133,244,0.4);
  color: #4285F4;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.gv-btn-verify:hover { background: rgba(66,133,244,0.1); color: #4285F4; }

.gv-btn-start {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--red); color: #fff;
  border: 2px solid var(--red);
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.gv-btn-start:hover { background: var(--red-dark); color: #fff; }

.gv-footer-note { font-size: 0.78rem; color: var(--muted2); line-height: 1.5; }

/* ── 17. ABOUT PAGE ────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.story-img-card {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
}
.story-big-icon { font-size: 4rem; display: block; margin-bottom: 16px; }
.story-since { font-size: 0.8rem; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 2px; }
.story-year { font-family: var(--font-main); font-size: 4rem; font-weight: 900; color: var(--red); line-height: 1; }
.story-img-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }

.story-img-wrap { position: relative; }
.story-float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.78rem; white-space: nowrap;
  box-shadow: var(--shadow);
}
.story-float-badge.top { top: -20px; right: -20px; }
.story-float-badge.bottom { bottom: -20px; left: -20px; }
.story-float-badge strong { display: block; font-weight: 600; }
.story-float-badge span { color: var(--muted); font-size: 0.7rem; }
.story-float-badge .fi { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.story-float-badge .fi.red { background: rgba(229,62,62,0.15); }
.story-float-badge .fi.green { background: rgba(16,185,129,0.15); }

.story-content h2 { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.story-content h2 span { color: var(--red); }
.story-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }

.story-checklist { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.story-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--muted); }
.story-checklist li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

/* Stats strip */
.stats-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: -20px 0 80px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stats-divider { text-align: center; }
.stat-num { display: block; font-family: var(--font-main); font-size: 2.2rem; font-weight: 900; color: var(--red); }
.stat-label { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* Mission grid */
.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.mission-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.mission-icon { font-size: 2rem; margin-bottom: 16px; }
.mission-card h3 { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.mission-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Why Creators Choose YouTube Paid Promotion (about us) */
.section-why-paid { padding: 0 0 60px; }
.why-paid-card {
  background: linear-gradient(135deg, rgba(229,62,62,0.06), rgba(245,158,11,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.why-paid-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--red), var(--gold));
}
.why-paid-header { margin-bottom: 28px; }
.why-paid-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.why-paid-body p:last-child { margin-bottom: 0; }
.why-paid-highlight {
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--text) !important;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px !important;
}
@media (max-width: 720px) {
  .why-paid-card { padding: 36px 24px; }
}

/* Cert mini */
.cert-mini {
  background: linear-gradient(135deg, rgba(66,133,244,0.08), rgba(52,168,83,0.08));
  border: 1px solid rgba(66,133,244,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  margin: 40px 0;
}
.cert-mini-icon { font-size: 2.5rem; flex-shrink: 0; }
.cert-mini h3 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cert-mini p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.cert-mini a { color: #4285F4; font-weight: 600; }
.cert-mini a:hover { text-decoration: underline; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-size: 1.8rem; font-weight: 700;
  color: #fff; margin: 0 auto 16px;
}
.av-red  { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.av-blue { background: linear-gradient(135deg, #4285F4, #1a56c4); }
.av-green{ background: linear-gradient(135deg, var(--green), #059669); }
.team-name { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--red); font-family: var(--font-mono); margin-bottom: 12px; }
.team-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; gap: 8px; justify-content: center; }
.team-social {
  width: 36px; height: 36px;
  background: var(--bg3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.8rem;
  transition: all var(--transition);
}
.team-social:hover { background: var(--red); color: #fff; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 40px 24px; }
.timeline-dot {
  position: absolute; left: -28px; top: 4px;
  width: 14px; height: 14px;
  background: var(--red);
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.timeline-year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--red); letter-spacing: 1px; margin-bottom: 6px; }
.timeline-title { font-family: var(--font-main); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── 18. CONTACT PAGE ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }

.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 { font-family: var(--font-main); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info h2 span { color: var(--red); }
.contact-info > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 36px; }

.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.channel-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all var(--transition);
}
.channel-card:hover { border-color: var(--border2); transform: translateX(4px); }
.channel-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(229,62,62,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--red);
}
.channel-icon.green { background: rgba(16,185,129,0.12); color: var(--green); }
.channel-icon.gold { background: rgba(245,158,11,0.12); color: var(--gold); }
.channel-label { font-size: 0.72rem; color: var(--muted2); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.channel-value { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.channel-value:hover { color: var(--red); }
.channel-note { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.support-hours {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.support-hours h4 { font-family: var(--font-main); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.support-hours h4 i { color: var(--red); }
.support-hours ul { display: flex; flex-direction: column; gap: 10px; }
.support-hours li { display: flex; justify-content: space-between; font-size: 0.85rem; }
.support-hours li span:first-child { color: var(--muted); }
.support-hours li .highlight { color: var(--green); font-weight: 600; }

.contact-faq { margin-top: 80px; }
.contact-faq h3 { font-family: var(--font-main); font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; }
.cfaq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cfaq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.cfaq-q { font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.cfaq-q i { color: var(--red); flex-shrink: 0; }
.cfaq-a { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── 19. CASE STUDIES ──────────────────────────────────── */
.cs-stats-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  margin-bottom: 64px;
}
.cs-stat { text-align: center; padding: 16px 40px; }
.cs-stat-num { display: block; font-family: var(--font-main); font-size: 2rem; font-weight: 900; color: var(--red); }
.cs-stat-label { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.cs-divider { width: 1px; height: 60px; background: var(--border); }

.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
  transition: all var(--transition);
}
.cs-card:hover { border-color: var(--border2); }

.cs-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.cs-avatar {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-size: 1.5rem; font-weight: 700; color: #fff;
}
.cs-name { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.cs-niche { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cs-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto; }
.cs-badge {
  padding: 5px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}

.cs-headline { font-family: var(--font-main); font-size: 1.5rem; font-weight: 800; margin-bottom: 32px; }

.cs-compare {
  display: flex; align-items: center; gap: 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cs-before, .cs-after { flex: 1; min-width: 180px; }
.cs-col-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.before-label { color: var(--muted2); }
.after-label { color: var(--green); }
.cs-metric { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.cs-metric-name { font-size: 0.82rem; color: var(--muted); }
.cs-metric-val { font-family: var(--font-main); font-size: 0.9rem; font-weight: 700; }
.before-val { color: var(--muted); }
.after-val { color: var(--green); }
.cs-arrow { color: var(--red); font-size: 1.5rem; flex-shrink: 0; }

.cs-narrative { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
.cs-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.cs-section-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.cs-section p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.cs-quote {
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 32px;
  background: rgba(229,62,62,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cs-quote i { color: var(--red); margin-bottom: 10px; font-size: 1.2rem; display: block; }
.cs-quote p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 8px; }
.cs-quote cite { font-size: 0.82rem; color: var(--muted2); font-style: normal; }

/* ── 20. CHANNEL AUDIT PAGE ────────────────────────────── */
.audit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 64px; }
.audit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.audit-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.audit-icon {
  width: 52px; height: 52px;
  background: rgba(229,62,62,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red);
  margin-bottom: 20px;
}
.audit-card h3 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.audit-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.audit-process {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.audit-process h2 { font-family: var(--font-main); font-size: 1.4rem; font-weight: 700; margin-bottom: 32px; }
.audit-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 28px; }
.audit-step { text-align: center; }
.audit-step-num {
  font-family: var(--font-main); font-size: 2.5rem; font-weight: 900;
  color: rgba(229,62,62,0.25);
  display: block; margin-bottom: 12px;
}
.audit-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.audit-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

.section-audit-form { background: var(--bg2); padding: 80px 0; }
.audit-form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.audit-form-left h2 { font-family: var(--font-main); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.audit-form-left p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.7; }

.audit-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.audit-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--muted); }
.audit-checklist li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.audit-note { font-size: 0.78rem; color: var(--muted2); font-family: var(--font-mono); padding: 12px 16px; background: var(--bg3); border-radius: 8px; border-left: 2px solid var(--gold); }

/* ── 21. YOUTUBE PROMOTION PAGE ────────────────────────── */
.yt-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }
.yt-promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.yt-promo-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.yt-promo-icon.red { background: rgba(229,62,62,0.1); color: var(--red); }
.yt-promo-card h4 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.yt-promo-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.yt-promo-solution {
  background: linear-gradient(135deg, rgba(229,62,62,0.06), rgba(245,158,11,0.04));
  border: 1px solid rgba(229,62,62,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.solution-badge {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
}
.yt-promo-solution h3 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.yt-promo-solution p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.method-steps { display: flex; flex-direction: column; gap: 0; }
.method-step {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.method-step:last-child { border-bottom: none; }
.method-num { font-family: var(--font-main); font-size: 4rem; font-weight: 900; color: rgba(229,62,62,0.12); flex-shrink: 0; line-height: 1; width: 80px; text-align: center; }
.method-body { flex: 1; }
.method-icon {
  width: 44px; height: 44px;
  background: rgba(229,62,62,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
  margin-bottom: 14px;
}
.method-body h3 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.method-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.targeting-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.targeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.targeting-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.targeting-icon {
  width: 52px; height: 52px;
  background: rgba(229,62,62,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red);
  margin-bottom: 16px;
}
.targeting-card h4 { font-family: var(--font-main); font-weight: 700; margin-bottom: 14px; }
.targeting-card ul { display: flex; flex-direction: column; gap: 8px; }
.targeting-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--muted); }
.targeting-card li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

.yt-results-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 60px 0;
  text-align: center;
}
.yt-results-strip h3 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 32px; }
.yt-results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.yt-result { text-align: center; }
.yt-result-num { display: block; font-family: var(--font-main); font-size: 2.2rem; font-weight: 900; color: var(--red); }
.yt-result-label { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 6px; }

/* ── 22. LEGAL PAGES ───────────────────────────────────── */
.section-legal { padding: 80px 0; }
.legal-wrap { max-width: 820px; margin: 0 auto; }

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.toc-title { font-family: var(--font-main); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.legal-toc ol { display: flex; flex-direction: column; gap: 6px; padding-left: 20px; list-style: decimal; }
.legal-toc li { font-size: 0.875rem; }
.legal-toc a { color: var(--muted); transition: color var(--transition); }
.legal-toc a:hover { color: var(--red); }

.legal-intro { margin-bottom: 40px; }
.legal-intro p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal-effective {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--muted2); padding: 10px 16px;
  background: var(--bg3); border-radius: 8px;
  border-left: 2px solid var(--red);
  margin-top: 16px;
}

.legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section h2 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; padding-left: 14px; border-left: 3px solid var(--red); }
.legal-section h3 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; margin: 20px 0 10px; color: var(--text); }
.legal-section p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal-section ul { padding-left: 8px; display: flex; flex-direction: column; gap: 8px; }
.legal-section ul li { font-size: 0.875rem; color: var(--muted); line-height: 1.6; padding-left: 16px; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 0.7rem; top: 2px; }

/* Refund guarantee highlight */
.section-refund-guarantee { background: var(--bg2); padding: 60px 0; }
.refund-highlight {
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(229,62,62,0.04));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.refund-hl-icon { font-size: 3rem; color: var(--green); flex-shrink: 0; }
.refund-hl-body h2 { font-family: var(--font-main); font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.refund-hl-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.refund-hl-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.refund-hl-badges span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--green);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 5px 12px; border-radius: 50px;
}

/* ── 23. BLOG ──────────────────────────────────────────── */
.section-blog { padding: 80px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-thumb { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(229,62,62,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  opacity: 0; transition: opacity var(--transition);
}
.blog-card:hover .blog-thumb-overlay { opacity: 1; }

.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.blog-cat {
  padding: 3px 10px;
  background: rgba(229,62,62,0.1);
  color: var(--red);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-date, .blog-read { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.blog-title { font-family: var(--font-main); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-title a:hover { color: var(--red); }
.blog-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; }
.blog-author-avatar { width: 28px; height: 28px; border-radius: 50%; }
.blog-read-more { font-size: 0.82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-read-more:hover { gap: 10px; color: var(--red); }

.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty-icon { font-size: 3rem; color: var(--muted2); margin-bottom: 16px; }
.blog-empty h3 { font-family: var(--font-main); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.blog-empty p { color: var(--muted); margin-bottom: 28px; }

.blog-pagination { margin-top: 48px; }
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  transition: all var(--transition);
}
.blog-pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }
.blog-pagination .page-numbers:hover:not(.current) { border-color: var(--red); color: var(--red); }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 16px; }

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.widget-title { font-family: var(--font-main); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cats li a { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.sidebar-cats li a:hover { color: var(--red); }
.sidebar-recent { display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent li { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-recent li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent a { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; line-height: 1.4; }
.sidebar-recent a:hover { color: var(--red); }
.sidebar-recent span { font-size: 0.75rem; color: var(--muted); }

.sidebar-cta {
  background: linear-gradient(135deg, rgba(229,62,62,0.08), rgba(245,158,11,0.04));
  border: 1px solid rgba(229,62,62,0.2);
  border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.sidebar-cta-icon { font-size: 2rem; color: var(--red); margin-bottom: 12px; }
.sidebar-cta h4 { font-family: var(--font-main); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.825rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

/* Single post */
.single-post-hero { background: var(--bg2); padding: 64px 0 40px; border-bottom: 1px solid var(--border); }
.post-meta-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.8rem; color: var(--muted); }
.single-title { font-family: var(--font-main); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 32px; }
.single-thumb { border-radius: var(--radius-lg); overflow: hidden; max-height: 480px; }
.single-thumb img { width: 100%; object-fit: cover; }

.single-post-body { padding: 64px 0; }
.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

.entry-content { font-size: 1rem; line-height: 1.85; color: rgba(240,240,245,0.8); }
.entry-content h2 { font-family: var(--font-main); font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 36px 0 16px; }
.entry-content h3 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.entry-content li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content a { color: var(--red); font-weight: 500; }
.entry-content a:hover { text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--red); padding: 16px 24px; background: rgba(229,62,62,0.05); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; color: var(--muted); }
.entry-content img { border-radius: var(--radius); margin: 20px 0; }
.entry-content code { background: var(--surface2); padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.875em; color: var(--red); }
.entry-content pre { background: var(--surface2); padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 20px 0; }
.entry-content pre code { background: none; padding: 0; color: var(--text); }

.post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 32px 0; }
.post-tags > i { color: var(--muted); }
.tag-pill { padding: 4px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; font-size: 0.78rem; color: var(--muted); transition: all var(--transition); }
.tag-pill:hover { border-color: var(--red); color: var(--red); }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 48px 0; }
.post-nav-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.post-nav-item:hover { border-color: var(--red); }
.nav-label { font-size: 0.75rem; color: var(--muted); font-family: var(--font-mono); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.nav-title { font-size: 0.875rem; font-weight: 600; line-height: 1.4; }
.post-nav-item.next { text-align: right; }
.post-nav-item.next .nav-label { justify-content: flex-end; }

/* ── 24. CTA BOTTOM ────────────────────────────────────── */
.cta-bottom {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid rgba(229,62,62,0.2);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-bottom::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(229,62,62,0.1), transparent 70%);
  pointer-events: none;
}
.cta-bottom h2 { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-bottom p { color: var(--muted); font-size: 1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── 25. FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; max-width: 280px; }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted);
  transition: all var(--transition);
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-col h5 { font-family: var(--font-main); font-size: 0.875rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-col li a:hover { color: var(--red); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted2); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; color: var(--muted);
  font-family: var(--font-mono);
}

/* ── 26. WORDPRESS NATIVE ELEMENTS ────────────────────── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 6px; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; color: var(--text); font-family: var(--font-body); font-size: 0.875rem; }
.search-field:focus { outline: none; border-color: var(--red); }
.search-submit { padding: 10px 16px; background: var(--red); color: #fff; border: none; border-radius: 10px; cursor: pointer; font-size: 0.875rem; transition: background var(--transition); }
.search-submit:hover { background: var(--red-dark); }

/* Comments */
.comments-area { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.comments-title { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment .avatar { border-radius: 50%; }
.comment-author .fn { font-weight: 600; font-size: 0.9rem; }
.comment-metadata { font-size: 0.75rem; color: var(--muted); }
.comment-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.reply a { font-size: 0.78rem; color: var(--red); margin-top: 8px; display: inline-block; }
.comment-reply-title { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.comment-form .comment-form-comment textarea { min-height: 120px; }

/* ── 27. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .story-grid,
  .cta-form-grid,
  .contact-grid,
  .gv-card,
  .audit-form-wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .floating-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout,
  .single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .stats-grid,
  .yt-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }

  .cta-box { padding: 28px 20px; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-tab { padding: 6px 10px; font-size: 0.72rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }

  .trust-inner { gap: 20px; justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; }

  .cs-compare { flex-direction: column; gap: 16px; }
  .cs-arrow { transform: rotate(90deg); align-self: center; }

  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
  .post-nav-item.next .nav-label { justify-content: flex-start; }

  .input-row { grid-template-columns: 1fr; }
  .faq-contact-cta { flex-direction: column; }
  .cert-mini { flex-direction: column; text-align: center; }
  .refund-highlight { flex-direction: column; text-align: center; }
  .yt-promo-solution { flex-direction: column; text-align: center; }
  .cs-header { flex-direction: column; align-items: flex-start; }
  .cs-badges { margin-left: 0; }

  .gv-card { padding: 32px 24px; text-align: center; }
  .gv-badge-wrap { margin: 0 auto; }
  .gv-btn-row { justify-content: center; }

  .section-story { padding: 60px 0; }
  .stats-strip { padding: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .audit-process { padding: 28px 20px; }
  .cta-bottom { padding: 40px 24px; }

  .method-step { flex-direction: column; gap: 16px; }
  .method-num { width: auto; font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .announce-bar { font-size: 0.7rem; }
  .pkg-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .faq-cat-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .cs-stats-bar { flex-direction: column; gap: 8px; }
  .cs-divider { display: none; }
  .yt-results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 28. PRINT ─────────────────────────────────────────── */
@media print {
  .navbar, .announce-bar, .trust-strip, .mobile-nav, .site-footer, .cta-bottom, .cta-section { display: none !important; }
  body { background: white; color: #000; }
  .legal-wrap { max-width: 100%; }
}

/* ── 29. REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
