/* ══════════════════════════════════════════════════════
   SEO Rangers — Enterprise Light Theme v2.0
   WebFX-style | FF Real Head Pro Bold
══════════════════════════════════════════════════════ */

/* ── FF Real Head Pro Bold (self-hosted — drop font files in /assets/fonts/) ── */
@font-face {
  font-family: 'FF Real Head Pro';
  src: url('../fonts/FFRealHeadPro-Bold.woff2') format('woff2'),
       url('../fonts/FFRealHeadPro-Bold.woff')  format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Real Head Pro';
  src: url('../fonts/FFRealHeadPro-Medium.woff2') format('woff2'),
       url('../fonts/FFRealHeadPro-Medium.woff')  format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Fallback stack (Barlow = closest Google Font to FF Real Head Pro) ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Brand */
  --blue:        #1B4FD8;
  --blue-dark:   #1338B0;
  --blue-light:  #EEF3FF;
  --blue-mid:    #2563EB;
  --green:       #16A34A;
  --green-light: #DCFCE7;
  --orange:      #EA580C;

  /* Neutrals */
  --white:       #FFFFFF;
  --bg-soft:     #F8FAFF;
  --bg-section:  #F1F5FF;
  --border:      #E2E8F0;
  --text:        #0F172A;
  --text-mid:    #334155;
  --muted:       #64748B;
  --dark-footer: #0B1120;
  --dark-footer2:#101828;

  /* Typography */
  --font-head:   'FF Real Head Pro', 'Barlow', 'Inter', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & Shape */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --max-w:       1240px;
  --transition:  0.22s ease;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md:   0 4px 16px rgba(15,23,42,0.1),  0 2px 6px rgba(15,23,42,0.06);
  --shadow-lg:   0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-blue: 0 8px 28px rgba(27,79,216,0.28);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Accessibility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 0; left: 0; z-index: 9999;
  padding: 12px 20px; background: var(--blue); color: #fff;
  font-weight: 700; clip: auto; width: auto; height: auto;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 4.5vw, 62px); }
h2 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 14px; }
h3 { font-size: clamp(17px, 1.8vw, 22px); font-weight: 700; margin-bottom: 8px; }
p  { color: var(--muted); line-height: 1.75; }

.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #6366F1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 8px;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
  border: 2px solid var(--blue); text-decoration: none; white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(27,79,216,0.35); color: #fff; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 8px;
  border: 2px solid var(--blue);
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-1px); color: var(--blue); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 8px;
  border: 2px solid var(--green);
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(22,163,74,0.3);
  text-decoration: none; white-space: nowrap;
}
.btn-green:hover { background: #15803d; border-color: #15803d; transform: translateY(-1px); color: #fff; }

/* ── Layout ── */
section { padding: 88px 5%; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── Global container (used across all new templates) ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ── Section heading system (used across all new templates) ── */
.section-eyebrow {
  display: block;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(22px,3vw,38px);
  font-weight: 800; color: var(--text); line-height: 1.2;
  margin: 0 0 16px;
}

/* ── Result / Case Study cards ── */
.result-card {
  background: var(--white); border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,79,216,.25); }
.result-thumb {
  height: 200px; background-size: cover; background-position: center;
  background-color: linear-gradient(135deg,var(--blue),#6366f1);
}
.result-body  { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.result-tag   { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: rgba(27,79,216,.08); padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.result-body h3 { font-size: 18px; margin: 0 0 10px; line-height: 1.4; }
.result-stat  { font-size: 22px; font-weight: 800; color: var(--green); margin: 8px 0; }
.result-link  { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: auto; padding-top: 12px; }

/* ── Process steps (partner page / book-a-call) ── */
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 40px auto 0; }
.process-step  { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 32px; position: relative; }
.process-step:not(:last-child)::before {
  content: ''; position: absolute; left: 22px; top: 52px;
  width: 2px; bottom: 0; background: var(--border);
}
.process-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-body h3 { font-size: 17px; margin: 8px 0 6px; }
.process-body p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── wl-feat icon (white-label feature cards) ── */
.wl-icon { font-size: 28px; margin-right: 4px; flex-shrink: 0; }
.wl-feat { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px; transition: border-color .2s; }
.wl-feat h3 { font-size: 15px; margin: 0 0 4px; }
.wl-feat p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-tag::before {
  content: ''; display: block;
  width: 20px; height: 3px; border-radius: 2px;
  background: var(--blue); flex-shrink: 0;
}
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 620px; }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-sub { margin: 12px auto 0; }
.section-header-center .section-tag { justify-content: center; }
.section-header-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 24px;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--blue); color: #fff;
  padding: 8px 5%; font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; font-weight: 500; }
.topbar a:hover { text-decoration: underline; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-phone { font-weight: 700; font-size: 14px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 15px; font-weight: 900; color: #fff;
}
.logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); }
.logo-text span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text-mid); padding: 8px 13px; border-radius: 6px;
  display: flex; align-items: center; gap: 4px;
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a:focus { color: var(--blue); background: var(--blue-light); }
.drop-arrow { font-size: 10px; transition: transform var(--transition); color: var(--muted); }
.has-drop:hover .drop-arrow { transform: rotate(180deg); color: var(--blue); }

.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px; min-width: 230px;
  box-shadow: var(--shadow-lg); z-index: 100;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { display: block; }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  transition: all var(--transition); white-space: nowrap;
}
.dropdown a:hover { color: var(--blue); background: var(--blue-light); }

