/* ═══════════════════════════════════════════════════════════
   CRYPTO CLARIFIED — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── BRAND PALETTE ── */
:root {
  --navy:        #1E3A8A;
  --navy-dark:   #0F1E3D;
  --blue:        #4F8EF7;
  --blue-light:  #60C6FF;
  --cyan:        #A5F3FC;
  --gold:        #F59E0B;
  --gold-light:  #FCD34D;
  --cream:       #F0F6FF;
  --white:       #FFFFFF;
  --text:        #1E293B;
  --text-muted:  #6B7280;
  --border:      #E2E8F0;
  --font-head:   'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius:      8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; max-width: 100%; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }

/* ── HEADER ── */
#ccc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(79,142,247,0.15);
  transition: background 0.3s ease, padding 0.3s ease;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 32px; height: 38px; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; }
.logo-primary {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.logo-primary strong { font-weight: 700; color: var(--blue-light); }
.logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
  margin-top: 2px;
}

/* Nav */
#ccc-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}
.nav-list li a {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-list li a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-list li a.current-menu-item { color: var(--blue-light); }
.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 0.45rem 1rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--blue-light) !important; color: var(--navy-dark) !important; }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MAIN CONTENT OFFSET (compensate for fixed header) ── */
#ccc-main {
  margin-top: 62px; /* matches header height */
  min-height: 60vh;
}
.page-content {
  width: 100%;
}

/* ── CONTAINER UTILITY ── */
.ccc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── EXISTING PAGE CONTENT STYLES ──
   These normalize the HTML already inside WP pages
   so it fits the new brand without rewriting anything.
── */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: var(--font-head);
  color: var(--navy);
}
.page-content p { line-height: 1.75; color: var(--text); }
.page-content a { color: var(--blue); }
.page-content a:hover { color: var(--navy); text-decoration: underline; }
.page-content img { border-radius: var(--radius); }

/* Upgrade/premium buttons that exist on current pages */
.page-content a[href*="upgrade"],
.page-content a[href*="subscribe"],
.page-content .upgrade-btn,
.page-content .cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  text-decoration: none !important;
}
.page-content a[href*="upgrade"]:hover,
.page-content .upgrade-btn:hover {
  background: var(--gold-light);
}

/* Generic button styles to replace plain <button> elements on pages */
.page-content button,
.page-content input[type="submit"] {
  font-family: var(--font-body);
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.page-content button:hover,
.page-content input[type="submit"]:hover {
  background: var(--navy);
}

/* ── BLOG / POST ENTRIES ── */
.post-entry {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.post-entry h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.post-entry h2 a { color: var(--navy); }
.post-entry h2 a:hover { color: var(--blue); }
.post-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.post-excerpt { color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--blue); }
.read-more:hover { color: var(--navy); }

/* ── FOOTER ── */
#ccc-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 2.5rem 0;
  margin-top: 5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.footer-brand-name strong { color: var(--blue-light); }
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  max-width: 280px;
}
.footer-company {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}
.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0.9rem 1.25rem; }

  .menu-toggle { display: flex; }

  .logo-sub { display: none; }

  #ccc-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 72px 2rem 3rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  #ccc-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-list li a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.85) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    background: none !important;
  }
  .nav-cta {
    display: block !important;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem !important;
    background: var(--blue) !important;
    color: white !important;
    border-radius: var(--radius) !important;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  #ccc-footer { padding: 3rem 1.5rem 0; margin-top: 3rem; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* Shared section layout */
.hp-section-inner,
.hp-trust-inner,
.hp-newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hp-section-icon { margin-bottom: 1rem; display: flex; justify-content: center; }
.hp-section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 1rem auto 3rem;
  line-height: 1.8;
}

