/*
Theme Name:  4TRAC Consulting
Theme URI:   https://4tracconsulting.com
Author:      4TRAC Consulting
Description: High-converting theme for 4TRAC Consulting. Edit all content live via Appearance -> Customize -- logo upload, team photos, hero text, and more.
Version:     6.0.0
Requires at least: 5.8
Tested up to: 6.5
License:     GPL-2.0-or-later
Text Domain: 4trac-consulting
*/

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  --navy:   #1A1A2E;
  --navy2:  #0F1923;
  --gold:   #C8960C;
  --gold-l: #F0B429;
  --slate:  #4A5568;
  --body:   #2D3748;
  --lgray:  #F7F8FA;
  --mgray:  #E2E8F0;
  --white:  #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --max-w:  1140px;
  --transition: all 0.25s ease;
}

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-gray { background: var(--lgray); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── EYEBROW LABEL ────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: '— '; }
.eyebrow::after  { content: ' —'; }

/* ── HEADINGS ─────────────────────────────────────────────────────────────── */
.h1 { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.h3 { font-family: 'Sora', sans-serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; line-height: 1.25; }
.h4 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--slate); line-height: 1.7; }
.body-text { font-size: 16px; color: var(--body); line-height: 1.75; }
.small { font-size: 13px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,150,12,0.35);
}
.btn-primary:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,12,0.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 20px 40px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.nav-phone strong { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--navy2); padding: 24px;
  flex-direction: column; gap: 20px; z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200,150,12,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(15,52,96,0.6) 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  position: relative; z-index: 2;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,12,0.12); border: 1px solid rgba(200,150,12,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label::before { content: '●'; font-size: 8px; }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.72); margin-bottom: 40px; max-width: 520px; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.hero-trust-avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--navy); margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.hero-trust p { font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-trust strong { color: var(--white); }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px;
  backdrop-filter: blur(12px);
  width: 100%; max-width: 420px;
}
.hero-card-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.metric-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.metric-dot { width: 8px; height: 8px; border-radius: 50%; }
.metric-dot.green { background: #68D391; }
.metric-dot.gold { background: var(--gold); }
.metric-dot.blue { background: #63B3ED; }
.metric-value { font-size: 18px; font-weight: 700; color: var(--white); }
.metric-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.badge-green { background: rgba(104,211,145,0.15); color: #68D391; }
.badge-gold { background: rgba(200,150,12,0.15); color: var(--gold); }
.hero-card-footer { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.audit-cta { display: flex; align-items: center; justify-content: space-between; }
.audit-text { font-size: 13px; color: rgba(255,255,255,0.55); }
.audit-btn { background: var(--gold); color: var(--navy); border-radius: 8px; padding: 10px 18px; font-size: 13px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.audit-btn:hover { background: var(--gold-l); }

/* ── LOGOS BAR ────────────────────────────────────────────────────────────── */
#logos { background: var(--navy2); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.logos-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.5px; text-align: center; margin-bottom: 28px; }
.logos-grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  opacity: 0.4; filter: grayscale(1) brightness(2);
  transition: var(--transition); font-size: 15px; font-weight: 800;
  color: white; letter-spacing: -0.02em;
}
.logo-item:hover { opacity: 0.75; }

/* ── PAIN SECTION ─────────────────────────────────────────────────────────── */
#pain { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pain-left { position: sticky; top: 100px; }
.pain-desc { font-size: 17px; color: var(--slate); line-height: 1.75; margin: 20px 0 32px; }
.pain-items { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: var(--lgray); border-left: 3px solid var(--mgray);
  transition: var(--transition);
}
.pain-item:hover { border-left-color: var(--gold); background: #FFFBF0; }
.pain-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pain-content h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pain-content p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
#services { background: var(--lgray); }
.services-intro { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 16px;
  padding: 36px 32px; position: relative; overflow: hidden;
  border: 1px solid var(--mgray);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--mgray); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { background: var(--gold); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--lgray); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,150,12,0.1); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-outcome { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.service-card p { font-size: 14px; color: var(--slate); line-height: 1.7; flex: 1; }
.service-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
#process { background: var(--navy); overflow: hidden; }
.process-intro { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px; background: rgba(200,150,12,0.3);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(200,150,12,0.4);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold);
  position: relative; z-index: 2;
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.process-step h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.process-timeline { text-align: center; margin-top: 64px; }
.timeline-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,12,0.1); border: 1px solid rgba(200,150,12,0.3);
  border-radius: 100px; padding: 10px 24px;
  font-size: 15px; font-weight: 600; color: var(--gold);
}

/* ── RESULTS / STATS ──────────────────────────────────────────────────────── */
#results { background: var(--white); }
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 80px;
}
.stat-block {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid var(--mgray);
  background: var(--white); transition: var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--navy); }
.stat-block:hover .stat-num,
.stat-block:hover .stat-label { color: var(--white); }
.stat-block:hover .stat-unit { color: var(--gold); }
.stat-num { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; transition: var(--transition); }
.stat-unit { color: var(--gold); }
.stat-label { font-size: 14px; font-weight: 500; color: var(--slate); margin-top: 8px; transition: var(--transition); }

.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.result-card {
  border-radius: 16px; padding: 40px; position: relative; overflow: hidden;
  background: var(--lgray); border: 1px solid var(--mgray);
}
.result-card.featured { background: var(--navy); border-color: var(--navy); }
.result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 20px; }
.result-number { font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.result-card.featured .result-number { color: var(--white); }
.result-card:not(.featured) .result-number { color: var(--navy); }
.result-desc { font-size: 15px; line-height: 1.6; }
.result-card.featured .result-desc { color: rgba(255,255,255,0.65); }
.result-card:not(.featured) .result-desc { color: var(--slate); }
.result-source { margin-top: 24px; font-size: 13px; font-weight: 600; }
.result-card.featured .result-source { color: rgba(255,255,255,0.4); }
.result-card:not(.featured) .result-source { color: rgba(0,0,0,0.35); }

/* ── CASE STUDY ───────────────────────────────────────────────────────────── */
#case-study { background: var(--lgray); }
.case-inner {
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
}
.case-content { padding: 64px; }
.case-tag { display: inline-block; background: rgba(200,150,12,0.1); color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.case-content h2 { font-size: 30px; margin-bottom: 16px; color: var(--navy); }
.case-content p { font-size: 16px; color: var(--slate); line-height: 1.75; margin-bottom: 32px; }
.case-outcomes { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.outcome { display: flex; align-items: flex-start; gap: 12px; }
.outcome-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.outcome p { font-size: 15px; color: var(--body); line-height: 1.5; }
.outcome strong { color: var(--navy); }
.case-visual {
  background: var(--navy); padding: 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.case-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.case-metric { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; }
.case-metric .num { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.case-metric .desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.case-quote { background: rgba(200,150,12,0.08); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 8px 8px 0; }
.case-quote p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; font-style: italic; margin-bottom: 10px; }
.case-quote cite { font-size: 12px; color: rgba(255,255,255,0.4); font-style: normal; }

/* ── DIFFERENTIATORS ──────────────────────────────────────────────────────── */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { margin-bottom: 20px; }
.why-content p { font-size: 17px; color: var(--slate); line-height: 1.75; margin-bottom: 36px; }
.why-pillars { display: flex; flex-direction: column; gap: 24px; }
.why-pillar { display: flex; gap: 20px; align-items: flex-start; }
.pillar-num { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,150,12,0.1); color: var(--gold); font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pillar-text p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.why-comparison { background: var(--lgray); border-radius: 20px; overflow: hidden; }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--navy); }
.comparison-header div { padding: 16px 20px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-header div:first-child { color: rgba(255,255,255,0.5); }
.comparison-header div:nth-child(2) { color: rgba(255,255,255,0.5); text-align: center; border-left: 1px solid rgba(255,255,255,0.1); }
.comparison-header div:nth-child(3) { color: var(--gold); text-align: center; border-left: 1px solid rgba(255,255,255,0.1); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--mgray); }
.comparison-row div { padding: 14px 20px; font-size: 14px; color: var(--body); }
.comparison-row div:first-child { font-weight: 600; color: var(--navy); }
.comparison-row div:nth-child(2) { text-align: center; border-left: 1px solid var(--mgray); color: var(--slate); }
.comparison-row div:nth-child(3) { text-align: center; border-left: 1px solid var(--mgray); color: #22C55E; font-weight: 700; }
.comp-no { color: #EF4444 !important; font-weight: 600 !important; }
.comp-partial { color: #F59E0B !important; }

/* ── TEAM ─────────────────────────────────────────────────────────────────── */
#team { background: var(--lgray); }
.team-intro { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--mgray); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 200px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; letter-spacing: -4px;
  position: relative; overflow: hidden;
}
.team-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(26,26,46,0.5), transparent); }
.team-info { padding: 28px; }
.team-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.team-bio { font-size: 14px; color: var(--slate); line-height: 1.65; }
.team-cred { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.cred-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--lgray); color: var(--navy); border: 1px solid var(--mgray); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
#testimonials { background: var(--navy); }
.testi-intro { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px; transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,150,12,0.3); }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,150,12,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-company { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
#faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 32px; }
.faq-items { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--mgray); }
.faq-question {
  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; transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--lgray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; line-height: 1; transition: var(--transition); }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 15px; color: var(--slate); line-height: 1.75; padding-bottom: 22px; }