.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  font-family: var(--font-head) !important; font-weight: 700 !important;
  font-size: 14px !important; padding: 10px 22px !important;
  border-radius: 8px !important; border: none !important;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(27,79,216,0.4) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: 8px; border: 1px solid var(--border);
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: 12px 5% 20px; background: var(--white); border-top: 1px solid var(--border); gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text-mid); }
.mobile-menu a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-cta { background: var(--blue) !important; color: #fff !important; font-weight: 700 !important; text-align: center; margin-top: 8px; border-radius: 8px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 72px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; right: -100px; top: -80px; width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-light) 0%, rgba(238,243,255,0) 70%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(27,79,216,0.2);
  color: var(--blue); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 22px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero Stats Row */
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 32px; }
.hero-stat { flex: 1; padding-right: 28px; border-right: 1px solid var(--border); margin-right: 28px; }
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 34px; font-weight: 700;
  color: var(--blue); line-height: 1; display: block;
}
.hero-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px; display: block; }

/* Hero Right — Live Dashboard Card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hcard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hcard-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); }
.hcard-live { background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }

.kw-rows { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.kw-row { display: flex; align-items: center; gap: 12px; }
.kw-pos {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
}
.kw-pos.p1 { background: #FEF3C7; color: #B45309; }
.kw-pos.p2 { background: var(--blue-light); color: var(--blue); }
.kw-pos.p3 { background: #F3E8FF; color: #7C3AED; }
.kw-pos.p4 { background: var(--green-light); color: var(--green); }
.kw-info { flex: 1; min-width: 0; }
.kw-word { font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kw-bar-bg { height: 5px; background: #E2E8F0; border-radius: 3px; }
.kw-bar    { height: 100%; border-radius: 3px; }
.kw-up     { font-size: 12px; font-weight: 700; color: var(--green); flex-shrink: 0; }

.hcard-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hcard-mini-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.hcard-mini-val { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); display: block; }
.hcard-mini-val em { font-size: 12px; color: var(--green); font-style: normal; font-weight: 600; }
.hcard-mini-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; display: block; }

/* Floating pill badges */
.hero-pill {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 9px; z-index: 2;
}
.hero-pill-1 { top: -16px; left: -28px; }
.hero-pill-2 { bottom: 12px; right: -20px; }
.pill-icon { font-size: 20px; flex-shrink: 0; }
.pill-lbl { font-size: 11px; color: var(--muted); }
.pill-val { font-size: 13.5px; font-weight: 700; color: var(--text); font-family: var(--font-head); }

/* ══════════════════════════════════════
   CLIENTS / LOGOS BAR
══════════════════════════════════════ */
.logos-bar { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 5%; }
.logos-inner { max-width: var(--max-w); margin: 0 auto; }
.logos-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; text-align: center; margin-bottom: 20px; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 22px; font-family: var(--font-head); font-size: 14px;
  font-weight: 700; color: var(--muted); transition: all var(--transition);
}
.logo-chip:hover { color: var(--blue); border-color: rgba(27,79,216,0.3); }

/* ══════════════════════════════════════
   TRUST / STATS TICKER
══════════════════════════════════════ */
.stats-bar { background: var(--blue); padding: 36px 5%; }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6,1fr); gap: 0;
}
.stats-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stats-item:last-child { border-right: none; }
.stats-num { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: #fff; display: block; line-height: 1; }
.stats-lbl { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 5px; display: block; font-weight: 500; }

/* ══════════════════════════════════════
   WHY US — COMPARISON BLOCK
══════════════════════════════════════ */
.why-us { background: var(--white); }
.whyus-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.whyus-content .section-sub { margin: 12px 0 32px; }
.whyus-checklist { display: flex; flex-direction: column; gap: 14px; }
.whyus-check {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-soft);
  transition: all var(--transition);
}
.whyus-check:hover { border-color: rgba(27,79,216,0.3); background: var(--blue-light); }
.check-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.check-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; font-family: var(--font-head); }
.check-text p  { font-size: 13px; line-height: 1.5; }

/* Comparison Table */
.compare-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-head { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--text); color: #fff; }
.compare-head-cell { padding: 14px 18px; font-size: 13px; font-weight: 700; font-family: var(--font-head); }
.compare-head-cell:nth-child(2) { background: var(--blue); text-align: center; }
.compare-head-cell:nth-child(3) { text-align: center; opacity: 0.6; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--bg-soft); }
.compare-cell { padding: 13px 18px; font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.compare-cell:nth-child(2), .compare-cell:nth-child(3) { justify-content: center; }
.yes { color: var(--green); font-size: 18px; }
.no  { color: #DC2626; font-size: 18px; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--bg-section); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
  transition: all var(--transition); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: rgba(27,79,216,0.3); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
}
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p  { font-size: 13px; line-height: 1.6; flex: 1; }
.svc-link { margin-top: 16px; color: var(--blue); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.svc-link:hover { gap: 8px; }

/* ══════════════════════════════════════
   PROCESS — ENTERPRISE FUNNEL
══════════════════════════════════════ */
.process-section { background: var(--white); }
.process-visual { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; margin-top: 56px; }
.process-steps-list { display: flex; flex-direction: column; gap: 0; }
.process-step-item {
  display: flex; gap: 20px; position: relative;
  padding-bottom: 32px;
}
.process-step-item:last-child { padding-bottom: 0; }
.step-line-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-light); border: 2px solid rgba(27,79,216,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--blue);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-num-badge.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 16px rgba(27,79,216,0.35); }
.step-connector { flex: 1; width: 2px; background: var(--border); margin: 6px 0; }
.step-content { padding-top: 10px; }
.step-content h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-content p  { font-size: 13.5px; line-height: 1.6; }