/* ── HERO ── */
.hp-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 60%, #0d1f4a 100%);
  color: white;
  padding: 100px 2rem 80px;
  text-align: center;
}
.hp-hero-inner { max-width: 820px; margin: 0 auto; }
.hp-hero-icon { width: 56px; margin: 0 auto 2rem; }
.hp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hp-hero-tagline {
  font-size: 1.25rem;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hp-hero-hook {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hp-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hp-btn-primary {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(79,142,247,0.4);
}
.hp-btn-primary:hover { background: var(--blue-light); color: var(--navy-dark); transform: translateY(-2px); }
.hp-btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.hp-btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── UPGRADE BANNER ── */
.hp-upgrade {
  background: var(--navy-dark);
  border-bottom: 4px solid var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}
.hp-upgrade-inner { max-width: 780px; margin: 0 auto; }
.hp-upgrade-icon { margin-bottom: 1rem; display: flex; justify-content: center; }
.hp-upgrade h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white;
  margin-bottom: 0.75rem;
}
.hp-upgrade p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.hp-upgrade-benefits {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.hp-check-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
}
.hp-check-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%230F1E3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.hp-btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.hp-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.hp-pricing { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-top: 1rem; }

/* ── PROBLEM ── */
.hp-problem {
  padding: 5rem 2rem;
  background: #FFF5F5;
  text-align: center;
}
.hp-problem h2 { color: #9B2C2C; }
.hp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 2.5rem auto 0;
}
.hp-stat-card {
  background: white;
  border: 2px solid #FC8181;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(197,48,48,0.08);
}
.hp-stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: #C53030;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hp-stat-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* ── SOLUTION ── */
.hp-solution { padding: 5rem 2rem; background: white; text-align: center; }
.hp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}
.hp-feature-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-feature-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(79,142,247,0.12);
  transform: translateY(-4px);
}
.hp-feature-icon { margin-bottom: 1.25rem; }
.hp-feature-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.hp-feature-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── TRUST ── */
.hp-trust { padding: 5rem 2rem; background: var(--cream); text-align: center; }
.hp-trust-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--blue);
  max-width: 680px;
  margin: 1.5rem auto;
  line-height: 1.7;
}
.hp-trust-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.hp-trust-text strong { color: var(--navy); }
.hp-badges {
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap; margin-top: 3rem;
}
.hp-badge { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hp-badge-icon {
  width: 60px; height: 60px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(30,58,138,0.1);
}
.hp-badge span { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

/* ── TOOLS ── */
.hp-tools { padding: 5rem 2rem; background: white; text-align: center; }
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hp-tool-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-tool-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(79,142,247,0.15); }
.hp-tool-icon { margin-bottom: 1.25rem; display: flex; justify-content: center; }
.hp-tool-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.hp-tool-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.hp-tool-link { font-size: 0.85rem; font-weight: 700; color: var(--blue); transition: color 0.2s; }
.hp-tool-link:hover { color: var(--navy); }

/* ── NEWSLETTER CTA ── */
.hp-newsletter {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  color: white;
  text-align: center;
}
.hp-nl-icon { margin: 0 auto 1.5rem; display: flex; justify-content: center; }
.hp-newsletter h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.hp-newsletter p { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.75; max-width: 640px; margin: 0 auto 2rem; }
.hp-nl-benefits {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.hp-nl-benefit {
  color: var(--blue-light);
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 1.25rem;
  position: relative;
}
.hp-nl-benefit::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue-light);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.au-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 60%, #0d1f4a 100%);
  color: white;
  padding: 100px 2rem 70px;
  text-align: center;
}
.au-hero-inner { max-width: 820px; margin: 0 auto; }
.au-hero-icon { margin: 0 auto 1.75rem; display: flex; justify-content: center; }
.au-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.au-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Sections */
.au-section { padding: 5rem 2rem; }
.au-section-white { background: white; }
.au-section-cream { background: var(--cream); }
.au-inner {
  max-width: 860px;
  margin: 0 auto;
}
.au-section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.au-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}
.au-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.au-lead strong { color: var(--navy); }
.au-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.au-center { text-align: center; }
.au-big-text { font-size: 1.25rem !important; color: var(--text) !important; }
.au-big-text strong { color: var(--navy); }

/* Bullet list */
.au-bullet-list {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.au-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 6px rgba(30,58,138,0.06);
}
.au-bullet-icon { flex-shrink: 0; margin-top: 1px; }
.au-bullet-text { font-size: 1.05rem; color: var(--text); line-height: 1.6; }

