/* ================================================================
   FRONTLINE FAMILY COVERAGE — Design System
   Police Blue + Fire Red | Inter
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:       #0D2B5E;
  --blue:       #1A3A6B;
  --blue-mid:   #2B5BA8;
  --blue-light: #E8F0FA;
  --red:        #B03A2E;
  --red-hover:  #CC2200;
  --off-white:  #F4F6F9;
  --white:      #FFFFFF;
  --text:       #1B1B1B;
  --muted:      #5a6677;
  --border:     #D6DEF0;
  --shadow-sm:  0 2px 8px rgba(13,43,94,.08);
  --shadow-md:  0 8px 32px rgba(13,43,94,.12);
  --shadow-lg:  0 20px 60px rgba(13,43,94,.18);
  --r:          8px;
  --r-lg:       12px;
  --fh: 'Inter', sans-serif;
  --fb: 'Inter', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--fb); }

/* ================================================================
   ANIMATIONS
   ================================================================ */

/* Page load fade */
@keyframes fadeDown  { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; }                              to { opacity:1; } }
@keyframes slideLeft { from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:translateX(0); } }
@keyframes slideRight{ from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleUp   { from { opacity:0; transform:scale(.93); }       to { opacity:1; transform:scale(1); } }
@keyframes pulse     { 0%,100%{ box-shadow:0 0 0 0 rgba(176,58,46,.45); } 60%{ box-shadow:0 0 0 14px rgba(176,58,46,0); } }
@keyframes float     { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
@keyframes shimmer   { 0%{ background-position:-200% center; } 100%{ background-position:200% center; } }
@keyframes countUp   { from { opacity:0; transform:scale(.7); } to { opacity:1; transform:scale(1); } }
@keyframes drawLine  { from { width:0; } to { width:100%; } }

/* Scroll-reveal classes */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(.94); }

.reveal.vis, .reveal-left.vis, .reveal-right.vis, .reveal-scale.vis {
  opacity: 1; transform: none;
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .28s; }
.delay-4 { transition-delay: .38s; }
.delay-5 { transition-delay: .48s; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  background: var(--navy);
  height: 68px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  animation: fadeDown .5s ease both;
}

.nav-logo { display:flex; align-items:center; gap:.75rem; }
.nav-logo img { height:46px; width:auto; }
.nav-brand-name { font-family:var(--fh); font-size:1.05rem; font-weight:800; color:#fff; letter-spacing:.02em; line-height:1.1; }
.nav-brand-tag  { font-size:.6rem; color:rgba(255,255,255,.4); letter-spacing:.08em; text-transform:uppercase; }

.nav-links { display:flex; align-items:center; gap:1.75rem; }

.nav-link {
  font-size:.875rem; font-weight:500; color:rgba(255,255,255,.68);
  position:relative; transition:color .2s;
}
.nav-link::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:2px; background:var(--red); transition:width .25s;
}
.nav-link:hover, .nav-link.active { color:#fff; }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

.nav-phone { font-size:.875rem; font-weight:600; color:#7EA8D8; transition:color .2s; }
.nav-phone:hover { color:#fff; }

.nav-cta {
  background:var(--red); color:#fff; font-family:var(--fh);
  font-size:.9375rem; font-weight:700; padding:.6rem 1.2rem;
  border-radius:var(--r); letter-spacing:.04em;
  transition:background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background:var(--red-hover); transform:translateY(-1px); box-shadow:0 6px 18px rgba(176,58,46,.45); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:26px; height:2px; background:#fff; border-radius:2px; transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display:none; flex-direction:column;
  background:var(--navy); padding:1.25rem 1.5rem 1.75rem;
  gap:1.1rem; border-top:1px solid rgba(255,255,255,.08);
  position:sticky; top:68px; z-index:999;
}
.mobile-menu.open { display:flex; }
.mobile-menu .nav-link { font-size:1rem; }
.mobile-menu .nav-cta { text-align:center; padding:.875rem; font-size:1rem; border-radius:var(--r); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-red {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--red); color:#fff; font-family:var(--fh);
  font-size:1.0625rem; font-weight:700; padding:1rem 2.25rem;
  border-radius:var(--r); letter-spacing:.04em;
  transition:background .2s, transform .15s, box-shadow .2s;
  border:none; white-space:nowrap;
}
.btn-red:hover { background:var(--red-hover); transform:translateY(-2px); box-shadow:0 10px 28px rgba(176,58,46,.45); }
.btn-red.pulse { animation:pulse 2.5s ease infinite; }

.btn-outline {
  display:inline-flex; align-items:center; gap:.5rem;
  background:transparent; color:#fff; font-family:var(--fh);
  font-size:1rem; font-weight:700; padding:.875rem 2rem;
  border-radius:var(--r); border:2px solid rgba(255,255,255,.4);
  letter-spacing:.04em; transition:all .2s; white-space:nowrap;
}
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.08); }

/* ================================================================
   LAYOUT UTILS
   ================================================================ */
.container { max-width:1080px; margin:0 auto; }
.section { padding:5rem 2.5rem; }
.section-sm { padding:3rem 2.5rem; }
.bg-white    { background:var(--white); }
.bg-off      { background:var(--off-white); }
.bg-navy     { background:var(--navy); }
.bg-blue     { background:var(--blue); }

.section-eyebrow {
  font-size:.6875rem; font-weight:700; color:var(--red);
  letter-spacing:.12em; text-transform:uppercase;
  margin-bottom:.625rem; text-align:center;
}
.section-h2 {
  font-family:var(--fh); font-size:2.75rem; font-weight:800;
  color:var(--navy); line-height:1.1; letter-spacing:-.02em;
  text-align:center; margin-bottom:.875rem;
}
.section-h2.white { color:#fff; }
.section-sub {
  font-size:1.0625rem; color:var(--muted); line-height:1.7;
  max-width:540px; margin:0 auto 3rem; text-align:center;
}
.section-sub.white { color:rgba(255,255,255,.65); }

/* ================================================================
   PROOF STRIP
   ================================================================ */
.proof-strip {
  background:var(--blue); padding:.875rem 2.5rem;
  display:flex; justify-content:center; align-items:center;
  gap:2rem; flex-wrap:wrap;
}
.proof-item {
  display:flex; align-items:center; gap:.5rem;
  font-size:.8125rem; font-weight:500; color:rgba(255,255,255,.75);
}
.proof-item::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:var(--red); flex-shrink:0;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  display:grid; grid-template-columns:repeat(3,1fr);
  background:rgba(255,255,255,.07); border-radius:var(--r-lg);
  overflow:hidden; border:1px solid rgba(255,255,255,.12);
  max-width:660px; margin:0 auto;
}
.stat-item { padding:1.25rem 1rem; text-align:center; border-right:1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:var(--fh); font-size:2rem; font-weight:900;
  color:var(--red); line-height:1; margin-bottom:.3rem;
  animation:countUp .6s ease both;
}
.stat-num.blue { color:#7EA8D8; }
.stat-label { font-size:.6875rem; color:rgba(255,255,255,.5); letter-spacing:.04em; text-transform:uppercase; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background:linear-gradient(150deg, var(--navy) 0%, #1e3d72 55%, var(--blue) 100%);
  padding:5.5rem 2.5rem 4.5rem; position:relative; overflow:hidden; text-align:center;
}
.hero-orb-1 {
  position:absolute; top:-120px; right:-80px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(43,91,168,.18) 0%, transparent 70%);
  pointer-events:none;
}
.hero-orb-2 {
  position:absolute; bottom:-80px; left:5%;
  width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle, rgba(176,58,46,.08) 0%, transparent 70%);
  pointer-events:none; animation:float 6s ease-in-out infinite;
}
.hero-inner { max-width:820px; margin:0 auto; position:relative; z-index:1; }

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(176,58,46,.12); border:1px solid rgba(176,58,46,.4);
  border-radius:99px; padding:.35rem 1rem; margin-bottom:1.5rem;
  animation:fadeDown .6s ease both;
}
.hero-eyebrow-dot { width:6px; height:6px; border-radius:50%; background:var(--red); flex-shrink:0; }
.hero-eyebrow span { font-size:.6875rem; font-weight:700; color:#E88880; letter-spacing:.1em; text-transform:uppercase; }

.hero-h1 {
  font-family:var(--fh); font-size:clamp(2.5rem,6vw,4.25rem);
  font-weight:900; color:#fff; line-height:1.05; letter-spacing:-.02em;
  margin-bottom:1.125rem; animation:fadeUp .7s ease .1s both;
}
.hero-h1 .h-red  { color:#E88880; }
.hero-h1 .h-blue { color:#7EA8D8; }

.hero-sub {
  font-size:1.0625rem; color:rgba(255,255,255,.68); line-height:1.7;
  max-width:580px; margin:0 auto 2.25rem;
  animation:fadeUp .7s ease .2s both;
}
.hero-ctas { display:flex; flex-direction:column; align-items:center; gap:.875rem; margin-bottom:2.75rem; animation:fadeUp .7s ease .3s both; }
.hero-phone { font-size:.875rem; color:rgba(255,255,255,.45); }
.hero-phone a { color:#7EA8D8; text-decoration:underline; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background:linear-gradient(140deg, var(--navy) 0%, var(--blue) 100%);
  padding:4.5rem 2.5rem; text-align:center; position:relative; overflow:hidden;
}
.page-hero::before {
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;
}
.page-hero-inner { position:relative; z-index:1; }
.page-hero h1 {
  font-family:var(--fh); font-size:clamp(2rem,5vw,3rem);
  font-weight:900; color:#fff; line-height:1.1; margin-bottom:.75rem;
  animation:fadeUp .7s ease both;
}
.page-hero p { font-size:1.0625rem; color:rgba(255,255,255,.6); max-width:520px; margin:0 auto; line-height:1.65; animation:fadeUp .7s ease .15s both; }

/* ================================================================
   PAIN CARDS
   ================================================================ */
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.pain-card {
  background:#fff; border-radius:var(--r-lg); padding:2.25rem 1.75rem;
  border:.5px solid var(--border); border-top:4px solid var(--red);
  min-height:260px; display:flex; flex-direction:column; gap:.75rem;
  transition:transform .25s, box-shadow .25s;
}
.pain-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.pain-card.blue-top { border-top-color:var(--blue); }
.pain-card.navy-top { border-top-color:var(--navy); }
.pain-big { font-family:var(--fh); font-size:2.25rem; font-weight:900; color:var(--red); line-height:1; }
.pain-big.blue { color:var(--blue); }
.pain-big.navy { color:var(--navy); }
.pain-title { font-size:.9375rem; font-weight:700; color:var(--navy); line-height:1.3; }
.pain-body  { font-size:.875rem; color:var(--muted); line-height:1.7; flex:1; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-featured {
  background:var(--blue); border-radius:var(--r-lg); padding:2.75rem 3rem;
  border-left:4px solid var(--red); max-width:800px; margin:0 auto;
  box-shadow:var(--shadow-md);
}
.stars { font-size:1.25rem; letter-spacing:3px; color:#E8A090; margin-bottom:1rem; }
.testi-quote { font-size:1.125rem; color:#fff; line-height:1.75; font-style:italic; margin-bottom:1.5rem; }
.testi-savings { font-family:var(--fh); font-size:2.75rem; font-weight:900; color:var(--red); line-height:1; margin-bottom:.25rem; }
.testi-savings-label { font-size:.75rem; color:rgba(255,255,255,.4); margin-bottom:1rem; letter-spacing:.03em; }
.testi-who { font-size:.875rem; color:rgba(255,255,255,.6); font-weight:600; }
.testi-who strong { color:#fff; }

.testi-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; }
.testi-mini {
  background:#fff; border-radius:var(--r-lg); padding:1.5rem;
  border:.5px solid var(--border); transition:transform .25s, box-shadow .25s;
}
.testi-mini:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.mini-stars { font-size:.875rem; color:#D4860A; margin-bottom:.5rem; letter-spacing:2px; }
.mini-savings { font-family:var(--fh); font-size:1.375rem; font-weight:800; color:var(--blue); margin-bottom:.375rem; }
.mini-q { font-size:.8125rem; color:var(--muted); line-height:1.6; font-style:italic; margin-bottom:.875rem; }
.mini-who { display:flex; align-items:center; gap:.5rem; font-size:.8125rem; font-weight:600; color:var(--muted); }
.avatar { width:30px; height:30px; border-radius:50%; background:var(--blue-light); display:flex; align-items:center; justify-content:center; font-size:.6875rem; font-weight:700; color:var(--blue); flex-shrink:0; }

/* ================================================================
   STEPS
   ================================================================ */
.steps-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.75rem; max-width:900px; margin:0 auto; position:relative;
}
.steps-grid::before {
  content:''; position:absolute; top:28px;
  left:calc(16.67% + 28px); right:calc(16.67% + 28px);
  height:2px; background:linear-gradient(90deg,var(--red),var(--blue)); z-index:0;
}
.step-card {
  background:#fff; border-radius:var(--r-lg); padding:2rem 1.5rem;
  text-align:center; border:.5px solid var(--border); position:relative; z-index:1;
  transition:transform .25s, box-shadow .25s;
}
.step-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.step-circle {
  width:56px; height:56px; border-radius:50%; background:var(--red); color:#fff;
  font-family:var(--fh); font-size:1.5rem; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem; box-shadow:0 4px 16px rgba(176,58,46,.4);
}
.step-title { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:.625rem; line-height:1.3; }
.step-body  { font-size:.875rem; color:var(--muted); line-height:1.65; }

/* ================================================================
   FOUNDER
   ================================================================ */
.founder-grid {
  display:grid; grid-template-columns:360px 1fr;
  gap:4rem; align-items:center; max-width:980px; margin:0 auto;
}
.founder-photo-wrap { position:relative; }
.founder-photo {
  border-radius:var(--r-lg); width:100%; object-fit:cover;
  box-shadow:var(--shadow-lg); border:3px solid var(--blue-mid);
  aspect-ratio:.85; object-position:top;
}
.founder-badge {
  position:absolute; bottom:-16px; right:-16px;
  background:var(--red); color:#fff; border-radius:var(--r);
  padding:.875rem 1.25rem; font-family:var(--fh); font-size:.9375rem;
  font-weight:700; text-align:center; line-height:1.3;
  box-shadow:0 8px 24px rgba(176,58,46,.4); border:2px solid #fff; z-index:2;
}
.founder-eyebrow { font-size:.6875rem; font-weight:700; color:var(--red); letter-spacing:.12em; text-transform:uppercase; margin-bottom:.5rem; }
.founder-name { font-family:var(--fh); font-size:2.5rem; font-weight:800; color:var(--navy); line-height:1.1; margin-bottom:.25rem; }
.founder-rank { font-size:.9375rem; color:var(--muted); margin-bottom:1.5rem; font-weight:500; }
.founder-body { font-size:1rem; color:var(--text); line-height:1.8; margin-bottom:1.5rem; }
.founder-creds { display:flex; flex-wrap:wrap; gap:.5rem; }
.cred-pill { background:var(--blue-light); color:var(--blue); font-size:.75rem; font-weight:600; padding:.3rem .75rem; border-radius:99px; border:.5px solid var(--blue-mid); }

/* ================================================================
   TRUST / FINAL CTA
   ================================================================ */
.final-cta-inner { text-align:center; max-width:660px; margin:0 auto; }
.trust-row { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
.trust-badge {
  background:rgba(255,255,255,.07); border:.5px solid rgba(255,255,255,.15);
  border-radius:5px; padding:.5rem 1rem; font-size:.75rem;
  color:rgba(255,255,255,.5); font-weight:600; letter-spacing:.04em;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; }
.svc-card {
  background:#fff; border-radius:var(--r-lg); padding:2rem 1.75rem;
  border:.5px solid var(--border); border-top:3px solid var(--blue-mid);
  transition:transform .25s, box-shadow .25s;
}
.svc-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.svc-icon  { font-size:2rem; margin-bottom:.875rem; }
.svc-title { font-family:var(--fh); font-size:1.25rem; font-weight:700; color:var(--navy); margin-bottom:.5rem; }
.svc-body  { font-size:.875rem; color:var(--muted); line-height:1.7; margin-bottom:.875rem; }
.svc-proof { font-size:.8125rem; color:var(--blue); font-weight:600; background:var(--blue-light); padding:.35rem .75rem; border-radius:4px; display:inline-block; margin-bottom:.875rem; }
.svc-cta   { font-size:.875rem; color:var(--red); font-weight:700; transition:color .2s; }
.svc-cta:hover { color:var(--red-hover); }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:.75rem; }
.faq-item { background:#fff; border-radius:var(--r); border:.5px solid var(--border); overflow:hidden; }
.faq-q {
  padding:1.125rem 1.375rem; font-size:.9375rem; font-weight:700; color:var(--navy);
  cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:1rem;
  transition:background .2s; user-select:none;
}
.faq-q:hover { background:var(--off-white); }
.faq-icon {
  width:24px; height:24px; border-radius:50%; background:var(--blue-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:1.125rem; font-weight:400;
  flex-shrink:0; transition:transform .3s, background .2s, color .2s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--red); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a { max-height:300px; }
.faq-a-inner { padding:0 1.375rem 1.25rem; font-size:.875rem; color:var(--muted); line-height:1.7; }

/* ================================================================
   FORMS
   ================================================================ */
.form-wrap { background:#fff; border-radius:var(--r-lg); padding:2.25rem; border:.5px solid var(--border); box-shadow:var(--shadow-md); }
.form-title { font-family:var(--fh); font-size:1.5rem; font-weight:800; color:var(--navy); margin-bottom:.35rem; }
.form-sub { font-size:.875rem; color:var(--muted); margin-bottom:1.5rem; line-height:1.55; }
.form-row { margin-bottom:1rem; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-label { display:block; font-size:.6875rem; font-weight:700; color:var(--navy); letter-spacing:.06em; text-transform:uppercase; margin-bottom:.35rem; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:.75rem .875rem; border:1px solid var(--border); border-radius:var(--r);
  font-family:var(--fb); font-size:.9375rem; color:var(--text); background:var(--off-white);
  transition:border-color .2s, box-shadow .2s; outline:none; appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(43,91,168,.12); background:#fff;
}
.form-textarea { resize:vertical; min-height:100px; }
.form-trust { display:flex; flex-wrap:wrap; gap:.75rem; margin-bottom:1.25rem; }
.form-trust-item { font-size:.75rem; color:var(--muted); display:flex; align-items:center; gap:.3rem; }
.btn-submit {
  width:100%; padding:1rem; background:var(--red); color:#fff;
  font-family:var(--fh); font-size:1.125rem; font-weight:700; border:none;
  border-radius:var(--r); cursor:pointer; letter-spacing:.04em;
  transition:background .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { background:var(--red-hover); transform:translateY(-1px); box-shadow:0 6px 20px rgba(176,58,46,.35); }

/* GHL form embed wrapper */
.ghl-form-embed { min-height:480px; }
.ghl-form-embed iframe { width:100%; border:none; min-height:480px; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:start; max-width:980px; margin:0 auto; }
.contact-side-box { background:#fff; border-radius:var(--r-lg); border:.5px solid var(--border); overflow:hidden; }
.contact-side-header { background:var(--blue); padding:1.25rem 1.5rem; }
.contact-side-header h3 { font-family:var(--fh); font-size:1.125rem; font-weight:700; color:#fff; margin-bottom:.25rem; }
.contact-side-header p { font-size:.8125rem; color:rgba(255,255,255,.6); }

/* ================================================================
   ABOUT TIMELINE
   ================================================================ */
.timeline { display:flex; flex-direction:column; gap:1rem; margin-top:1.5rem; }
.tl-item { display:flex; gap:.875rem; align-items:flex-start; }
.tl-left { display:flex; flex-direction:column; align-items:center; flex-shrink:0; }
.tl-dot { width:12px; height:12px; border-radius:50%; background:var(--red); margin-top:3px; flex-shrink:0; }
.tl-line { width:2px; flex:1; min-height:28px; background:var(--border); margin-top:4px; }
.tl-year { font-family:var(--fh); font-size:.9375rem; font-weight:700; color:var(--blue); min-width:80px; flex-shrink:0; padding-top:1px; }
.tl-text { font-size:.875rem; color:var(--muted); line-height:1.6; }

/* ================================================================
   INSTAGRAM CTA
   ================================================================ */
.ig-cta {
  display:inline-flex; align-items:center; gap:.5rem;
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color:#fff; font-family:var(--fh); font-size:1rem; font-weight:700;
  padding:.875rem 1.75rem; border-radius:var(--r); letter-spacing:.04em;
  transition:opacity .2s, transform .15s;
}
.ig-cta:hover { opacity:.9; transform:translateY(-2px); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background:#060e18; padding:3rem 2.5rem 2rem; }
.footer-inner {
  max-width:1080px; margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2.5rem;
  padding-bottom:2rem; border-bottom:.5px solid rgba(255,255,255,.08);
  margin-bottom:1.5rem;
}
.footer-logo img { height:60px; margin-bottom:.875rem; }
.footer-tagline { font-size:.8125rem; color:rgba(255,255,255,.38); line-height:1.6; }
.footer-col-title { font-family:var(--fh); font-size:.875rem; font-weight:700; color:rgba(255,255,255,.65); letter-spacing:.06em; text-transform:uppercase; margin-bottom:.875rem; }
.footer-links { display:flex; flex-direction:column; gap:.5rem; }
.footer-link { font-size:.875rem; color:rgba(255,255,255,.4); transition:color .2s; }
.footer-link:hover { color:rgba(255,255,255,.85); }
.footer-contact-item { display:flex; align-items:center; gap:.5rem; font-size:.875rem; color:rgba(255,255,255,.45); margin-bottom:.5rem; }
.footer-contact-item a { color:#7EA8D8; transition:color .2s; }
.footer-contact-item a:hover { color:#fff; }
.footer-bottom { max-width:1080px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.75rem; }
.footer-copy { font-size:.75rem; color:rgba(255,255,255,.22); }
.footer-social { display:flex; gap:.625rem; }
.footer-social-link { width:36px; height:36px; border-radius:6px; background:rgba(255,255,255,.07); border:.5px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; transition:background .2s; }
.footer-social-link:hover { background:rgba(255,255,255,.15); }
.footer-social-link svg { width:16px; height:16px; fill:rgba(255,255,255,.45); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:1024px) {
  .founder-grid { grid-template-columns:280px 1fr; gap:2.5rem; }
}

@media (max-width:900px) {
  .pain-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .steps-grid::before { display:none; }
  .testi-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .founder-grid { grid-template-columns:1fr; }
  .founder-photo-wrap { max-width:320px; margin:0 auto 2rem; }
  .footer-inner { grid-template-columns:1fr; gap:1.75rem; }
}

@media (max-width:768px) {
  .nav { padding:0 1.25rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .section { padding:3.5rem 1.25rem; }
  .section-sm { padding:2rem 1.25rem; }
  .hero { padding:4rem 1.25rem 3.5rem; }
  .page-hero { padding:3rem 1.25rem; }
  .section-h2 { font-size:2rem; }
  .proof-strip { gap:1rem; padding:.875rem 1.25rem; }
  .testi-featured { padding:1.75rem 1.5rem; }
  .stats-bar { grid-template-columns:1fr; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-bottom:none; }
  .founder-badge { position:static; display:inline-block; margin-top:1rem; }
  .footer { padding:2rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .form-row-2 { grid-template-columns:1fr; }
}

@media (max-width:480px) {
  .btn-red { width:100%; justify-content:center; font-size:1rem; }
  .hero-h1 { font-size:2.25rem; }
  .testi-featured { padding:1.5rem; }
  .testi-savings { font-size:2rem; }
}
