/*
Theme Name: BlueLite Agency
Theme URI: https://blueliteagency.com
Author: Gregory Carroll
Author URI: https://blueliteagency.com
Description: Custom theme for BlueLite Agency — local reputation management, websites, and local SEO for small businesses in Wesley Chapel and Tampa Bay.
Version: 1.2.3
License: GNU General Public License v2 or later
Text Domain: bluelite
*/


/* ── Theme Changelog ──────────────────────────────────────────── */
/*
  v1.2.3 (2026-05-22)
  - Inlined SVG logo in header.php (fixes Chrome caching/rendering issue)

  v1.2.2 (2026-05-22)
  - Fixed logo colors for dark header (white + blue on navy)

  v1.2.1 (2026-05-22)
  - Clarified founding client pricing (strikethrough + discounted price shown)
  - Updated founder badge text to "Founding Client Offer"

  v1.2.0 (2026-05-22)
  - Added BlueLite Agency logo SVG (images/logo.svg)
  - Replaced text wordmark in header with logo image

  v1.1.0 (2026-05-22)
  - Removed "Custom design (no templates)" from Website services list
  - Added Founding Client 50% Off badge to all 3 pricing cards
  - Replaced static HTML contact form with SureForms shortcode (id=8)

  v1.0.0 (2026-05-21)
  - Initial theme build
  - Fixed orphaned endif PHP error in front-page.php
*/

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f2937;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --navy:   #0F172A;
  --blue:   #1A56DB;
  --blue-lt:#EFF6FF;
  --blue-md:#BFDBFE;
  --gold:   #D97706;
  --gold-lt:#FFFBEB;
  --gray:   #F9FAFB;
  --mid:    #374151;
  --border: #E5E7EB;
  --white:  #ffffff;
  --green:  #059669;
}