/* Highlight box */
.au-highlight {
  background: rgba(79,142,247,0.08);
  border-left: 4px solid var(--blue);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.au-highlight p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.au-highlight strong { color: var(--navy); }

/* Problem box */
.au-problem-box {
  background: #FFF5F5;
  border: 2px solid #FC8181;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1.75rem 0;
}
.au-problem-box h3 {
  color: #C53030;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.au-problem-box p {
  color: #742A2A;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.au-problem-box p:last-child { margin-bottom: 0; }

/* Mission box */
.au-mission-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  text-align: center;
}
.au-mission-box h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.au-mission-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.au-mission-box strong { color: var(--blue-light); }

/* Two-column layout */
.au-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.au-col-box {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.au-not-box {
  border-color: #FC8181;
  background: #FFF5F5;
}
.au-am-box {
  border-color: #68D391;
  background: #F0FFF4;
}
.au-col-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.au-not-box h3 { color: #C53030; }
.au-am-box h3  { color: #2F855A; }
.au-col-box p  { font-size: 1.05rem; line-height: 1.7; color: var(--text); }
.au-col-box p strong { color: var(--navy); }
.au-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.au-check-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.au-x-list li::before {
  content: '✗';
  position: absolute; left: 0;
  color: #C53030;
  font-weight: 700;
}

/* CTA section */
.au-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}
.au-cta-inner { max-width: 640px; margin: 0 auto; }
.au-cta-icon { margin: 0 auto 1.5rem; display: flex; justify-content: center; }
.au-cta h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}
.au-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* About mobile */
@media (max-width: 768px) {
  .au-hero { padding: 80px 1.5rem 50px; }
  .au-section { padding: 3.5rem 1.5rem; }
  .au-two-col { grid-template-columns: 1fr; }
  .au-mission-box { padding: 2rem 1.5rem; }
}

/* ── HOMEPAGE MOBILE ── */
@media (max-width: 768px) {
  .hp-hero { padding: 80px 1.5rem 60px; }
  .hp-stats { grid-template-columns: 1fr; max-width: 340px; }
  .hp-features { grid-template-columns: 1fr; }
  .hp-tools-grid { grid-template-columns: 1fr; }
  .hp-badges { gap: 1.5rem; }
  .hp-upgrade-benefits { flex-direction: column; gap: 0.75rem; align-items: center; }
  .hp-nl-benefits { flex-direction: column; gap: 0.75rem; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   BOOKS PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.bk-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 60%, #0d1f4a 100%);
  color: white;
  padding: 100px 2rem 70px;
  text-align: center;
}
.bk-hero-inner { max-width: 820px; margin: 0 auto; }
.bk-hero-icon  { margin: 0 auto 1.75rem; display: flex; justify-content: center; }
.bk-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bk-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Shared inner container */
.bk-inner {
  max-width: 900px;
  margin: 0 auto;
}
.bk-center { text-align: center; }

/* Intro section */
.bk-intro-section {
  background: white;
  padding: 3rem 2rem 2rem;
}
.bk-loss-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #FFF5F5;
  border: 2px solid #FC8181;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #7B2020;
  line-height: 1.6;
}
.bk-loss-badge svg { flex-shrink: 0; margin-top: 2px; }
.bk-intro-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Library header */
.bk-library-header {
  background: var(--cream);
  padding: 3.5rem 2rem 2.5rem;
  border-bottom: 3px solid var(--border);
}
.bk-section-icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.bk-library-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.bk-library-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}
.bk-library-sub strong { color: var(--navy); }

/* Book section wrappers */
.bk-book-section { padding: 4rem 2rem; }
.bk-bg-white  { background: white; }
.bk-bg-cream  { background: var(--cream); }

/* Book cards */
.bk-book-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,58,138,0.09);
  border: 2px solid var(--border);
}
.bk-book-danger { border-color: #FC8181; }
.bk-book-safe   { border-color: #68D391; }
.bk-book-blue   { border-color: var(--blue); }

.bk-book-header {
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.bk-book-num-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.bk-badge-red   { background: #FFF5F5; color: #C53030; border: 1px solid #FC8181; }
.bk-badge-green { background: #F0FFF4; color: #2F855A; border: 1px solid #68D391; }
.bk-badge-blue  { background: rgba(79,142,247,0.08); color: var(--navy); border: 1px solid var(--blue); }

.bk-book-icon { margin-bottom: 1.25rem; }
.bk-book-title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.bk-book-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.bk-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.bk-meta-sep { color: var(--border); }

/* Book body */
.bk-book-body { padding: 2rem 2.5rem 2.5rem; }
.bk-book-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.bk-book-desc strong { color: var(--navy); }

/* Feature checklist */
.bk-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.bk-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.bk-check-icon { flex-shrink: 0; margin-top: 1px; }

/* Who it's for */
.bk-who-for {
  background: rgba(79,142,247,0.07);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.bk-who-for strong { color: var(--navy); }

/* Buy buttons */
.bk-btn-buy {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(30,58,138,0.25);
}
.bk-btn-buy:hover { background: var(--blue); color: white; transform: translateY(-2px); }

.bk-btn-buy-green { background: #2F855A; box-shadow: 0 4px 14px rgba(47,133,90,0.28); }
.bk-btn-buy-green:hover { background: #276749; color: white; }

.bk-btn-buy-blue { background: var(--blue); box-shadow: 0 4px 14px rgba(79,142,247,0.3); }
.bk-btn-buy-blue:hover { background: var(--navy); color: white; }

/* Bundle CTA */
.bk-bundle {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.bk-bundle-inner { max-width: 680px; margin: 0 auto; }
.bk-bundle-icon  { margin: 0 auto 1.5rem; display: flex; justify-content: center; }
.bk-bundle h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.bk-bundle p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.bk-bundle-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.bk-bundle-was {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: line-through;
}
.bk-disclaimer {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  font-style: italic;
  margin: 0 !important;
}

/* Books mobile */
@media (max-width: 768px) {
  .bk-hero      { padding: 80px 1.5rem 50px; }
  .bk-book-section { padding: 2.5rem 1.25rem; }
  .bk-book-header  { padding: 1.75rem 1.5rem 1.5rem; }
  .bk-book-body    { padding: 1.5rem 1.5rem 2rem; }
  .bk-book-title   { font-size: 1.25rem; }
  .bk-book-meta    { gap: 0.4rem; font-size: 0.85rem; }
  .bk-bundle       { padding: 3.5rem 1.5rem; }
  .bk-loss-badge   { flex-direction: column; gap: 0.6rem; }
}

/* ── BOOK COVER TWO-COLUMN HEADER ── */
.bk-book-header-cover {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
}
.bk-cover-col {
  flex-shrink: 0;
  width: 200px;
}
.bk-cover-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  display: block;
}
.bk-header-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.25rem;
}
.bk-header-col .bk-book-num-badge { align-self: flex-start; }
.bk-header-col .bk-book-title     { margin-top: 0.75rem; }
.bk-header-col .bk-book-meta      { margin-top: 0.75rem; }

@media (max-width: 640px) {
  .bk-book-header-cover {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
  }
  .bk-cover-col { width: 160px; }
  .bk-header-col { align-items: center; }
  .bk-header-col .bk-book-meta { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   CONSULTING PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.ct-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 60%, #0d1f4a 100%);
  color: white;
  padding: 100px 2rem 80px;
  text-align: center;
}
.ct-hero-inner { max-width: 820px; margin: 0 auto; }
.ct-hero-icon  { margin: 0 auto 1.75rem; display: flex; justify-content: center; }
.ct-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.ct-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Trust badge */
.ct-trust-section { background: var(--cream); padding: 2rem 2rem 1.5rem; }
.ct-trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  max-width: 680px;
  margin: 0 auto;
}
.ct-trust-icon { flex-shrink: 0; }
.ct-trust-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.ct-trust-name  { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.ct-trust-sub   { font-size: 0.82rem; color: var(--text-muted); }

/* Shared section container */
.ct-section { padding: 5rem 2rem; }
.ct-bg-white { background: white; }
.ct-bg-cream { background: var(--cream); }
.ct-inner    { max-width: 860px; margin: 0 auto; }
.ct-wide     { max-width: 1100px; }

.ct-section-icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.ct-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}
.ct-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}
.ct-body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* Check list */
.ct-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ct-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.ct-check-list li strong { color: var(--navy); }
.ct-check { flex-shrink: 0; margin-top: 2px; }

/* Pricing grid */
.ct-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ct-price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ct-price-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(79,142,247,0.14);
  transform: translateY(-4px);
}
.ct-price-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}
.ct-price-featured:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(245,158,11,0.2); }
.ct-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.ct-price-icon { margin-bottom: 1rem; display: flex; justify-content: center; }
.ct-price-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.ct-price-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0.5rem 0;
}
.ct-price-gold { color: var(--gold); }
.ct-price-duration { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.ct-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  flex: 1;
}
.ct-price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0 0.4rem 1.4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ct-price-features li:last-child { border-bottom: none; }
.ct-price-features li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%234F8EF7' stroke-width='1.5'/%3E%3Cpath d='M4 7l2.5 2.5 4-5' stroke='%234F8EF7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.ct-btn-book {
  display: block;
  background: var(--navy);
  color: white;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 0.6rem;
}
.ct-btn-book:hover { background: var(--blue); color: white; transform: translateY(-1px); }
.ct-btn-featured { background: var(--gold); color: var(--navy-dark); }
.ct-btn-featured:hover { background: var(--gold-light); color: var(--navy-dark); }
.ct-btn-crypto {
  display: block;
  background: #f7931a;
  color: white;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: background 0.2s;
}
.ct-btn-crypto:hover { background: #e07d0d; color: white; }

/* Benefit grid */
.ct-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.ct-benefit-card {
  background: var(--cream);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 1.5rem;
}
.ct-benefit-icon { margin-bottom: 0.85rem; }
.ct-benefit-card h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; }
.ct-benefit-card p  { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Credentials */
.ct-credentials {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  margin: 1.5rem 0 1.75rem;
}
.ct-credentials h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); margin-bottom: 1.25rem; }
.ct-cred-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.ct-cred-list li {
  font-size: 1rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.ct-cred-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* How it works - steps */
.ct-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ct-step {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
}
.ct-step-icon { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.ct-step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(79,142,247,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ct-step h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; }
.ct-step p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* FAQ */
.ct-faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.ct-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
}
.ct-faq-item h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.65rem; }
.ct-faq-item p  { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Contact note in final CTA */
.ct-contact-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.ct-contact-note a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.ct-contact-note a:hover { color: white; }

/* Consulting mobile */
@media (max-width: 1024px) {
  .ct-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ct-hero    { padding: 80px 1.5rem 60px; }
  .ct-section { padding: 3.5rem 1.5rem; }
  .ct-benefit-grid  { grid-template-columns: 1fr; }
  .ct-steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .ct-trust-badge   { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .ct-pricing-grid { grid-template-columns: 1fr; }
  .ct-steps-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FORENSIC AUDITING PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.fa-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 50%, #0d1f4a 100%);
  color: white;
  padding: 100px 2rem 80px;
  text-align: center;
}
.fa-hero-inner { max-width: 860px; margin: 0 auto; }
.fa-compliance-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.fa-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.fa-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.fa-hero em { color: var(--blue-light); font-style: italic; }

/* Shared layout */
.fa-section { padding: 5rem 2rem; }
.fa-bg-white { background: white; }
.fa-bg-cream { background: var(--cream); }
.fa-bg-navy  { background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%); }
.fa-inner    { max-width: 860px; margin: 0 auto; }
.fa-wide     { max-width: 1100px; }
.fa-section-icon { display: flex; justify-content: center; margin-bottom: 1rem; }

.fa-section h2,
.fa-bg-white h2,
.fa-bg-cream h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}
.fa-white-h2 { color: white !important; }
.fa-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Red flag cards */
.fa-redflag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fa-redflag-card {
  background: #FFF5F5;
  border-left: 5px solid #C53030;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 12px rgba(197,48,48,0.07);
}
.fa-redflag-icon { margin-bottom: 1rem; }
.fa-redflag-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #C53030;
  margin-bottom: 0.75rem;
}
.fa-redflag-card p { font-size: 0.97rem; color: var(--text); line-height: 1.75; margin: 0; }
.fa-redflag-card em { font-style: italic; color: #742A2A; }

/* Reality check */
.fa-reality-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFF5F5;
  border: 2px solid #FC8181;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}
.fa-reality-icon { flex-shrink: 0; margin-top: 2px; }
.fa-reality-check p { font-size: 1rem; color: #742A2A; line-height: 1.75; margin: 0; }
.fa-reality-check strong { color: #C53030; }

/* Value prop (navy bg) */
.fa-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  border-left: 5px solid var(--gold);
  padding-left: 2rem;
  margin: 2rem 0;
  line-height: 1.75;
}
.fa-value-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-top: 1.5rem;
}

/* Pricing grid */
.fa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: start;
}
.fa-price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fa-price-card:hover {
  box-shadow: 0 8px 28px rgba(30,58,138,0.12);
  transform: translateY(-3px);
}
.fa-price-featured {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  border-color: var(--gold);
  color: white;
}
.fa-price-featured:hover { box-shadow: 0 12px 36px rgba(245,158,11,0.25); }
.fa-featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: #48BB78;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.fa-price-icon { margin-bottom: 1rem; }
.fa-price-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.fa-price-featured h3 { color: white; }
.fa-price-amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.5rem 0;
  line-height: 1;
}
.fa-price-featured .fa-price-amount { color: white; }
.fa-price-gold { color: var(--gold) !important; }
.fa-per { font-size: 0.45em; font-weight: 600; color: var(--text-muted); vertical-align: middle; }
.fa-price-featured .fa-per { color: rgba(255,255,255,0.55); }
.fa-price-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.fa-price-featured .fa-price-note { color: rgba(255,255,255,0.55); }

