/* ═══════════════════════════════════════════════
   GDR SEO THEME — Main Stylesheet (Refined)
   ═══════════════════════════════════════════════ */

/* ── ACCESSIBILITY: Skip Link + Screen Reader ──── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 999;
  padding: 6px 14px;
  background: var(--orange, #E8670A);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }
.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 !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 12px 20px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

:root {
  --navy:        var(--gdr-color-secondary, #1B3A5C);
  --steel-blue:  #2563A8;
  --gray:        #6B7280;
  --light-steel: #E8EEFA;
  --orange:      var(--gdr-color-primary, #E8670A);
  --orange-hover:var(--gdr-color-primary-hover, #C45508);
  --yellow:      #F59E0B;
  --bg:          var(--gdr-color-background, #F9FAFB);
  --white:       #FFFFFF;
  --text:        var(--gdr-color-text, #1A1F2E);
  --muted:       #5B7A9E;
  --border:      #D1DCF0;

  /* ── Tighter spacing scale ── */
  --space-xs:  6px;
  --space-sm:  12px;
  --space-md:  20px;
  --space-lg:  32px;
  --space-xl:  var(--gdr-section-spacing, 52px);
  --space-2xl: 72px;

  --radius-sm:   var(--gdr-button-radius, 5px);
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --font-display: var(--gdr-font-heading, 'Poppins', sans-serif);
  --font-body:    var(--gdr-font-body, 'Inter', sans-serif);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: var(--gdr-container-width, 1200px); margin: 0 auto; padding: 0 20px; }
.section   { padding: var(--space-xl) 0; }
.section--alt   { background: var(--white); }
.section--dark  { background: var(--navy); color: #fff; }
.section--steel { background: var(--light-steel); }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ─────────────────────────────── */
/* ── SINGLE POST / BLOG CONTENT TYPOGRAPHY ── */

/* Post title */
.single .entry-title,
.blog .entry-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* Post meta (date, author) */
.entry-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Content headings inside post body */
.entry-content h1 { font-size: 1.9rem; font-weight: 700; margin: 32px 0 12px; }
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 28px 0 10px; }
.entry-content h3 { font-size: 1.2rem; font-weight: 600; margin: 22px 0 8px; }
.entry-content h4 { font-size: 1rem;   font-weight: 600; margin: 18px 0 6px; }