/* Funnel Graphic */
.funnel-graphic { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px 24px; }
.funnel-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 24px; color: var(--text); }
.funnel-steps { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.funnel-step {
  border-radius: 8px; padding: 12px 20px; color: #fff; text-align: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  transition: transform var(--transition);
}
.funnel-step:hover { transform: scaleX(1.02); }
.funnel-step .fs-label { font-size: 12px; font-weight: 500; opacity: 0.85; margin-top: 2px; }
.fs-1 { background: var(--blue);      width: 100%; }
.fs-2 { background: #2563EB;          width: 88%;  }
.fs-3 { background: #4F46E5;          width: 76%;  }
.fs-4 { background: #7C3AED;          width: 62%;  }
.fs-5 { background: var(--green);     width: 48%;  }
.funnel-arrow { font-size: 20px; color: var(--muted); text-align: center; margin: 2px 0; }

/* ══════════════════════════════════════
   RESULTS / CASE STUDIES
══════════════════════════════════════ */
.results-section { background: var(--bg-section); }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.result-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,79,216,0.25); }
.result-client { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.result-avatar {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
}
.result-client-name { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--font-head); }
.result-client-loc  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.result-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.result-metric {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 14px;
}
.result-metric-val { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); }
.result-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }
.result-quote { font-size: 13px; color: var(--muted); line-height: 1.65; font-style: italic; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }

