/*
Theme Name: Boost Franchising
Theme URI: https://boostfranchising.com
Author: Boost Franchising
Author URI: https://boostfranchising.com
Description: Custom WordPress theme for Boost Franchising - John Ghabra franchise consulting. Built with Guerrilla Franchising layout structure and Boost Franchising branding.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: boost-franchising
Tags: franchise, consulting, business, one-page, custom
*/

/* ============================================================
   BOOST FRANCHISING — DESIGN TOKENS
   ============================================================ */
:root {
  --navy:   #0d1f3c;
  --blue:   #1a3a6e;
  --accent: #f5a623;
  --gold:   #ffc04a;
  --light:  #f4f7fb;
  --white:  #ffffff;
  --text:   #111827;
  --muted:  #5b6880;
  --border: #dde3ed;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', sans-serif;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(13,31,60,.09);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-b); cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  line-height: 1.2;
  color: var(--navy);
}
p { line-height: 1.65; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* Section spacing */
.section { padding: 88px 40px; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }

/* Section labels */
.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-title.light { color: var(--white); }
.sec-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
}
.sec-sub.light { color: rgba(255,255,255,.68); }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px rgba(245,166,35,.38);
  transition: all .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.48);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
  text-decoration: none;
}
.btn-dark:hover { background: var(--blue); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 16px rgba(13,31,60,.06);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(13,31,60,.13); }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--navy); }
.logo-text .tagline { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-top: 1px; }

/* Nav menu */
#primary-navigation { display: flex; align-items: center; gap: 2px; }
#primary-navigation ul { display: flex; align-items: center; gap: 2px; list-style: none; }
#primary-navigation ul li { position: relative; }
#primary-navigation ul li a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 13px; border-radius: 7px;
  transition: background .18s, color .18s;
  display: block;
  white-space: nowrap;
}
#primary-navigation ul li a:hover { background: var(--light); color: var(--blue); }
#primary-navigation ul li.menu-item-has-children > a::after { content: ' ▾'; font-size: 10px; opacity: .6; }

/* Dropdown */
#primary-navigation ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 4px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 6px;
  box-shadow: 0 10px 32px rgba(13,31,60,.13);
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul li ul li a {
  display: block; padding: 8px 14px;
  font-size: 13px; border-radius: 7px;
  transition: background .15s;
}
#primary-navigation ul li ul li a:hover { background: var(--light); color: var(--blue); }

/* Nav CTA */
.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 9px !important;
  box-shadow: 0 3px 14px rgba(245,166,35,.32);
}
.nav-cta-btn:hover { background: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 90% at 75% 50%, rgba(26,58,110,.75) 0%, transparent 70%),
              radial-gradient(ellipse 45% 65% at 15% 85%, rgba(245,166,35,.12) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; position: relative; z-index: 1; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.14);
  border: 1px solid rgba(245,166,35,.38);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 22px;
}
.hero-section h1 {
  font-family: var(--font-h);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 22px;
}
.hero-section h1 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--gold), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .stat-num { font-family: var(--font-h); font-size: 30px; font-weight: 700; color: var(--white); }
.hero-stat .stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* Hero Qualification Card */
.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.hero-card .card-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 5px;
}
.hero-card h2 {
  font-family: var(--font-h);
  font-size: 21px; color: var(--navy);
  margin-bottom: 22px; line-height: 1.3;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-options { display: flex; flex-direction: column; gap: 7px; }
.form-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer; font-size: 13px; transition: all .2s;
}
.form-option:hover { border-color: var(--accent); background: #fffbf2; }
.form-option input { accent-color: var(--accent); }
.card-submit-btn {
  width: 100%; background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 15px; padding: 15px;
  border-radius: 10px; border: none; cursor: pointer;
  margin-top: 12px; font-family: var(--font-b);
  transition: background .2s;
}
.card-submit-btn:hover { background: var(--blue); }
.card-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   WINS SECTION
   ============================================================ */
.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.win-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.win-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.win-number {
  font-family: var(--font-h); font-size: 52px; font-weight: 800;
  color: rgba(13,31,60,.06); line-height: 1;
  position: absolute; top: 14px; right: 16px;
}
.win-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 8px 0 10px; }
.win-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   KNOW ITEMS
   ============================================================ */
.know-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.know-item { background: var(--light); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.know-num {
  width: 38px; height: 38px; background: var(--navy); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--accent); margin-bottom: 16px;
}
.know-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.know-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.guarantee-box {
  background: var(--navy); border-radius: 18px;
  padding: 40px; margin-top: 48px; text-align: center;
}
.guarantee-box h3 { font-family: var(--font-h); font-size: 24px; color: var(--white); margin-bottom: 12px; }
.guarantee-box p { font-size: 16px; color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto; }

/* ============================================================
   MEET JOHN
   ============================================================ */