/* ── Layout helpers ───────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-label.gold { color: var(--gold); background: var(--gold-lt); }
h2.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1440b0; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b45309; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ── NAV ──────────────────────────────────────────────────────── */
nav, .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--blue);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links,
.site-header ul.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.site-header ul.menu a,
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #CBD5E1;
  transition: color .15s;
}
.site-header ul.menu a:hover,
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 8px; }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  padding: 100px 0 80px;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,86,219,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-sub strong { color: #CBD5E1; font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.proof-stat { text-align: left; }
.proof-stat strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.proof-stat span { font-size: 12px; color: #64748B; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-md);
  margin-bottom: 20px;
}
.review-card {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 6px; }
.review-text { font-size: 13px; color: #CBD5E1; line-height: 1.5; margin-bottom: 8px; }
.review-author { font-size: 11px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.card-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.card-stat {
  background: rgba(26,86,219,.15);
  border: 1px solid rgba(26,86,219,.2);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.card-stat strong { display: block; font-size: 24px; font-weight: 800; color: #fff; }
.card-stat span { font-size: 11px; color: #64748B; }

/* ── TRUST BAR ────────────────────────────────────────────────── */
#trust {
  padding: 20px 0;
  background: var(--gray);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}
.trust-check {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 10px; height: 10px; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
#how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--border);
}
.step { text-align: center; padding: 0 16px; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px #fff, 0 0 0 10px var(--blue-md);
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── RESULTS STRIP ────────────────────────────────────────────── */
#results { padding: 56px 0; background: var(--navy); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.result-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.result-item:last-child { border-right: none; }
.result-item strong { display: block; font-size: 42px; font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 6px; }
.result-item span { font-size: 13px; color: #64748B; }
.result-item em { display: block; font-size: 11px; font-style: normal; color: var(--gold); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── SERVICES ─────────────────────────────────────────────────── */
#services { background: var(--gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.service-card.service-featured { border-color: var(--blue); background: var(--navy); }
.service-card.service-featured h3 { color: #fff; }
.service-card.service-featured p { color: #94A3B8; }
.service-card.service-featured .service-list li { color: #CBD5E1; }
.service-card.service-featured .service-list li::before { color: var(--gold); }
.service-icon { font-size: 32px; }
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 0; }
.service-card p { font-size: 14px; color: var(--mid); line-height: 1.7; margin: 0; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-list li { font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── PRICING ──────────────────────────────────────────────────── */
#pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.pricing-card.featured { border-color: var(--navy); }
.popular-badge { display: block; text-align: center; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px; }
.founder-badge { display: block; text-align: center; background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px; border-bottom: 1px solid rgba(217,119,6,.3); }
.founding-price { font-size: 13px; color: var(--gold); margin-top: 8px; text-align: center; } .founding-price s { color: #94a3b8; font-weight: 400; } .founding-price strong { color: var(--gold); }
.card-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.card-tier { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.card-name { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.card-price { display: flex; align-items: baseline; gap: 4px; }
.card-price strong { font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.card-price span { font-size: 15px; color: var(--mid); }
.card-tagline { font-size: 13px; color: var(--mid); margin-top: 10px; font-style: italic; }
.card-body { padding: 24px 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--mid); }
.feature-list li .check { flex-shrink: 0; margin-top: 1px; color: var(--green); font-size: 15px; }
.feature-list li.divider { font-weight: 700; color: var(--navy); font-size: 13px; padding-top: 6px; }
.card-cta { display: block; text-align: center; }
.pricing-addons { margin-top: 48px; background: var(--gray); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; }
.addon-title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 20px; }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon-item { background: var(--blue-lt); border: 1px solid var(--blue-md); border-radius: 8px; padding: 14px 16px; }
.addon-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.addon-item span { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ── ABOUT ────────────────────────────────────────────────────── */
#about { background: var(--gray); }
.about-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.photo-placeholder { aspect-ratio: 4/5; background: #fff; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #9CA3AF; font-size: 13px; border: 2px dashed var(--border); position: relative; overflow: hidden; }
.photo-placeholder .photo-icon { font-size: 48px; }
.photo-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 20px; white-space: nowrap; z-index: 1; }
.about-headshot { border-radius: 20px; width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.about-content p strong { color: var(--navy); font-weight: 600; }
.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: #fff; border-radius: 10px; border-left: 3px solid var(--blue); }
.value-icon { font-size: 18px; flex-shrink: 0; }
.value-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.value-text span { font-size: 13px; color: var(--mid); }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
#testimonials { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-author span { font-size: 12px; color: #9CA3AF; }
.testi-placeholder { border-style: dashed; background: var(--gray); }
.testi-placeholder .testi-quote { color: #9CA3AF; font-style: normal; }
.testi-placeholder .testi-author strong { color: #9CA3AF; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { background: var(--gray); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); gap: 16px; user-select: none; }
.faq-q:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--blue-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ─────────────────────────────────────────────────── */
#cta { padding: 80px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,86,219,.2) 0%, transparent 70%); pointer-events: none; }
#cta h2 { color: #fff; margin-bottom: 16px; }
#cta p { color: #94A3B8; font-size: 17px; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-fine { margin-top: 24px; font-size: 12px; color: #4B5563; }

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact { background: #fff; padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--mid); margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mid); }
.contact-detail-icon { width: 36px; height: 36px; background: var(--blue-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-form { background: var(--gray); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.form-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--navy); background: #fff; transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 700; }

/* ── BLOG LISTING ─────────────────────────────────────────────── */
.blog-hero { padding: 72px 0 48px; background: var(--navy); }
.blog-hero h1 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 12px; }
.blog-hero p { color: #94A3B8; font-size: 17px; max-width: 520px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 64px 0; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.blog-card-img { aspect-ratio: 16/9; background: var(--blue-lt); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; background: linear-gradient(135deg, var(--blue-lt), var(--blue-md)); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #9CA3AF; }
.blog-card-cat { background: var(--blue-lt); color: var(--blue); font-weight: 600; padding: 2px 10px; border-radius: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h2, .blog-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 0; }
.blog-card h2 a, .blog-card h3 a { color: inherit; transition: color .15s; }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 14px; color: var(--mid); line-height: 1.65; flex: 1; }
.blog-card-read { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 6px; margin-top: auto; }
.blog-card-read:hover { color: #1440b0; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; padding-bottom: 64px; }
.blog-pagination a, .blog-pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1.5px solid var(--border); color: var(--mid); transition: all .15s; }
.blog-pagination a:hover { border-color: var(--blue); color: var(--blue); }
.blog-pagination span.current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── SINGLE POST ──────────────────────────────────────────────── */
.post-hero { padding: 72px 0 48px; background: var(--navy); }
.post-hero .post-cats { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.post-hero .post-cat { background: rgba(26,86,219,.3); color: var(--blue-md); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.post-hero h1 { color: #fff; max-width: 760px; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta span { font-size: 13px; color: #64748B; display: flex; align-items: center; gap: 6px; }
.post-body { max-width: 760px; margin: 64px auto; padding: 0 24px; }
.post-body .featured-image { border-radius: 16px; overflow: hidden; margin-bottom: 48px; }
.post-body .featured-image img { width: 100%; }
.post-content h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 40px 0 16px; line-height: 1.2; }
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.post-content p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 8px; }
.post-content strong { color: var(--navy); font-weight: 600; }
.post-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.post-content blockquote { border-left: 4px solid var(--blue); padding: 16px 24px; background: var(--blue-lt); border-radius: 0 8px 8px 0; margin: 28px 0; }
.post-content blockquote p { font-size: 17px; font-style: italic; color: var(--navy); margin: 0; }
.post-content img { border-radius: 12px; margin: 28px 0; }
.post-author-box { margin-top: 64px; padding: 32px; background: var(--gray); border-radius: 16px; display: flex; gap: 24px; align-items: flex-start; border: 1px solid var(--border); }
.author-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-info strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.author-info span { font-size: 12px; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.author-info p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-top: 8px; }
.post-nav { max-width: 760px; margin: 48px auto 80px; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav a { padding: 20px; background: var(--gray); border: 1px solid var(--border); border-radius: 12px; transition: border-color .15s; }
.post-nav a:hover { border-color: var(--blue); }
.post-nav .nav-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9CA3AF; margin-bottom: 6px; }
.post-nav .nav-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.post-nav .next { text-align: right; }
.back-to-blog { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue-md); margin-bottom: 24px; transition: color .15s; }
.back-to-blog:hover { color: #fff; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer, .site-footer {
  background: var(--navy);
  border-top: 3px solid var(--blue);
  padding: 48px 0 28px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { font-size: 20px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: #64748B; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #CBD5E1; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: #64748B; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: #4B5563; }
.footer-bottom a { font-size: 12px; color: #4B5563; transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 0; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .photo-placeholder { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .site-header ul.menu { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  h1 { font-size: 30px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; align-items: flex-start; }
  .proof-divider { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-author-box { flex-direction: column; }
}