/* ══════════════════════════════════════
   WHITE LABEL
══════════════════════════════════════ */
.wl-section { background: var(--white); }
.wl-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.wl-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.wl-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-soft); transition: all var(--transition);
}
.wl-feat:hover { border-color: rgba(27,79,216,0.25); background: var(--blue-light); }
.wl-feat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.wl-feat h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; font-family: var(--font-head); }
.wl-feat p  { font-size: 13px; line-height: 1.5; }
.wl-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* White Label Visual Panel */
.wl-panel { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; }
.wl-panel-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 16px; }
.wl-logo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.wl-logo-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  height: 58px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--muted); font-weight: 600; text-align: center; padding: 6px;
}
.wl-your-brand {
  border: 2px dashed rgba(27,79,216,0.35); border-radius: 10px;
  padding: 14px; text-align: center; background: var(--blue-light); margin-bottom: 16px;
}
.wl-your-brand p    { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.wl-your-brand span { display: block; font-size: 16px; font-weight: 700; font-family: var(--font-head); margin-top: 4px; color: var(--text); }
.wl-report-rows { display: flex; flex-direction: column; gap: 10px; }
.wl-report-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.wl-report-row span:first-child { color: var(--text-mid); font-weight: 500; }
.wl-report-val { color: var(--green); font-weight: 700; font-family: var(--font-head); }

/* ══════════════════════════════════════
   LOCATIONS
══════════════════════════════════════ */
.locations-section { background: var(--bg-section); }
.locations-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.loc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 16px; text-align: center;
  transition: all var(--transition); text-decoration: none; display: block;
  box-shadow: var(--shadow-sm);
}
.loc-card:hover { transform: translateY(-5px); border-color: rgba(27,79,216,0.3); box-shadow: var(--shadow-lg); }
.loc-flag  { font-size: 38px; margin-bottom: 12px; display: block; }
.loc-name  { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.loc-sub   { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.loc-link  { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; color: var(--blue); font-size: 12px; font-weight: 700; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section { background: var(--white); }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.price-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--blue); border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured .price-desc,
.price-card.featured .price-features li { color: rgba(255,255,255,0.9); }
.price-card.featured .price-features li .check { color: #6EE7B7; }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 18px;
  border-radius: 100px; letter-spacing: 0.06em; white-space: nowrap;
  font-family: var(--font-head);
}
.price-plan { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.price-card.featured .price-plan { color: rgba(255,255,255,0.7); }
.price-amount { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 8px; }
.price-amount sup { font-size: 20px; vertical-align: super; }
.price-amount sub { font-size: 14px; font-weight: 500; font-family: var(--font-body); }
.price-card.featured .price-amount { color: #fff; }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.price-features li { font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.check { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.price-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.price-note a { color: var(--blue); font-weight: 600; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--bg-soft); }
.faq-inner   { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.faq-left .section-sub { margin: 12px 0 28px; }
.faq-list    { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.faq-item.open { border-color: rgba(27,79,216,0.3); box-shadow: 0 4px 16px rgba(27,79,216,0.08); }
.faq-q { padding: 17px 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; user-select: none; }
.faq-q-text { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; font-family: var(--font-head); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; transition: all var(--transition);
}
.faq-item.open .faq-toggle { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a { padding: 0 20px 16px; font-size: 13.5px; color: var(--muted); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner { background: var(--blue); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -100px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-banner h2 { color: #fff; font-size: clamp(24px,3.5vw,42px); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: var(--blue-light); transform: translateY(-1px); color: var(--blue); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--dark-footer); padding: 64px 5% 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55);
  transition: all var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h3 { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal    { display: flex; gap: 20px; }
.footer-legal a  { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: #fff; }

/* ══════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════ */
.breadcrumbs { padding: 12px 5%; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumbs li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--border); }
.breadcrumbs a { color: var(--muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--blue); }

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.page-hero { padding: 72px 5% 64px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1    { margin-bottom: 14px; max-width: 760px; }
.page-hero p     { font-size: 17px; max-width: 600px; }

/* ══════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,79,216,0.2); }
.blog-card-img { height: 195px; background: var(--bg-soft); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-cat  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 8px; }
.blog-card h3   { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card h3 a { color: var(--text); transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p    { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════
   ANIMATE ON SCROLL
══════════════════════════════════════ */
.anim-ready { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim-ready.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .whyus-inner, .wl-inner, .faq-inner, .process-visual { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner    { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 18px; }
  .stats-item:nth-child(3), .stats-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .locations-grid { grid-template-columns: repeat(3,1fr); }
  .results-grid   { grid-template-columns: 1fr 1fr; }
  .pricing-cards  { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
  .topbar-right   { display: none; }
}
@media (max-width: 640px) {
  section { padding: 60px 5%; }
  .hero   { padding: 56px 5% 64px; }
  .services-grid  { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid   { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero-stats     { flex-direction: column; gap: 16px; }
  .hero-stat      { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 4px; }
  .hero-stat:last-child { border-bottom: none; }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .compare-table  { font-size: 12px; }
}

/* ══════════════════════════════════════
   TEMPLATE — SHARED INTENT COMPONENTS
══════════════════════════════════════ */

/* ── Service / WL / Outsourcing Hero ── */
.svc-hero, .wl-hero, .loc-hero {
  background: linear-gradient(160deg, #F8FAFF 0%, var(--white) 60%);
  border-bottom: 1px solid var(--border);
  padding: 72px 5% 80px;
}
.svc-hero-inner, .wl-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start;
}
.svc-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted); margin-bottom: 18px;
}
.svc-breadcrumb a { color: var(--muted); transition: color var(--transition); }
.svc-breadcrumb a:hover { color: var(--blue); }
.svc-breadcrumb span { color: var(--text-mid); }
.wl-eyebrow, .svc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(27,79,216,0.2);
  color: var(--blue); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.svc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
.svc-hero h1, .wl-hero h1, .loc-hero h1 { margin-bottom: 18px; }
.svc-hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; max-width: 540px; }
.svc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.svc-trust-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.svc-trust-row span {
  font-size: 12.5px; color: var(--text-mid); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}

/* Service Hero Stats Panel */
.svc-hero-stats { display: flex; flex-direction: column; gap: 16px; }
.svc-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-stat-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.svc-stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--blue); display: block; line-height: 1; }
.svc-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 5px; display: block; }
.svc-rank-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm);
}
.svc-rank-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; font-weight: 700; color: var(--text); }
.svc-live-badge { background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.svc-rank-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.svc-rank-row:last-child { border-bottom: none; }
.svc-rank-val { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--blue); flex-shrink: 0; min-width: 70px; }
.svc-rank-metric { font-size: 13px; font-weight: 600; color: var(--text); }
.svc-rank-client { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── What Is / Definition Block ── */
.svc-what { background: var(--white); }
.svc-what-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.svc-definition-block {
  background: var(--bg-soft); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px; margin: 18px 0 24px;
}
.svc-definition-block p { color: var(--text-mid); font-size: 15px; line-height: 1.75; }
.svc-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.svc-fact-item {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.svc-fact-icon { font-size: 20px; }
.svc-fact-num  { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); }
.svc-fact-text { font-size: 12px; color: var(--muted); line-height: 1.4; }
.svc-why-now { background: var(--blue-light); border: 1px solid rgba(27,79,216,0.2); border-radius: var(--radius-xl); overflow: hidden; }
.svc-why-now-inner { padding: 28px; }
.svc-why-now-icon { font-size: 32px; margin-bottom: 12px; }
.svc-why-now h3   { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.svc-why-list     { display: flex; flex-direction: column; gap: 10px; }
.svc-why-list li  { font-size: 13.5px; color: var(--text-mid); line-height: 1.5; display: flex; gap: 8px; }
.svc-why-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── Process Grid ── */
.svc-process { background: var(--bg-soft); }
.svc-process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.svc-process-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.svc-process-card:hover { border-color: rgba(27,79,216,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-proc-num {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-head); font-size: 36px; font-weight: 700;
  color: var(--border); line-height: 1;
}
.svc-proc-icon { font-size: 28px; margin-bottom: 14px; }
.svc-process-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.svc-process-card p  { font-size: 13px; line-height: 1.6; }

/* ── Deliverables / Includes ── */
.svc-includes { background: var(--white); }
.svc-includes-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.svc-deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-deliverable-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: all var(--transition);
}
.svc-deliverable-card:hover { border-color: rgba(27,79,216,0.25); background: var(--blue-light); }
.svc-deliv-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.svc-deliverable-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; font-family: var(--font-head); }
.svc-deliverable-card p  { font-size: 12.5px; line-height: 1.5; }

/* ── Industries Chips ── */
.svc-industries { background: var(--bg-section); }
.svc-industry-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; justify-content: center; }
.svc-industry-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--text-mid);
  transition: all var(--transition); text-decoration: none;
}
.svc-industry-chip:hover { color: var(--blue); border-color: rgba(27,79,216,0.3); background: var(--blue-light); transform: translateY(-2px); }

/* ── Pricing Teaser (Service page) ── */
.svc-pricing-teaser { background: var(--bg-section); }
.svc-pt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-pt-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.svc-pt-bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); font-weight: 500; }
.svc-price-cards-mini { display: grid; grid-template-columns: 1fr; gap: 12px; }
.svc-price-mini {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  position: relative; transition: all var(--transition);
}
.svc-price-mini.featured { border-color: var(--blue); background: var(--blue-light); }
.svc-pm-plan  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 6px; }
.svc-pm-price { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--blue); }
.svc-pm-price span { font-size: 14px; color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.svc-pm-desc  { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── White Label Hero Panel ── */
.wl-hero-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-md);
  position: sticky; top: 88px;
}
.wl-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.wl-panel-title  { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--text); }
.wl-panel-brand  { font-size: 11px; color: var(--muted); border: 1px dashed var(--border); padding: 4px 10px; border-radius: 6px; }
.wl-report-row-hero {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-mid); font-weight: 500;
}
.wl-report-row-hero:last-of-type { border-bottom: none; }
.wl-report-val { font-family: var(--font-head); font-weight: 700; color: var(--blue); }
.wl-savings-row { background: var(--green-light); border-radius: 8px; padding: 11px 10px; margin-top: 8px; border: 1px solid rgba(22,163,74,0.2); }
.wl-panel-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-mid);
}