/* Content paragraphs */
.entry-content p {
  font-size: 1rem;
  color: var(--text);          /* not --muted, for readability */
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Wrap content max-width for readability */
.entry-content {
  max-width: 780px;
  margin: 0 auto;
}

/* Post layout padding */
.single #primary,
.blog #primary {
  padding: 48px 20px 64px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.75px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500; line-height: 1.25; letter-spacing: -0.3px;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500; line-height: 1.35;
}
h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
}
p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
p.large { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,103,10,0.08);
  padding: 4px 11px; border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.section-label--light { color: #fff; background: rgba(255,255,255,0.15); }

.section-heading { margin-bottom: var(--space-md); }
.section-heading p { margin-top: 10px; max-width: 580px; }
.text-center .section-heading p { margin-left: auto; margin-right: auto; }

/* ── DIVIDER ─────────────────────────────────── */
.section-divider {
  height: 3px; border: none;
  background: linear-gradient(90deg, var(--orange), var(--steel-blue), transparent);
  margin: 0;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  padding: var(--gdr-button-padding-y, 11px) var(--gdr-button-padding-x, 24px);
  border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s ease; letter-spacing: 0.2px;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,103,10,0.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #142e4e; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--orange); font-weight: 800; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,0,0,0.12); }

/* ── STICKY NAV ──────────────────────────────── */
.sticky-bar {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 2px solid var(--orange);
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-bar__logo {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: 7px;
}
.sticky-bar__logo span { color: var(--orange); }
.sticky-bar__right { display: flex; align-items: center; gap: 16px; }
.sticky-bar__phone { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.sticky-bar__phone strong { color: #fff; font-size: 0.92rem; }
.sticky-bar .btn { padding: 8px 18px; font-size: 0.82rem; }

/* ══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
/* ── HERO PROOF BAR ──────────────────────────── */
.hero__proof-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}

.hero__proof-stat {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
}

.hero__proof-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
  padding: var(--space-xl) 0 var(--space-2xl);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://garagedoorrepairseoexperts.us/wp-content/uploads/2026/04/Garage-Door-Repair-Seo-Experts-1.jpg')
    center center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(17,40,72,0.92) 0%,
    rgba(27,58,92,0.82) 50%,
    rgba(27,58,92,0.45) 100%);
}
.hero__texture {
  position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 50px,
    rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: center;
  position: relative; z-index: 3;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,103,10,0.15);
  border: 1px solid rgba(232,103,10,0.4);
  border-radius: var(--radius-pill);
  padding: 5px 13px; margin-bottom: 16px;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  color: #ffb380; text-transform: uppercase; letter-spacing: 1.2px;
}
.hero__badge::before { content: '●'; color: var(--orange); font-size: 0.5rem; }
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,0.68); max-width: 520px; margin-bottom: var(--space-md); }
.hero__cta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.trust-pill strong { color: #fff; }

/* ── HERO FORM CARD ──────────────────────────── */
.hero__form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.hero__form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-steps {
  display: flex; align-items: center; gap: 5px; margin-bottom: 18px;
}
.form-step-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  background: var(--light-steel); color: var(--muted);
  transition: all 0.3s;
}
.form-step-dot.active { background: var(--orange); color: #fff; }
.form-step-dot.done { background: #22c55e; color: #fff; }
.form-step-dot.done::before { content: '✓'; }
.form-step-dot.done span { display: none; }
.form-step-line { flex: 1; height: 2px; background: var(--border); }
.form-step-line.done { background: #22c55e; }
.form-headline {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
}
.form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }

.form-panel { display: none; }
.form-panel.active { display: block; }

.form-group { margin-bottom: 12px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.4px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text);
  background: var(--bg); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--steel-blue);
}
.form-btn-row { display: flex; gap: 8px; margin-top: 4px; }
.form-next, .form-submit {
  flex: 1; padding: 12px;
  background: var(--orange); color: #fff; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  transition: all 0.2s;
}
.form-next:hover, .form-submit:hover { background: var(--orange-hover); }
.form-back {
  padding: 12px 15px; background: var(--light-steel); color: var(--navy);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  transition: all 0.2s; flex-shrink: 0;
}
.form-back:hover { background: var(--border); }
.form-disclaimer { font-size: 0.7rem; color: var(--gray); text-align: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 16px 0; }
.form-success__icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 6px; }
.form-success p { font-size: 0.85rem; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar { background: var(--navy); padding: var(--space-md) 0; border-top: 2px solid var(--orange); }
.stats-bar__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.stat-item { padding: 18px var(--space-lg); text-align: center; background: var(--navy); }
.stat-item__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; display: block; }
.stat-item__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── PAIN SECTION ────────────────────────────── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border-radius: var(--radius-md); border-left: 3px solid var(--orange);
  margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pain-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 2px; }