/* ── CTA SECTION ──────────────────────────────────────────────────────────── */
#cta-section {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 96px 0;
}
#cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,12,0.12), transparent 70%);
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-inner h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-details { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.cta-detail { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.5); }
.cta-detail::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
#footer { background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); color: rgba(255,255,255,0.5); }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-logo { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--gold); }

/* ── STICKY CTA BAR ───────────────────────────────────────────────────────── */
#sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 14px 24px; display: none;
  align-items: center; justify-content: center; gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
#sticky-bar.visible { display: flex; }
#sticky-bar p { font-size: 15px; color: rgba(255,255,255,0.8); }
#sticky-bar strong { color: var(--white); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-left { position: relative; top: 0; }
  .grid-3, .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--mgray); }
  .stat-block:nth-child(2n) { border-right: none; }
  .results-grid { grid-template-columns: 1fr; }
  .case-inner { grid-template-columns: 1fr; }
  .case-visual { order: -1; padding: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section, .section--lg { padding: 64px 0; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-metric-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .logos-grid { gap: 32px; }
  .comparison-header div, .comparison-row div { padding: 12px 12px; font-size: 12px; }
  #sticky-bar { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── BLOCK EDITOR COMPATIBILITY ──────────────────────────────────────────── */
.wp-block-image img { border-radius: var(--radius); }
.wp-block-button__link { font-family: 'Inter', sans-serif !important; }
.wp-site-logo img { height: 48px; width: auto; }

/* Team photo blocks */
.team-photo-block { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--gold); }
.team-photo-block img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-initials { width: 80px; height: 80px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); margin: 0 auto 16px; border: 3px solid var(--gold); }

/* Logo bar blocks */
.client-logo-block { display: flex; align-items: center; justify-content: center; padding: 12px 24px; }
.client-logo-block img { max-height: 40px; width: auto; filter: none; opacity: 1; transition: all 0.25s; }
.client-logo-block img:hover { filter: none; opacity: 1; }

/* Editor overrides — prevent WP adding unwanted spacing */
.editor-styles-wrapper .section { padding: 96px 0; }
.is-root-container > .wp-block { margin-top: 0 !important; margin-bottom: 0 !important; }

/* Site logo in nav */
.nav-logo-block { display: flex; align-items: center; }
.nav-logo-block .wp-block-site-logo { margin: 0; }