.fa-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.fa-price-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 0.6rem 0 0.6rem 1.6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.55;
}
.fa-price-list li:last-child { border-bottom: none; }
.fa-price-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%234F8EF7' stroke-width='1.5'/%3E%3Cpath d='M4 7l2.5 2.5 4-5' stroke='%234F8EF7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.fa-price-list-light li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.12); }
.fa-price-list-light li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='6' stroke='%2348BB78' stroke-width='1.5'/%3E%3Cpath d='M4 7l2.5 2.5 4-5' stroke='%2348BB78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-btn-book {
  display: block;
  background: var(--navy);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.fa-btn-book:hover { background: var(--blue); color: white; transform: translateY(-1px); }
.fa-btn-featured {
  display: block;
  background: white;
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.fa-btn-featured:hover { background: var(--gold); color: var(--navy-dark); }

/* Main CTA */
.fa-cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2f6e 100%);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.fa-cta-inner { max-width: 680px; margin: 0 auto; }
.fa-cta-icon  { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.fa-cta-section h2 {
  color: white;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.fa-cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.fa-cta-email {
  margin-top: 1.5rem !important;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.5) !important;
}
.fa-cta-email a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.fa-cta-email a:hover { color: white; }

/* Trust badges */
.fa-trust-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.fa-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.fa-trust-badge {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(30,58,138,0.07);
}

/* Legal disclaimer */
.fa-disclaimer {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--text-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.25rem;
}
.fa-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.fa-disclaimer p:last-child { margin-bottom: 0; }
.fa-disclaimer strong { color: var(--text); }

/* Related services */
.fa-related-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.fa-related-text a { color: var(--blue); font-weight: 600; }
.fa-related-text a:hover { color: var(--navy); text-decoration: underline; }

/* Forensic mobile */
@media (max-width: 900px) {
  .fa-pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .fa-redflag-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .fa-hero    { padding: 80px 1.5rem 60px; }
  .fa-section { padding: 3.5rem 1.5rem; }
  .fa-reality-check { flex-direction: column; }
  .fa-cta-section   { padding: 3.5rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════
   RECOMMENDED TOOLS PAGE  (rt-*)
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.rt-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a6b 100%);
  padding: 80px 20px 70px;
  text-align: center;
}
.rt-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.rt-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.rt-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.rt-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Shared section wrappers ── */
.rt-section {
  padding: 64px 20px;
}
.rt-section-white { background: #fff; }
.rt-section-cream { background: var(--cream); }
.rt-inner {
  max-width: 840px;
  margin: 0 auto;
}

/* ── Section icon + heading ── */
.rt-section-icon {
  width: 56px;
  height: 56px;
  background: rgba(79,142,247,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.rt-inner h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}

/* ── Jump nav ── */
.rt-nav-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: left !important;
}
.rt-jump-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.rt-jump-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.rt-jump-card:hover {
  border-color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 2px 8px rgba(79,142,247,0.15);
}
.rt-jump-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.rt-jump-cat {
  font-size: 0.68rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Trust badges (Why These Tools section) ── */
.rt-trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.rt-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Tool card header ── */
.rt-tool-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.rt-tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rt-icon-blue {
  background: rgba(79,142,247,0.12);
  color: var(--blue);
}
.rt-icon-navy {
  background: rgba(30,58,138,0.1);
  color: var(--navy);
}
.rt-icon-gold {
  background: rgba(245,158,11,0.12);
  color: var(--gold);
}
.rt-tool-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rt-tool-name {
  font-family: var(--font-head);
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin: 0 !important;
  text-align: left !important;
}
.rt-tool-badge {
  display: inline-block;
  background: rgba(79,142,247,0.12);
  color: var(--blue);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.rt-badge-gold {
  background: rgba(245,158,11,0.15);
  color: #d97706;
}

/* ── Body text ── */
.rt-text {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ── Feature list ── */
.rt-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rt-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4a5568;
  line-height: 1.6;
}
.rt-feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.rt-feature-list li strong {
  color: var(--navy);
}

/* ── Blue callout box ── */
.rt-callout {
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  line-height: 1.65;
  font-size: 0.97rem;
}
.rt-callout-blue {
  background: rgba(79,142,247,0.08);
  border-left: 4px solid var(--blue);
  color: #374151;
}
.rt-callout strong {
  color: var(--blue);
}

/* ── Warning / tip box ── */
.rt-warning-box {
  background: #fffbeb;
  border-left: 4px solid #d97706;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.rt-warning-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 10px;
}
.rt-warning-list {
  padding-left: 20px;
  margin: 8px 0;
  color: #78350f;
}
.rt-warning-list li {
  margin: 6px 0;
  line-height: 1.55;
}
.rt-warning-note {
  color: #78350f;
  margin: 10px 0 0;
  font-size: 0.93rem;
}

/* ── Setup / info box ── */
.rt-setup-box {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}
.rt-setup-box h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.rt-setup-steps {
  padding-left: 22px;
  color: #4a5568;
}
.rt-setup-steps li {
  margin: 10px 0;
  line-height: 1.6;
}
.rt-setup-bullets {
  list-style: disc;
}

/* ── Scanner pricing note ── */
.rt-scanner-note {
  color: #718096;
  font-size: 0.9rem;
  margin: 12px 0;
}

/* ── CTA buttons ── */
.rt-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none !important;
  margin-top: 16px;
  transition: opacity 0.2s, transform 0.2s;
}
.rt-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.rt-btn-free {
  background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
}
.rt-btn-gold {
  background: linear-gradient(135deg, #d97706 0%, var(--gold) 100%);
}

/* ── Affiliate disclosure ── */
.rt-disclosure {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.88rem;
  color: #718096;
  line-height: 1.7;
}
.rt-disclosure-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.rt-disclosure strong {
  color: var(--navy);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .rt-hero { padding: 56px 16px 48px; }
  .rt-section { padding: 48px 16px; }
  .rt-jump-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .rt-jump-card { padding: 12px 8px; }
  .rt-jump-name { font-size: 0.78rem; }
  .rt-trust-badges { flex-direction: column; align-items: center; }
  .rt-tool-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rt-tool-name { font-size: 1.35rem !important; }
  .rt-btn { width: 100%; text-align: center; }
  .rt-disclosure { flex-direction: column; gap: 10px; }
}


/* ═══════════════════════════════════════════════════
   SUBSCRIBE PAGE  (sb-*)
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.sb-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a6b 100%);
  padding: 72px 20px 64px;
  text-align: center;
}
.sb-hero-inner { max-width: 740px; margin: 0 auto; }
.sb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fcd34d;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.sb-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
}
.sb-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.sb-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sb-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.sb-hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  line-height: 1;
}
.sb-hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.sb-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ── Section wrappers ── */
.sb-section { padding: 72px 20px; background: #f8fafc; }
.sb-compare-section { padding: 72px 20px; background: #fff; }
.sb-proof-section { padding: 48px 20px; background: var(--navy-dark); }
.sb-inner { max-width: 1060px; margin: 0 auto; }

.sb-section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.sb-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
}
.sb-section-sub {
  text-align: center;
  color: #4a5568;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ── 3-col premium grid ── */
.sb-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}

/* ── Plan card base ── */
.sb-plan-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}
.sb-plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.sb-plan-top { margin-bottom: 20px; }
.sb-plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #718096;
  margin-bottom: 8px;
}
.sb-plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.sb-price-amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.sb-price-period { font-size: 1rem; color: #718096; font-weight: 500; }
.sb-plan-desc { font-size: 0.85rem; color: #718096; line-height: 1.5; margin: 0; }

/* ── Quarterly featured card ── */
.sb-plan-featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.2);
}
.sb-plan-featured .sb-price-amount { color: var(--navy); }
.sb-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Annual best-value card ── */
.sb-plan-annual { border-color: #c4b5fd; }
.sb-annual-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Feature list inside cards ── */
.sb-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sb-feature-included {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
}
.sb-feature-included svg { flex-shrink: 0; margin-top: 1px; }
.sb-feature-included strong { color: var(--navy); }
.sb-feature-bonus {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 6px;
}
.sb-feature-bonus strong { color: #d97706; }

/* ── CTA buttons ── */
.sb-plan-cta { margin-top: auto; }
.sb-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.15s;
  color: #fff !important;
}
.sb-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.sb-btn-primary { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.sb-btn-featured { background: linear-gradient(135deg, #d97706 0%, var(--gold) 100%); }
.sb-btn-annual  { background: linear-gradient(135deg, var(--navy) 0%, #6d28d9 100%); }
.sb-btn-free    { background: #4a5568; }

/* ── Free tier row ── */
.sb-free-row { margin-top: 12px; }
.sb-free-card {
  background: #fff;
  border: 2px dashed #cbd5e0;
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
}
.sb-free-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 6px;
}
.sb-free-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #6b7280;
}
.sb-free-price span { font-size: 0.9rem; color: #9ca3af; font-weight: 500; }
.sb-free-desc { font-size: 0.82rem; color: #9ca3af; margin: 4px 0 0; }
.sb-free-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.sb-free-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #4a5568;
}
.sb-free-yes { color: #374151; }
.sb-free-locked { color: #9ca3af; font-style: italic; }
.sb-free-cta { text-align: center; min-width: 160px; }
.sb-free-note { font-size: 0.75rem; color: #9ca3af; margin: 6px 0 0; }

/* ── Social proof bar ── */
.sb-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sb-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
}
.sb-proof-icon {
  width: 44px;
  height: 44px;
  background: rgba(79,142,247,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-proof-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
.sb-proof-text strong { color: #fff; display: block; font-size: 1rem; }
.sb-proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.sb-proof-byline { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ── Newsletter preview cards ── */
.sb-newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sb-newsletter-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.sb-nl-premium-card {
  background: #fff;
  border-color: rgba(79,142,247,0.25);
  box-shadow: 0 2px 12px rgba(79,142,247,0.08);
}
.sb-nl-day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 6px;
}
.sb-nl-premium-card .sb-nl-day { color: var(--blue); }
.sb-nl-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sb-nl-desc { font-size: 0.87rem; color: #4a5568; line-height: 1.6; margin-bottom: 16px; }
.sb-nl-tier {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}
.sb-nl-free-tier { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.sb-nl-premium-tier { background: rgba(79,142,247,0.1); color: var(--blue); border: 1px solid rgba(79,142,247,0.25); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .sb-premium-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .sb-free-card { grid-template-columns: 1fr; gap: 16px; }
  .sb-free-cta { text-align: left; }
  .sb-free-cta .sb-btn { display: inline-block; width: auto; padding: 11px 28px; }
  .sb-newsletter-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .sb-hero { padding: 52px 16px 44px; }
  .sb-section, .sb-compare-section { padding: 52px 16px; }
  .sb-hero-stats { gap: 0; }
  .sb-hero-stat { padding: 0 14px; }
  .sb-proof-grid { flex-direction: column; gap: 20px; }
  .sb-proof-item { padding: 0; }
  .sb-proof-divider { display: none; }
  .sb-btn { display: block; }
}


/* ═══════════════════════════════════════════════════
   BLOG — INDEX (bl-card) + SINGLE POST (bl-post)
   ═══════════════════════════════════════════════════ */

/* ── Shared hero ── */
.bl-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a6b 100%);
  padding: 72px 20px 64px;
  text-align: center;
}
.bl-hero-inner { max-width: 680px; margin: 0 auto; }
.bl-hero-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.bl-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.15;
}
.bl-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto; line-height: 1.65;
}

/* ── Blog index ── */
.bl-index-section { padding: 64px 20px; background: #f8fafc; }
.bl-index-inner { max-width: 1100px; margin: 0 auto; }

.bl-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.bl-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bl-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }

.bl-card-img-wrap { display: block; overflow: hidden; }
.bl-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.3s; }
.bl-card:hover .bl-card-img { transform: scale(1.03); }

.bl-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.bl-card-cat {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(79,142,247,0.1);
  padding: 3px 10px; border-radius: 12px;
  text-decoration: none; margin-bottom: 10px;
  align-self: flex-start;
}
.bl-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); line-height: 1.4;
  margin-bottom: 10px; flex: 1;
}
.bl-card-title a { text-decoration: none; color: inherit; }
.bl-card-title a:hover { color: var(--blue); }
.bl-card-excerpt { font-size: 0.87rem; color: #4a5568; line-height: 1.6; margin-bottom: 16px; }
.bl-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.bl-card-date {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: #9ca3af;
}
.bl-card-link {
  font-size: 0.82rem; font-weight: 700;
  color: var(--blue); text-decoration: none;
}
.bl-card-link:hover { text-decoration: underline; }

/* Pagination */
.bl-pagination { text-align: center; }
.bl-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px; margin: 0 3px;
  border: 1px solid #e2e8f0; border-radius: 6px;
  color: var(--navy); text-decoration: none; font-size: 0.9rem;
  transition: background 0.15s;
}
.bl-pagination .page-numbers:hover,
.bl-pagination .page-numbers.current {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.bl-no-posts { text-align: center; color: #718096; padding: 60px 0; }

/* ── Single post hero ── */
.bl-post-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a6b 100%);
  padding: 64px 20px 56px;
  text-align: center;
}
.bl-post-hero-inner { max-width: 780px; margin: 0 auto; }
.bl-post-cat {
  display: inline-block;
  background: rgba(79,142,247,0.2);
  color: var(--blue-light);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 20px;
  text-decoration: none; margin-bottom: 16px;
}
.bl-post-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 20px;
}
.bl-post-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.bl-meta-date, .bl-meta-author, .bl-meta-read {
  display: flex; align-items: center; gap: 5px;
}
.bl-meta-sep { color: rgba(255,255,255,0.3); }

/* ── Post layout: content + sidebar ── */
.bl-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px 72px;
  align-items: start;
}

/* ── Post content ── */
.bl-post-featured-img { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.bl-featured-img { width: 100%; height: auto; display: block; }

.bl-post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}
.bl-post-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin: 36px 0 14px;
}
.bl-post-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin: 28px 0 12px;
}
.bl-post-content p { margin-bottom: 18px; }
.bl-post-content ul, .bl-post-content ol {
  padding-left: 24px; margin-bottom: 18px;
}
.bl-post-content li { margin-bottom: 8px; }
.bl-post-content a { color: var(--blue); text-decoration: underline; }
.bl-post-content a:hover { color: var(--navy); }
.bl-post-content blockquote {
  border-left: 4px solid var(--gold);
  background: rgba(245,158,11,0.06);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic; color: #4a5568;
}
.bl-post-content img {
  max-width: 100%; height: auto;
  border-radius: 10px; margin: 20px 0;
}
.bl-post-content code {
  background: #f1f5f9; padding: 2px 6px;
  border-radius: 4px; font-size: 0.88em;
  color: var(--navy);
}
.bl-post-content pre {
  background: var(--navy-dark); color: #e2e8f0;
  padding: 20px 24px; border-radius: 10px;
  overflow-x: auto; margin: 20px 0; font-size: 0.9rem;
}

/* Tags */
.bl-post-tags {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; margin: 36px 0 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.bl-tag {
  display: inline-block;
  background: #f1f5f9; color: #4a5568;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.bl-tag:hover { background: var(--blue); color: #fff; }

/* CTA strip */
.bl-post-cta-strip {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 12px; padding: 20px 24px;
  margin: 0 0 36px;
}
.bl-cta-strip-text { color: rgba(255,255,255,0.9); }
.bl-cta-strip-text strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.bl-cta-strip-text span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.bl-cta-strip-btn {
  display: inline-block; white-space: nowrap;
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none !important;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.bl-cta-strip-btn:hover { opacity: 0.9; }

/* Post nav */
.bl-post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 8px;
}
.bl-post-nav a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; border-radius: 10px;
  border: 1px solid #e2e8f0; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.bl-post-nav a:hover { border-color: var(--blue); background: #eff6ff; }
.bl-post-nav-next a { text-align: right; align-items: flex-end; }
.bl-nav-label {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: #9ca3af;
}
.bl-post-nav-next .bl-nav-label { justify-content: flex-end; }
.bl-nav-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ── Sidebar ── */
.bl-sidebar { display: flex; flex-direction: column; gap: 24px; }
.bl-sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px; padding: 20px 22px;
}
.bl-sidebar-head {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #9ca3af; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid #f1f5f9;
}
.bl-sidebar-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bl-author-avatar { border-radius: 50%; width: 56px; height: 56px; object-fit: cover; }
.bl-author-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.bl-author-title { font-size: 0.78rem; color: #718096; }
.bl-sidebar-bio { font-size: 0.85rem; color: #4a5568; line-height: 1.6; margin-bottom: 12px; }
.bl-sidebar-link {
  font-size: 0.82rem; font-weight: 700;
  color: var(--blue); text-decoration: none;
}
.bl-sidebar-link:hover { text-decoration: underline; }

/* Premium sidebar card */
.bl-sidebar-premium {
  background: var(--navy-dark);
  border-color: var(--navy);
}
.bl-sidebar-premium .bl-sidebar-head { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1); }
.bl-sidebar-premium p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.bl-sidebar-list {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.bl-sidebar-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.bl-sidebar-cta {
  display: block; text-align: center;
  background: var(--gold); color: var(--navy) !important;
  padding: 11px 16px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.bl-sidebar-cta:hover { opacity: 0.9; }

/* Recent posts */
.bl-recent-post {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}
.bl-recent-post:last-of-type { border-bottom: none; }
.bl-recent-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.bl-recent-title:hover { color: var(--blue); }
.bl-recent-date { font-size: 0.75rem; color: #9ca3af; }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .bl-post-layout { grid-template-columns: 1fr; max-width: 720px; }
  .bl-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bl-post-grid { grid-template-columns: 1fr 1fr; }
  .bl-sidebar { grid-template-columns: 1fr; }
  .bl-post-cta-strip { flex-direction: column; text-align: center; }
  .bl-post-cta-strip .bl-cta-strip-btn { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .bl-post-grid { grid-template-columns: 1fr; }
  .bl-post-nav { grid-template-columns: 1fr; }
  .bl-post-nav-next a { text-align: left; align-items: flex-start; }
  .bl-hero, .bl-post-hero { padding: 52px 16px 44px; }
  .bl-index-section, .bl-post-layout { padding-left: 16px; padding-right: 16px; }
}


/* ── Blog: ensure full-width layout breaks free of any WP container constraints ── */
body.single .bl-post-hero,
body.single .bl-post-layout,
body.blog .bl-hero,
body.blog .bl-index-section,
body.home .bl-hero,
body.home .bl-index-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Remove any inherited max-width from WP core content wrappers on blog pages */
body.single #ccc-main,
body.blog  #ccc-main,
body.home  #ccc-main,
body.single .page-content,
body.blog  .page-content,
body.home  .page-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