.john-grid { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center; }
.john-photo-wrap { position: relative; }
.john-photo {
  width: 100%; aspect-ratio: .82;
  border-radius: 20px; overflow: hidden; background: var(--blue);
}
.john-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.john-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--accent); border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(245,166,35,.38);
}
.john-badge .badge-name { font-family: var(--font-h); font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.john-badge .badge-title { font-size: 11px; font-weight: 600; color: var(--navy); opacity: .72; }
.john-creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.cred-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 20px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; color: rgba(255,255,255,.82);
}
.why-list li::before {
  content: '✓';
  min-width: 22px; height: 22px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--navy);
  margin-top: 2px; flex-shrink: 0;
}
.why-list.dark li { color: var(--muted); }
.why-list.dark li::before { background: var(--accent); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 52px; height: 52px; background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--accent); flex-shrink: 0;
}
.step-content h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-meta { font-size: 12px; font-weight: 600; color: var(--accent); margin-top: 8px; }

/* ============================================================
   FREE MODEL
   ============================================================ */
.free-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; align-items: center; }
.free-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.free-point { display: flex; gap: 14px; align-items: flex-start; }
.fp-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,.15); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.fp-text h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.fp-text p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.free-cost-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px;
}
.free-cost-box h3 { font-family: var(--font-h); font-size: 20px; color: var(--white); margin-bottom: 24px; }
.cost-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px;
}
.cost-row:last-of-type { border-bottom: none; }
.cost-row .cost-label { color: rgba(255,255,255,.65); }
.cost-row .cost-value { font-weight: 700; color: var(--accent); }
.cost-total {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12); text-align: center;
}
.cost-total .total-num { font-family: var(--font-h); font-size: 26px; color: var(--accent); font-weight: 800; }
.cost-total .total-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ============================================================
   FRANCHISE CATEGORIES
   ============================================================ */
.franchise-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.franchise-cat {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .25s, box-shadow .25s;
}
.franchise-cat:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,31,60,.15); }
.cat-image { height: 180px; background: var(--light); overflow: hidden; position: relative; }
.cat-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.franchise-cat:hover .cat-image img { transform: scale(1.06); }
.cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
}
.cat-body { padding: 20px; }
.cat-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cat-body p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.cat-link { font-size: 13px; font-weight: 700; color: var(--accent); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.benefit-icon {
  width: 44px; height: 44px; background: var(--light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.benefit-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.test-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.test-author { font-size: 13px; font-weight: 700; color: var(--navy); }
.test-role { font-size: 12px; color: var(--muted); }

/* ============================================================
   LOGOS GRID
   ============================================================ */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px; margin-top: 44px;
}
.logo-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px;
  display: flex; align-items: center; justify-content: center; height: 76px;
}
.logo-item img { max-height: 46px; width: auto; object-fit: contain; }

/* ============================================================
   VETERANS SECTION
   ============================================================ */
.veterans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.veterans-image { border-radius: 20px; overflow: hidden; }
.veterans-image img { width: 100%; height: 360px; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
  font-family: var(--font-b); gap: 16px;
}
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--accent);
  flex-shrink: 0; transition: transform .25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy); padding: 56px 40px; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-family: var(--font-h); font-size: 40px; font-weight: 800; color: var(--accent); }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ============================================================
   BLOG POSTS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden; display: block;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,31,60,.14); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-cat-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
}
.blog-card-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 8px 0 12px; line-height: 1.4; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--accent); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(245,166,35,.07);
}
.cta-banner h2 { font-family: var(--font-h); font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner .cta-desc { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 14px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 40px 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-top: 14px; }
.footer-logo .logo-text .brand { color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background .2s; color: rgba(255,255,255,.65);
}
.social-link:hover { background: var(--accent); color: var(--navy); }
.footer-widget h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  font-family: var(--font-b);
}
.footer-widget ul { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.footer-widget ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-widget ul li a:hover { color: var(--white); }
.footer-cta-box {
  margin-top: 20px; background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.25); border-radius: 10px; padding: 14px;
}
.footer-cta-box p { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.footer-cta-box a { font-size: 13px; font-weight: 700; color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 20px; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 130px 40px 70px; text-align: center;
}
.page-hero h1 { font-family: var(--font-h); font-size: clamp(30px, 5vw, 50px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.about-why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px; border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: flex-start;
}
.aw-num {
  width: 42px; height: 42px; background: var(--navy); color: var(--accent);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.aw-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.aw-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   WOOCOMMERCE COMPATIBILITY (minimal)
   ============================================================ */
.woocommerce-notices-wrapper { padding: 20px 40px; }

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { clear: both; display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal;
}
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* WordPress post author */ }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .franchise-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  #site-header { padding: 0 20px; }
  #primary-navigation { display: none; }
  .hamburger { display: flex; }
  #primary-navigation.nav-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(13,31,60,.1);
  }
  #primary-navigation.nav-open ul { flex-direction: column; width: 100%; }
  #primary-navigation.nav-open ul li ul { display: none; position: static; box-shadow: none; border: none; padding: 4px 0 0 16px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .wins-grid, .know-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .franchise-cats-grid { grid-template-columns: 1fr; }
  .john-grid, .free-grid, .footer-top, .veterans-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-grid, .about-why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 20px; }
  .hero-section { padding: 90px 20px 50px; }
  .cta-banner { padding: 60px 20px; }
  #colophon { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