.pain-item h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
.pain-item p { font-size: 0.88rem; }
.pain-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2440 100%);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  position: relative; overflow: hidden;
}
.pain-visual::after {
  content: ''; position: absolute; bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  background: rgba(232,103,10,0.07); border-radius: 50%;
}
.pain-visual__stat { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.pain-visual__label { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 4px 0 12px; }
.pain-visual p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

/* ── SERVICES ────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-lg);
  transition: all 0.22s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 10px 32px rgba(27,58,92,0.1); transform: translateY(-3px); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px; background: var(--light-steel);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px; transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(232,103,10,0.09); }
.service-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 4px; margin-top: 11px; font-size: 0.82rem; font-weight: 600; color: var(--orange); text-decoration: none; }

/* ── USP ─────────────────────────────────────── */
.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.usp-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md); padding: var(--space-lg); transition: background 0.2s;
}
.usp-card:hover { background: rgba(255,255,255,0.09); }
.usp-card__check {
  width: 36px; height: 36px; background: rgba(232,103,10,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem; font-weight: 700; margin-bottom: 16px;
}
.usp-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.usp-card p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

/* ── DIFFERENTIATION ─────────────────────────── */
.diff-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.diff-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; }
.diff-table th { padding: 11px 15px; text-align: left; font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; background: var(--light-steel); color: var(--navy); }
.diff-table td { padding: 13px 15px; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.diff-table tr:last-child td { border-bottom: none; }
.diff-table .yes { color: #22c55e; font-weight: 700; }
.diff-table .no  { color: #ef4444; font-weight: 700; }
.diff-table .highlight-row td { background: rgba(37,99,168,0.04); }
.diff-point { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.diff-point__num {
  width: 28px; height: 28px; flex-shrink: 0; background: var(--orange); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
}
.diff-point h4 { color: var(--navy); font-size: 0.88rem; margin-bottom: 3px; }
.diff-point p { font-size: 0.85rem; }

/* ── PROCESS ─────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 24px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--orange), var(--steel-blue), var(--orange)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 48px; height: 48px; background: var(--navy); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  border: 2px solid var(--orange); box-shadow: 0 0 0 5px #fff;
}
.process-step h3 { color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }
.process-step__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-top: 12px; }
.process-step__tag { font-size: 0.7rem; background: var(--light-steel); color: var(--navy); padding: 3px 9px; border-radius: var(--radius-pill); font-weight: 500; }

/* ── CASE STUDIES ────────────────────────────── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.case-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 3px 18px rgba(27,58,92,0.07); border: 1px solid var(--border); }
.case-card__header { background: linear-gradient(135deg, var(--navy), var(--steel-blue)); padding: 18px var(--space-lg); display: flex; align-items: center; justify-content: space-between; }
.case-card__before-after { display: flex; gap: 20px; }
.ba-item { text-align: center; }
.ba-item__label { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.4px; }
.ba-item__value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.ba-item__value.highlight { color: var(--orange); }
.ba-arrow { color: var(--orange); font-size: 1.35rem; align-self: center; }
.case-card__result { background: var(--orange); padding: 6px var(--space-lg); font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; }
.case-card__body { padding: var(--space-lg); }
.case-card h3 { color: var(--navy); margin-bottom: 8px; }
.case-card p { font-size: 0.88rem; }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; }
.case-metric { text-align: center; }
.case-metric__val { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--navy); display: block; }
.case-metric__lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); }

/* ── EDUCATIONAL SECTIONS (image + text) ──────── */
.edu-section { padding: var(--space-xl) 0; }
.edu-section:nth-child(even) { background: var(--white); }
.edu-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center;
}
.edu-split.reverse { direction: rtl; }
.edu-split.reverse > * { direction: ltr; }
.edu-img-box {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 14px 44px rgba(27,58,92,0.12);
  aspect-ratio: 4/3; position: relative;
  background: var(--light-steel);
  display: flex; align-items: center; justify-content: center;
}
.edu-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.edu-img-box:hover img { transform: scale(1.03); }
.edu-img-placeholder { text-align: center; color: var(--muted); padding: 32px; }
.edu-img-placeholder .icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.edu-img-placeholder p { font-size: 0.85rem; }
.edu-content h2 { color: var(--navy); margin-bottom: 12px; }
.edu-content p { margin-bottom: 12px; font-size: 0.92rem; }
.edu-list { list-style: none; margin-top: 12px; }
.edu-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.9rem; color: var(--muted); margin-bottom: 8px;
}
.edu-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.edu-tag {
  display: inline-block; background: var(--light-steel); color: var(--navy);
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px;
  border-radius: var(--radius-pill); margin: 3px 3px 3px 0;
}

/* ── PRICING ─────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.22s; position: relative;
}
.pricing-card:hover { box-shadow: 0 14px 40px rgba(27,58,92,0.1); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(232,103,10,0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.pricing-badge {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}
.pricing-header { padding: 26px 22px 20px; border-bottom: 1px solid var(--border); }
.pricing-tier {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 6px;
}
.pricing-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 3px; }
.pricing-price__amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-price__period { font-size: 0.82rem; color: var(--muted); }
.pricing-desc { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.pricing-body { padding: 22px; }
.pricing-features { list-style: none; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; margin-bottom: 10px; color: var(--text);
}
.pricing-features .check { color: #22c55e; font-size: 0.82rem; flex-shrink: 0; margin-top: 2px; }
.pricing-features .cross { color: #ef4444; font-size: 0.82rem; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.pricing-features li.dim { color: var(--muted); opacity: 0.6; }
.pricing-cta { padding: 0 22px 22px; }
.pricing-cta a { display: block; text-align: center; width: 100%; }
.pricing-cta a.btn-outline-navy {
  display: block; width: 100%; padding: 12px 18px; text-align: center; text-decoration: none;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  color: var(--navy); transition: all 0.2s;
}
.pricing-cta a.btn-outline-navy:hover { border-color: var(--navy); background: var(--light-steel); }
.pricing-note { text-align: center; margin-top: 22px; font-size: 0.82rem; color: var(--muted); }

/* ── TEAM ────────────────────────────────────── */
.team-card {
  display: flex; gap: var(--space-xl); background: var(--white);
  border-radius: var(--radius-lg); padding: var(--space-xl); align-items: center;
  box-shadow: 0 3px 18px rgba(27,58,92,0.06); border: 1px solid var(--border);
}
.team-avatar {
  width: 150px; height: 150px; flex-shrink: 0;
  border-radius: var(--radius-lg); background: var(--light-steel);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; border: 3px solid var(--navy);
}
.team-content h3 { color: var(--navy); margin-bottom: 3px; }
.team-role { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.team-content p { font-size: 0.9rem; margin-bottom: 8px; }
.team-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.badge { background: var(--light-steel); color: var(--navy); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.4px; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: var(--space-lg); position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; color: rgba(232,103,10,0.18); position: absolute; top: 0; left: 18px; line-height: 1; }
.testimonial-stars { color: var(--yellow); font-size: 0.88rem; margin-bottom: 11px; }
.testimonial-card blockquote { color: rgba(255,255,255,0.72); font-size: 0.88rem; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 36px; height: 36px; background: var(--steel-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 0.85rem; }
.author-name { color: #fff; font-size: 0.85rem; font-weight: 600; }
.author-biz { color: rgba(255,255,255,0.42); font-size: 0.75rem; }
.testimonial-result { background: rgba(232,103,10,0.13); border: 1px solid rgba(232,103,10,0.28); border-radius: var(--radius-sm); padding: 6px 10px; margin-top: 11px; font-size: 0.75rem; color: #ffb380; font-weight: 500; }

/* ── FIT SECTION ─────────────────────────────── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.fit-card { border-radius: var(--radius-md); padding: var(--space-lg); }
.fit-card--yes { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.25); }
.fit-card--no  { background: rgba(239,68,68,0.05);  border: 1px solid rgba(239,68,68,0.18); }
.fit-card h3 { margin-bottom: 16px; font-size: 1.05rem; }
.fit-card--yes h3 { color: #16a34a; }
.fit-card--no  h3 { color: #dc2626; }
.fit-list { list-style: none; }
.fit-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; margin-bottom: 10px; color: var(--text); }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; }
.faq-item__q h3 { color: var(--navy); font-size: 0.97rem; font-weight: 600; flex: 1; }
.faq-toggle { color: var(--orange); font-size: 1.3rem; font-weight: 700; margin-left: 12px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item__a { padding: 0 0 16px; display: none; }
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p { font-size: 0.9rem; color: var(--muted); }

/* ── FINAL CTA ───────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  padding: var(--space-2xl) 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,0.03) 28px, rgba(255,255,255,0.03) 29px);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 11px; }
.final-cta .sub { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: var(--space-md); }
.urgency-bar {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.13); border-radius: var(--radius-pill);
  padding: 6px 15px; font-size: 0.8rem; color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-md);
}
.urgency-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #0d1f35; padding: var(--space-xl) 0 var(--space-md); color: rgba(255,255,255,0.42); font-size: 0.82rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 11px; }
.footer-brand span { color: var(--orange); }
.footer-col h4 { color: rgba(255,255,255,0.7); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; display: flex; justify-content: space-between; align-items: center; }

/* ── MOBILE STICKY CTA ──────────────────────── */
.mobile-sticky-cta {
  position: fixed; bottom: -100px; left: 0; right: 0; z-index: 100;
  display: none; gap: 0;
  background: var(--navy); border-top: 2px solid var(--orange);
  box-shadow: 0 -3px 10px rgba(0,0,0,0.12);
  transition: bottom 0.3s ease;
}
.mobile-sticky-cta.is-visible { bottom: 0; }
.mobile-sticky-cta__phone {
  flex: 0 0 45%; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  color: #fff; font-weight: 700; text-decoration: none; font-size: 0.88rem;
  transition: background 0.2s;
}
.mobile-sticky-cta__phone:active { background: var(--orange-hover); }
.mobile-sticky-cta__audit {
  flex: 0 0 55%; display: flex; align-items: center; justify-content: center;
  padding: 13px; background: var(--navy);
  color: #fff; font-weight: 700; text-decoration: none; font-size: 0.92rem;
  transition: background 0.2s;
}
.mobile-sticky-cta__audit:active { background: rgba(232,103,10,0.1); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .mobile-sticky-cta { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__form-card { order: -1; max-width: 460px; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .services-grid, .usp-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .diff-layout, .pain-grid, .edu-split, .case-grid, .fit-grid, .team-card { grid-template-columns: 1fr; flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .edu-split.reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .services-grid, .usp-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; gap: 7px; }
  .sticky-bar__phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
}