/* ── White Label Margin Table ── */
.wl-margin-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 900px; margin: 48px auto 0; }
.wl-mt-header { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; background: var(--text); color: #fff; }
.wl-mt-header div { padding: 14px 18px; font-family: var(--font-head); font-size: 13px; font-weight: 700; }
.wl-mt-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.wl-mt-row:last-child { border-bottom: none; }
.wl-mt-row div { padding: 13px 18px; font-size: 14px; color: var(--text-mid); }
.wl-mt-profit { font-family: var(--font-head); font-weight: 700; color: var(--green) !important; font-size: 15px !important; }
.wl-mt-annual  { font-family: var(--font-head); font-weight: 700; color: var(--blue)  !important; font-size: 15px !important; }

/* ── Location Cities Grid ── */
.loc-cities-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.loc-city-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.loc-city-chip:hover { color: var(--blue); border-color: rgba(27,79,216,0.3); }

/* ── Pricing Hero ── */
.pricing-hero {
  background: var(--blue); padding: 72px 5% 64px; text-align: center;
}
.pricing-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.pricing-hero h1    { color: #fff; margin-bottom: 16px; }
.pricing-hero-sub   { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; margin: 0 auto 32px; }
.pricing-trust-row  { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.pt-item { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 14px; }
.pt-item span { font-size: 13px; color: #fff; font-weight: 600; }

/* Pricing Toggle */
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.pt-label { font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color var(--transition); }
.pt-label.active { color: var(--text); }
.pt-save-badge { background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 4px; }
.pricing-toggle {
  width: 48px; height: 26px; border-radius: 13px;
  background: var(--border); border: 2px solid var(--border);
  cursor: pointer; position: relative; transition: all var(--transition);
}
.pricing-toggle.on { background: var(--blue); border-color: var(--blue); }
.pt-knob {
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  position: absolute; top: 2px; left: 2px;
  transition: transform var(--transition); box-shadow: var(--shadow-sm);
}
.pricing-toggle.on .pt-knob { transform: translateX(22px); }

/* Pricing Cards Full */
.pricing-main { background: var(--bg-soft); }
.pricing-cards-full {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; align-items: start;
}
.price-card-full {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative;
}
.price-card-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card-full.featured { border-color: var(--blue); background: var(--blue); }
.price-card-full.featured .pcf-name,
.price-card-full.featured .pcf-ideal,
.price-card-full.featured .pcf-desc,
.price-card-full.featured .pcf-features-label,
.price-card-full.featured .pcf-feature-list li { color: rgba(255,255,255,0.85); }
.price-card-full.featured .feat-yes .feat-icon { color: #6EE7B7; }
.price-card-full.featured .feat-no  { opacity: 0.4; }
.price-card-full.featured .pcf-price { color: #fff; }
.pcf-head   { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pcf-icon   { font-size: 28px; }
.pcf-name   { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text); }
.pcf-ideal  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pcf-price  { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 8px; }
.pcf-price sup { font-size: 20px; vertical-align: super; }
.pcf-price sub { font-size: 14px; font-weight: 400; font-family: var(--font-body); color: var(--muted); }
.pcf-desc   { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.pcf-features-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.pcf-feature-list { display: flex; flex-direction: column; gap: 8px; }
.pcf-feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.feat-yes .feat-icon { color: var(--green); font-weight: 700; flex-shrink: 0; }
.feat-no  { color: var(--muted); }
.feat-no .feat-icon  { color: var(--border); flex-shrink: 0; }

/* ── ROI Table ── */
.roi-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.roi-table-wrap { overflow-x: auto; }
.roi-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.roi-table th { background: var(--text); color: #fff; padding: 13px 16px; font-family: var(--font-head); font-size: 13px; font-weight: 700; text-align: left; }
.roi-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-mid); }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table tbody tr:hover { background: var(--bg-soft); }
.roi-highlight td { background: var(--blue-light); font-weight: 600; color: var(--text); }

/* ── Responsive Additions ── */
@media (max-width: 1024px) {
  .svc-hero-inner, .wl-hero-inner { grid-template-columns: 1fr; }
  .svc-what-inner, .svc-includes-inner, .svc-pt-inner, .roi-inner { grid-template-columns: 1fr; gap: 40px; }
  .wl-hero-panel { position: static; }
  .pricing-cards-full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-process-grid   { grid-template-columns: 1fr 1fr; }
  .svc-facts          { grid-template-columns: 1fr 1fr; }
  .svc-deliverables-grid { grid-template-columns: 1fr; }
  .wl-mt-header, .wl-mt-row { grid-template-columns: 1fr 1fr; }
  .wl-mt-header div:nth-child(n+3), .wl-mt-row div:nth-child(n+3) { display: none; }
}
@media (max-width: 580px) {
  .svc-process-grid { grid-template-columns: 1fr; }
  .svc-hero-actions { flex-direction: column; }
  .pricing-trust-row { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL MODAL SYSTEM
═══════════════════════════════════════════════════════════ */
.sr-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,14,35,.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; transition: opacity .25s ease;
}
.sr-modal-overlay:not([hidden]) { opacity: 1; }
.sr-modal-overlay[hidden] { display: none !important; }

.sr-modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 620px;
  max-height: 92vh; overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transform: translateY(20px); transition: transform .25s ease;
}
.sr-modal-overlay:not([hidden]) .sr-modal-box { transform: translateY(0); }

.sr-modal-close {
  position: absolute; top: 16px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); border: none;
  font-size: 20px; line-height: 1; cursor: pointer;
  color: var(--text-mid); display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.sr-modal-close:hover { background: #e5e7f0; }

.sr-modal-head { text-align: center; margin-bottom: 28px; }
.sr-modal-icon { font-size: 40px; margin-bottom: 10px; }
.sr-modal-head h2 { font-size: 24px; margin: 0 0 8px; }
.sr-modal-head p  { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Form ── */
.sr-form { display: flex; flex-direction: column; gap: 14px; }
.sr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sr-form-group { display: flex; flex-direction: column; gap: 5px; }
.sr-form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.sr-form-group label .req { color: var(--blue); }
.sr-form-group input,
.sr-form-group select,
.sr-form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px; font-family: inherit; color: var(--text-dark);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none; width: 100%;
}
.sr-form-group input:focus,
.sr-form-group select:focus,
.sr-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,79,216,.1);
}
.sr-form-group input.sr-invalid,
.sr-form-group select.sr-invalid { border-color: #DC2626; }
.sr-form-group textarea { resize: vertical; min-height: 90px; }

.sr-form-error {
  background: #FEF2F2; border: 1px solid #FECACA;
  color: #DC2626; font-size: 13px; padding: 10px 14px;
  border-radius: 8px; font-weight: 500;
}

.sr-submit-btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px;
  margin-top: 4px;
  position: relative;
}
.sr-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.sr-form-privacy {
  text-align: center; font-size: 12px; color: var(--muted); margin: 0;
}

/* ── Success state ── */
.sr-modal-success { text-align: center; padding: 20px 0; }
.sr-success-tick  { font-size: 60px; margin-bottom: 16px; }
.sr-modal-success h3 { font-size: 26px; margin: 0 0 10px; }
.sr-modal-success p  { color: var(--muted); font-size: 15px; margin: 0 0 24px; }
.sr-success-actions { display: flex; justify-content: center; }

.btn-whatsapp-inline {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .15s;
}
.btn-whatsapp-inline:hover { background: #128C7E; }

/* ═══════════════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════════════ */
.sr-float-stack {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.sr-float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  border: none; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.sr-float-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.24); }
.sr-float-call { background: var(--blue); color: #fff; }
.sr-float-wa   { background: #25D366; color: #fff; }
.sr-float-icon { display: flex; align-items: center; font-size: 18px; }

/* ═══════════════════════════════════════════════════════════
   CONVERSION PAGE — FREE AUDIT (template-free-audit.php)
═══════════════════════════════════════════════════════════ */
.audit-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1240a8 100%);
  color: #fff; padding: 72px 5% 60px; text-align: center;
}
.audit-hero h1 { font-size: clamp(28px,4vw,46px); margin: 0 0 12px; color: #fff; }
.audit-hero p  { font-size: 17px; opacity: .88; max-width: 560px; margin: 0 auto; }
.audit-hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px;
}
.audit-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: #fff;
}

.audit-body { padding: 72px 5%; background: var(--bg-soft); }
.audit-body-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start;
}

.audit-form-card {
  background: var(--white); border-radius: 20px;
  padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.audit-form-card h2 { font-size: 22px; margin: 0 0 6px; }
.audit-form-card p  { color: var(--muted); font-size: 14px; margin: 0 0 24px; }

.audit-value { padding: 8px 0; }
.audit-value h3 { font-size: 20px; margin: 0 0 20px; }
.audit-value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.audit-value-item:last-child { border-bottom: none; }
.audit-val-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.audit-val-text h4 { font-size: 15px; margin: 0 0 3px; }
.audit-val-text p  { font-size: 13px; color: var(--muted); margin: 0; }

.audit-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.audit-trust-item {
  background: var(--bg-soft); border-radius: 12px; padding: 16px;
  text-align: center;
}
.audit-trust-num  { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--blue); }
.audit-trust-lbl  { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE (template-contact.php)
═══════════════════════════════════════════════════════════ */
.contact-hero { background: var(--bg-soft); padding: 64px 5% 56px; text-align: center; }
.contact-hero h1 { font-size: clamp(28px,4vw,44px); margin: 0 0 10px; }
.contact-hero p  { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

.contact-channels {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  padding: 0 5% 56px;
}
.contact-channel {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.contact-channel:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(27,79,216,.12); transform: translateY(-3px); }
.contact-channel-icon { font-size: 36px; margin-bottom: 12px; }
.contact-channel h3   { font-size: 17px; margin: 0 0 6px; }
.contact-channel p    { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.contact-channel-cta  { font-size: 13px; font-weight: 700; color: var(--blue); }
.contact-channel.wa-channel { border-color: #25D366; }
.contact-channel.wa-channel:hover { box-shadow: 0 8px 28px rgba(37,211,102,.2); }
.contact-channel.wa-channel .contact-channel-cta { color: #128C7E; }

.contact-body { padding: 72px 5%; }
.contact-body-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
}
.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.contact-form-card h2 { font-size: 22px; margin: 0 0 6px; }
.contact-form-card p  { color: var(--muted); font-size: 14px; margin: 0 0 24px; }

.contact-info-block { padding: 8px 0; }
.contact-info-block h3 { font-size: 20px; margin: 0 0 20px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { font-size: 22px; flex-shrink: 0; }
.ci-text  { flex: 1; }
.ci-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.ci-text span   { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE (template-about.php)
═══════════════════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg,#f0f4ff 0%,#e8eeff 100%);
  padding: 80px 5%; text-align: center;
}
.about-hero h1 { font-size: clamp(28px,4vw,46px); margin: 0 0 14px; }
.about-hero p  { font-size: 17px; color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.about-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 48px;
}
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--blue); }
.about-stat-lbl { font-size: 13px; color: var(--muted); }

.about-story { padding: 80px 5%; }
.about-story-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { font-size: 34px; margin: 0 0 20px; }
.about-story-text p  { color: var(--text-mid); line-height: 1.8; margin: 0 0 16px; }
.about-story-visual { background: linear-gradient(135deg,var(--blue),#6366f1); border-radius: 20px; padding: 40px; color: #fff; }
.about-story-visual h3 { font-size: 20px; margin: 0 0 20px; opacity: .8; }
.about-pillar { display: flex; gap: 12px; margin-bottom: 20px; }
.about-pillar-icon { font-size: 28px; flex-shrink: 0; }
.about-pillar-text h4 { font-size: 15px; margin: 0 0 3px; }
.about-pillar-text p  { font-size: 13px; opacity: .8; margin: 0; }

.about-values { background: var(--bg-soft); padding: 80px 5%; }
.about-values-grid { max-width: 1080px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-value-card { background: var(--white); border-radius: 16px; padding: 28px; border: 1.5px solid var(--border); }
.about-value-icon { font-size: 32px; margin-bottom: 14px; }
.about-value-card h3 { font-size: 18px; margin: 0 0 8px; }
.about-value-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   PARTNER WITH US (template-partner.php)
═══════════════════════════════════════════════════════════ */
.partner-hero {
  background: linear-gradient(135deg,#0a0e23,#1B4FD8);
  color: #fff; padding: 88px 5%; text-align: center;
}
.partner-hero h1 { font-size: clamp(28px,4vw,48px); color: #fff; margin: 0 0 14px; }
.partner-hero p  { font-size: 17px; opacity: .85; max-width: 580px; margin: 0 auto 36px; }
.partner-hero-types {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px;
}
.partner-type-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 8px 20px; font-size: 14px; font-weight: 600; color: #fff;
}

.partner-tiers { padding: 72px 5%; }
.partner-tiers-grid { max-width: 1080px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.partner-tier-card { border-radius: 16px; padding: 32px 28px; border: 2px solid var(--border); background: var(--white); }
.partner-tier-card.featured { border-color: var(--blue); box-shadow: 0 8px 32px rgba(27,79,216,.12); }
.partner-tier-icon { font-size: 36px; margin-bottom: 16px; }
.partner-tier-card h3 { font-size: 20px; margin: 0 0 6px; }
.partner-tier-card p  { font-size: 14px; color: var(--muted); margin: 0 0 20px; line-height: 1.6; }
.partner-tier-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.partner-tier-features li { font-size: 13px; display: flex; gap: 8px; }
.partner-tier-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.partner-form-section { background: var(--bg-soft); padding: 80px 5%; }
.partner-form-inner { max-width: 820px; margin: 0 auto; }
.partner-form-inner h2 { font-size: 32px; text-align: center; margin: 0 0 8px; }
.partner-form-inner > p { text-align: center; color: var(--muted); margin: 0 0 40px; }
.partner-form-card { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,.07); }

/* ═══════════════════════════════════════════════════════════
   HUB TEMPLATE (template-hub.php)
═══════════════════════════════════════════════════════════ */
.hub-hero { background: var(--bg-soft); padding: 72px 5% 56px; text-align: center; }
.hub-hero h1 { font-size: clamp(26px,4vw,44px); margin: 0 0 12px; }
.hub-hero p  { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 auto; }
.hub-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; padding: 0 5% 80px; }
.hub-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 28px; text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.hub-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(27,79,216,.1); transform: translateY(-3px); }
.hub-card-icon { font-size: 32px; margin-bottom: 14px; }
.hub-card h3   { font-size: 17px; margin: 0 0 8px; }
.hub-card p    { font-size: 13px; color: var(--muted); margin: 0 0 16px; flex: 1; line-height: 1.6; }
.hub-card-link { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   BLOG / CASE STUDIES LISTING (template-blog.php)
═══════════════════════════════════════════════════════════ */
.blog-listing { padding: 72px 5%; }
.blog-grid { max-width: 1200px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-card-thumb { height: 190px; background: linear-gradient(135deg,var(--blue),#6366f1); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body  { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
.blog-card h3    { font-size: 18px; margin: 0 0 10px; line-height: 1.4; }
.blog-card p     { font-size: 13px; color: var(--muted); margin: 0 0 16px; flex: 1; line-height: 1.6; }
.blog-card-meta  { font-size: 12px; color: var(--muted); display: flex; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS PAGE
═══════════════════════════════════════════════════════════ */
.reviews-hero { background: linear-gradient(135deg,var(--blue),#6366f1); color: #fff; padding: 72px 5%; text-align: center; }
.reviews-hero h1 { color: #fff; font-size: clamp(26px,4vw,44px); margin: 0 0 12px; }
.reviews-hero p  { opacity: .88; font-size: 16px; max-width: 500px; margin: 0 auto; }
.reviews-score   { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.reviews-score-num { font-size: 56px; font-weight: 800; line-height: 1; }
.reviews-score-stars { font-size: 28px; letter-spacing: 2px; }
.reviews-score-label { font-size: 14px; opacity: .8; }

.reviews-grid { max-width: 1200px; margin: 0 auto; padding: 72px 5%; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; }
.review-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text  { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0 0 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }
.review-name   { font-size: 14px; font-weight: 700; }
.review-role   { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   BOOK A CALL PAGE
═══════════════════════════════════════════════════════════ */
.bac-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 50%, #312e81 100%);
  color: #fff;
  padding: 60px 5% 72px;
}
.bac-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.bac-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.bac-hero-text h1 {
  font-size: clamp(28px,3.8vw,46px);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.bac-hero-text > p {
  font-size: 16px;
  opacity: .88;
  margin: 0 0 28px;
  line-height: 1.7;
}
.bac-promises {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bac-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.bac-promises li span { flex-shrink: 0; }
.bac-trust-row {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.bac-trust-item { text-align: center; }
.bac-trust-num { font-size: 28px; font-weight: 800; line-height: 1; }
.bac-trust-lbl { font-size: 12px; opacity: .75; margin-top: 3px; font-weight: 500; }

/* Form card (white, elevated) */
.bac-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.bac-form-head h2 { font-size: 22px; color: var(--text); margin: 0 0 6px; }
.bac-form-head p  { font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.bac-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
  margin-top: 4px;
}

/* Success state */
.bac-success { text-align: center; padding: 20px 0; }
.bac-success-tick { font-size: 56px; margin-bottom: 16px; }
.bac-success h3 { font-size: 24px; margin: 0 0 10px; color: var(--text); }
.bac-success p  { font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.bac-calendar-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
  display: flex;
  text-decoration: none;
}
.bac-success-divider {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0;
  position: relative;
}
.bac-success-divider::before,
.bac-success-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.bac-success-divider::before { left: 0; }
.bac-success-divider::after  { right: 0; }

/* Steps section */
.bac-steps-section { padding: 80px 5%; }
.bac-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.bac-step {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.bac-step-num {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--font-head);
  margin-bottom: 14px;
}
.bac-step h3 { font-size: 16px; margin: 0 0 8px; }
.bac-step p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
.bac-step-arrow {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--blue);
  opacity: .4;
  padding: 0 12px;
  margin-top: 44px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — additional classes
═══════════════════════════════════════════════════════════ */
.about-hero { background: linear-gradient(135deg,var(--blue),#312e81); color: #fff; padding: 80px 5% 60px; text-align: center; }
.about-hero h1 { font-size: clamp(28px,4vw,50px); color: #fff; margin: 0 0 14px; }
.about-hero p  { font-size: 17px; opacity: .88; max-width: 600px; margin: 0 auto; }
.about-stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; margin-top: 40px; padding: 32px 0 0; border-top: 1px solid rgba(255,255,255,.15); }
.about-image-placeholder { background: var(--bg-soft); border-radius: 20px; border: 1.5px dashed var(--border); min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.about-pillars { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; margin-top: 48px; }
.about-pillar  { background: var(--white); border-radius: 16px; border: 1.5px solid var(--border); padding: 28px; }
.about-pillar h3 { font-size: 17px; margin: 0 0 8px; }
.about-pillar p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.about-pillar-icon { font-size: 32px; margin-bottom: 14px; }
.about-values  { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; margin-top: 40px; }

/* ═══════════════════════════════════════════════════════════
   PARTNER PAGE — additional classes
═══════════════════════════════════════════════════════════ */
.partner-type-badge { display: inline-block; background: rgba(255,255,255,.18); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE — additional classes
═══════════════════════════════════════════════════════════ */
.blog-cat-pill { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; background: var(--bg-soft); color: var(--muted); text-decoration: none; border: 1.5px solid var(--border); transition: background .15s, color .15s; }
.blog-cat-pill:hover, .blog-cat-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.blog-cat-tag  { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: rgba(27,79,216,.08); padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.blog-card-title { font-size: 18px; line-height: 1.4; margin: 0 0 10px; }
.blog-card-title a { color: var(--text); text-decoration: none; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 14px; color: var(--muted); margin: 0 0 14px; line-height: 1.6; flex: 1; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; margin-top: auto; }
.blog-read-more:hover { text-decoration: underline; }
.blog-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; background: var(--white); border: 1.5px solid var(--border); font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; transition: background .15s, color .15s; }
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   REVIEWS PAGE — additional classes
═══════════════════════════════════════════════════════════ */
.review-service-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: rgba(27,79,216,.08); padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.review-result { font-size: 20px; font-weight: 800; color: var(--green); margin: 0 0 12px; }
.review-quote  { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0 0 20px; font-style: italic; border: none; padding: 0; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-meta   { font-size: 12px; color: var(--muted); }
.review-avatar-placeholder { background: linear-gradient(135deg,var(--blue),#6366f1); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   HUB PAGE — additional classes
═══════════════════════════════════════════════════════════ */
.hub-card-thumb { height: 160px; background-size: cover; background-position: center; border-radius: 10px 10px 0 0; }
.hub-card-body  { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hub-card-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); background: rgba(22,163,74,.1); padding: 3px 8px; border-radius: 5px; margin-bottom: 8px; }
.hub-card-cta   { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: auto; display: block; }

/* Standalone FAQ (used in contact/partner/reviews - full width) */
.faq-section.faq-standalone .faq-inner { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; gap: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MODALS + PAGES
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .bac-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .bac-steps      { flex-direction: column; gap: 16px; }
  .bac-step-arrow { display: none; }
  .sr-modal-box { padding: 28px 20px; }
  .sr-form-row  { grid-template-columns: 1fr; }
  .audit-body-inner,
  .contact-body-inner,
  .about-story-inner { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .about-values-grid,
  .about-pillars,
  .about-values,
  .partner-tiers-grid { grid-template-columns: 1fr; }
  .blog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .sr-float-btn .sr-float-label { display: none; }
  .sr-float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .sr-float-stack { bottom: 20px; right: 16px; }
  .hub-grid { grid-template-columns: 1fr; }
  .about-stats-row { gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .audit-trust-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-row  { grid-template-columns: 1fr 1fr; display: grid; }
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGE
═══════════════════════════════════════════════════════════ */
.city-hero { background: linear-gradient(135deg,#0f2460 0%,var(--blue) 55%,#1e40af 100%); }
.city-flag-badge {
  display: inline-block; background: rgba(255,255,255,.15); color: #fff;
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 18px; letter-spacing: .04em;
}
.city-stats-mini {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2);
}
.city-stats-mini span { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }
.stat-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; }
.stat-pill-icon { font-size: 22px; }
.stat-pill-num { font-size: 18px; font-weight: 800; color: #fff; font-family: var(--font-head); }
.stat-pill-lbl { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 1px; }
