/* ================================================================
   SUGAR LAND SEO COMPANY — MAIN STYLESHEET
   sugarlandseocompany.com
   ================================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:          #0F172A;
  --navy-mid:      #1E293B;
  --navy-light:    #334155;
  --blue:          #2563EB;
  --blue-light:    #3B82F6;
  --blue-dark:     #1D4ED8;
  --blue-pale:     #EFF6FF;
  --orange:        #F97316;
  --orange-dark:   #EA580C;
  --orange-pale:   #FFF7ED;
  --bg-light:      #F8FAFC;
  --bg-section:    #F1F5F9;
  --text-dark:     #1E293B;
  --text-mid:      #475569;
  --text-light:    #94A3B8;
  --border:        #E2E8F0;
  --border-light:  #F1F5F9;
  --white:         #FFFFFF;

  /* Shadows */
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue:   0 8px 32px rgba(37,99,235,0.22);
  --shadow-orange: 0 8px 32px rgba(249,115,22,0.25);

  /* Radius */
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --radius-2xl:    32px;
  --radius-full:   9999px;

  /* Typography */
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-width:     1200px;
  --section-pad:   96px;
  --section-pad-sm: 64px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.25s var(--ease);
  --transition-lg: all 0.35s var(--ease);
}


/* ── 2. RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--white);
  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, ol   { list-style: none; }
button   { cursor: pointer; border: none; background: none; font-family: inherit; }
address  { font-style: normal; }
blockquote { font-style: italic; }


/* ── 3. TYPOGRAPHY ──────────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.025em;
}
.section-heading span { color: var(--blue); }
.section-heading.white { color: var(--white); }
.section-heading.white span { color: var(--orange); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-heading { margin-bottom: 16px; }
.section-header .section-sub { margin: 0 auto; }


/* ── 4. UTILITIES ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad    { padding: var(--section-pad) 0; }
.section-pad-sm { padding: var(--section-pad-sm) 0; }

/* Tag / Eyebrow */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.tag.tag-white {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.tag.tag-orange {
  color: var(--orange);
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.18);
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light) 0%, #60a5fa 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Panel */
.glass-panel {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
}

/* Color helpers */
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }

/* Section CTA row */
.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}


/* ── 5. BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-sm  { font-size: 0.875rem; padding: 10px 18px; }
.btn-lg  { font-size: 1rem; padding: 16px 34px; border-radius: var(--radius-lg); }

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,99,235,0.38); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* Outline Dark */
.btn-outline-dark {
  background: transparent;
  color: #2563EB;
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Outline White */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}


/* ── 6. HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-sugar {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text-seo {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Primary Nav */
.primary-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-arrow { font-size: 10px; transition: transform 0.2s ease; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--blue-pale); color: var(--blue); }
.dropdown-menu li a i { width: 16px; text-align: center; color: var(--blue); font-size: 13px; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
  white-space: nowrap;
}
.header-phone i { color: var(--blue); font-size: 13px; }
.header-phone:hover { color: var(--blue); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--bg-light); }
.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── 7. MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  width: min(340px, 100vw);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav-list { flex: 1; }
.mobile-nav-list li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.mobile-nav-list li a:hover { color: var(--blue); }
.mobile-nav-list li a.mobile-sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 0 10px 18px;
}
.mobile-nav-footer {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 0;
}
.mobile-phone i { color: var(--blue); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.55);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }


/* ── 8. HERO SECTION ────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,0.16) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  animation-delay: 3s;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.hero .container { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.28);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge i { font-size: 11px; }

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.proof-item strong { color: var(--white); font-weight: 600; }
.proof-item > i { color: var(--orange); }
.proof-stars { display: flex; gap: 2px; color: #FCD34D; font-size: 12px; }
.proof-divider { color: rgba(255,255,255,0.18); font-size: 18px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.hero-card-main {
  width: 100%;
  padding: 24px;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hc-dot-red    { background: #ef4444; }
.hc-dot-yellow { background: #f59e0b; }
.hc-dot-green  { background: #22c55e; }
.hc-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); margin-left: 4px; }

.hc-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.hc-metric { text-align: center; }
.hc-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hc-metric-label { font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 500; }
.accent-metric .hc-metric-value { color: var(--orange); }

.hc-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
}
.hc-bar {
  flex: 1;
  background: rgba(37,99,235,0.3);
  height: var(--h);
  border-radius: 3px 3px 0 0;
  position: relative;
}
.hc-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.hc-bar-active {
  background: linear-gradient(to top, var(--blue-dark), var(--blue-light));
  box-shadow: 0 0 12px rgba(59,130,246,0.5);
}

.hero-card-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: var(--radius-full) !important;
  animation: cardFloat 4s ease-in-out infinite;
}
.hero-card-pill-2 { animation-delay: 1.5s; }
.hero-card-pill i { font-size: 1.2rem; flex-shrink: 0; }
.hero-card-pill div { display: flex; flex-direction: column; }
.hero-card-pill strong { font-size: 0.875rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-card-pill span  { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll-hint:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ── 9. TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 20% 50%, rgba(37,99,235,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 100% at 80% 50%, rgba(249,115,22,0.05) 0%, transparent 70%);
}
.trust-bar .container { position: relative; z-index: 1; }

.trust-bar-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
}
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
  padding: 0 40px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.trust-sep { width: 1px; height: 52px; background: rgba(255,255,255,0.08); flex-shrink: 0; }


/* ── 10. SERVICES ───────────────────────────────────────────────── */
.services { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-lg);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
}
.service-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.service-card-featured {
  background: linear-gradient(150deg, var(--navy) 0%, #1a2744 100%);
  border-color: rgba(37,99,235,0.2);
}
.service-card-featured:hover { border-color: rgba(37,99,235,0.5); box-shadow: 0 12px 48px rgba(37,99,235,0.25); }
.service-card-featured .sc-title           { color: var(--white); }
.service-card-featured .sc-desc            { color: rgba(255,255,255,0.6); }
.service-card-featured .sc-features li    { color: rgba(255,255,255,0.65); }
.service-card-featured .sc-features li i  { color: var(--orange); }
.service-card-featured .sc-link           { color: var(--orange); }
.service-card-featured .sc-link:hover     { color: #fdba74; }

.sc-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon-wrap {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.service-card-featured .sc-icon-wrap {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.22);
  color: var(--orange);
}
.service-card-featured:hover .sc-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.sc-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.sc-badge-orange { color: var(--orange); background: var(--orange-pale); }
.service-card-featured .sc-badge { background: rgba(249,115,22,0.12); color: var(--orange); }

.sc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sc-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; flex: 1; }

.sc-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.sc-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-mid);
}
.sc-features li i { color: var(--blue); font-size: 11px; flex-shrink: 0; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
  margin-top: auto;
}
.sc-link:hover { gap: 10px; }
.sc-link i { font-size: 11px; }


/* ── 11. WHY CHOOSE US ──────────────────────────────────────────── */
.why-us { background: var(--white); }

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-heading { margin-bottom: 14px; }
.why-content .section-sub     { margin-bottom: 40px; }

.why-features { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.why-feature  { display: flex; align-items: flex-start; gap: 16px; }
.wf-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.wf-body h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.wf-body p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

.why-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}
.why-card-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-award-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}
.why-card-top strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); }
.why-card-top span   { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

.why-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.why-rating-stars { display: flex; gap: 3px; color: #FCD34D; font-size: 14px; }
.why-rating-text  { font-size: 0.875rem; color: rgba(255,255,255,0.55); font-weight: 500; }

.why-card-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
}
.wcs-item { text-align: center; }
.wcs-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.wcs-label { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
.wcs-sep   { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

.why-certifications { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cert-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.cert-pill i { color: var(--blue); font-size: 14px; }
.cert-pill:hover { background: rgba(255,255,255,0.07); color: var(--white); }


/* ── 12. RESULTS ────────────────────────────────────────────────── */
.results { background: var(--bg-light); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: var(--transition-lg);
}
.result-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.result-card-featured {
  background: linear-gradient(150deg, var(--navy) 0%, #1a2744 100%);
  border-color: rgba(37,99,235,0.25);
  position: relative; overflow: hidden;
}
.result-card-featured::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.result-card-featured .rc-client  { color: var(--white); border-bottom-color: rgba(255,255,255,0.08); }
.result-card-featured .rc-quote   { color: rgba(255,255,255,0.6); border-left-color: rgba(249,115,22,0.35); }
.result-card-featured .rc-label   { color: rgba(255,255,255,0.4); }
.result-card-featured .rc-value   { color: var(--orange); }
.result-card-featured .rc-link    { color: var(--orange); }
.result-card-featured .rc-industry { color: var(--orange); background: rgba(249,115,22,0.12); }

.rc-industry {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 12px; width: fit-content;
}
.rc-client {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.rc-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px; text-align: center;
}
.rc-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 4px;
}
.rc-label { font-size: 11px; color: var(--text-light); font-weight: 500; }
.rc-quote {
  font-size: 0.875rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 20px;
  padding-left: 14px; border-left: 3px solid var(--border);
  flex: 1;
}
.rc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--blue); transition: var(--transition); margin-top: auto;
}
.rc-link:hover { gap: 10px; }
.rc-link i { font-size: 11px; }


/* ── 13. TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--bg-section); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: var(--transition-lg);
}
.tcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue); }

.tcard-featured {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.tcard-featured:hover { box-shadow: 0 16px 48px rgba(37,99,235,0.35); }
.tcard-featured .tcard-stars         { color: #fde68a; }
.tcard-featured .tcard-quote         { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.15); }
.tcard-featured .tcard-info strong   { color: var(--white); }
.tcard-featured .tcard-info span     { color: rgba(255,255,255,0.6); }
.tcard-featured .tcard-avatar        { background: rgba(255,255,255,0.15); color: var(--white); }

.tcard-stars { display: flex; gap: 3px; color: #FCD34D; font-size: 14px; margin-bottom: 16px; }
.tcard-quote {
  font-size: 0.925rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border); flex: 1;
}
.tcard-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.tcard-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.tcard-info span   { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }


/* ── 14. PROCESS ────────────────────────────────────────────────── */
.process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0.3; z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.ps-number {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--blue); margin-bottom: 10px;
}
.ps-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue);
  margin-bottom: 20px;
  transition: var(--transition-lg);
  box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
}
.process-step:hover .ps-icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); border-color: var(--blue);
  box-shadow: 0 0 0 6px var(--white), var(--shadow-blue);
  transform: scale(1.1);
}
.ps-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.ps-body p { font-size: 0.825rem; color: var(--text-mid); line-height: 1.6; }


/* ── 15. FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--bg-light); }

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-heading { margin-bottom: 14px; }
.faq-intro .section-sub     { margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--blue); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q[aria-expanded="true"] { color: var(--blue); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-icon {
  font-size: 14px; color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}

.faq-a {
  padding: 0 24px 20px;
  animation: faqReveal 0.25s ease;
}
.faq-a p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; }
.faq-a p strong { color: var(--navy); font-weight: 600; }
.faq-a[hidden] { display: none; }

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── 16. FINAL CTA ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0e1f3e 50%, #0b1828 100%);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 70%);
  top: -120px; left: -120px;
}
.cta-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-inner .tag { margin-bottom: 20px; }
.cta-inner .section-heading { margin-bottom: 20px; }

.cta-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.72;
  margin: 0 auto 40px; max-width: 600px;
}
.cta-sub strong { color: var(--orange); }

.cta-checklist {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px 32px; margin-bottom: 40px;
}
.cta-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.78);
}
.cta-check i { color: var(--orange); font-size: 16px; }

.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px;
}
.cta-note {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-note i { color: rgba(255,255,255,0.28); }


/* ── 17. FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-main { padding: 80px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-text span:first-child {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--white);
}
.footer-logo-text span:last-child {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--blue); border-color: var(--blue);
  color: var(--white); transform: translateY(-2px);
}

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links li a:hover { color: var(--white); }

.footer-address { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
}
.footer-contact-item i {
  color: var(--blue); font-size: 13px;
  width: 16px; text-align: center; flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-cta { width: 100%; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-copy a:hover { color: var(--white); }
.footer-service-area {
  font-size: 0.8rem; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 6px;
}
.footer-service-area i { color: var(--orange); font-size: 11px; }


/* ── 18. BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-blue);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s;
}
.back-to-top.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.45);
}


/* ── 19. SCROLL FADE ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }


/* ── 20. RESPONSIVE ─────────────────────────────────────────────── */

/* Large tablet ≤ 1100px */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; --section-pad-sm: 48px; }

  .primary-nav { display: none; }
  .nav-toggle  { display: flex; }
  .header-phone span { display: none; }

  .hero-layout       { grid-template-columns: 1fr; }
  .hero-visual       { align-items: flex-start; }
  .hero-card-main    { max-width: 480px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-us-layout     { grid-template-columns: 1fr; gap: 48px; }
  .results-grid      { grid-template-columns: 1fr 1fr; }
  .results-grid .result-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout        { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro         { position: static; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; --section-pad-sm: 40px; }

  .container { padding: 0 16px; }
  .header-actions { gap: 10px; }
  .header-phone   { display: none; }

  .hero { padding: 96px 0 56px; min-height: auto; }
  .hero-heading { font-size: clamp(30px, 8vw, 44px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .proof-divider { display: none; }
  .hero-visual { width: 100%; }
  .hero-card-main { max-width: 100%; }

  .trust-stats { flex-direction: column; gap: 24px; align-items: center; }
  .trust-sep   { display: none; }
  .trust-stat  { padding: 0; }

  .services-grid     { grid-template-columns: 1fr; }
  .results-grid      { grid-template-columns: 1fr; }
  .results-grid .result-card:last-child { grid-column: auto; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr 1fr; }

  .why-card-stats { grid-template-columns: 1fr; gap: 16px; }
  .wcs-sep        { display: none; }
  .wcs-item       { text-align: left; display: flex; align-items: center; gap: 12px; }
  .wcs-value      { font-size: 1.4rem; min-width: 56px; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .cta-checklist { flex-direction: column; align-items: flex-start; margin-left: auto; margin-right: auto; max-width: 260px; }

  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .back-to-top         { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .hero-heading    { font-size: 28px; }
  .section-heading { font-size: 24px; }
  .service-card, .why-card, .result-card, .tcard { padding: 24px; }
  .process-steps   { grid-template-columns: 1fr; }
  .hc-metric-row   { grid-template-columns: 1fr 1fr; }
  .hc-metric:last-child { grid-column: 1 / -1; }
  .why-certifications { grid-template-columns: 1fr; }
  .rc-value        { font-size: 1.2rem; }
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE STYLES
   services.html
═══════════════════════════════════════════════════════════════ */


/* ── Page Hero ───────────────────────────────────────────────── */
.pg-hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
}
.pg-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.pg-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.pg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation: orbPulse 6s ease-in-out infinite;
}
.pg-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: orbPulse 8s ease-in-out infinite reverse;
}
.pg-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pg-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 20px 0 20px;
  letter-spacing: -0.02em;
}
.pg-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.pg-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}


/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-nav { margin-bottom: 20px; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list i { font-size: 10px; }
.breadcrumb-list [aria-current] { color: rgba(255,255,255,0.8); }


/* ── Service Quick Nav ──────────────────────────────────────── */
.svc-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0 0;
}
.svc-qlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.svc-qlink:hover {
  background: rgba(37,99,235,0.25);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.svc-qlink i { font-size: 12px; color: var(--orange); }


/* ── Service Sections ───────────────────────────────────────── */
.svc-section {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.svc-alt {
  background: var(--white);
}
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-layout-rev { direction: rtl; }
.svc-layout-rev > * { direction: ltr; }


/* ── Service Content Side ───────────────────────────────────── */
.svc-content { display: flex; flex-direction: column; gap: 20px; }
.svc-icon-lg {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.svc-icon-blue {
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.2);
}
.svc-icon-orange {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}

.svc-content .section-heading {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0;
  text-align: left;
}
.svc-content .section-heading span { color: var(--blue); }
.svc-content .section-sub {
  font-size: 1rem;
  text-align: left;
  margin: 0;
}

.svc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.svc-fi {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.svc-fi i { color: var(--blue); font-size: 15px; flex-shrink: 0; margin-top: 2px; }

.svc-stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.svc-alt .svc-stat-strip { background: var(--light); }
.svc-stat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(37,99,235,0.1);
}
.svc-stat:last-child { border-right: none; }
.svc-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}
.svc-stat-lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}


/* ── Service Visual Panel ───────────────────────────────────── */
.svc-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-panel {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.04);
}
.svc-alt .svc-panel {
  border-color: rgba(15,23,42,0.09);
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}
.svc-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  background: var(--light);
}
.svc-alt .svc-panel-header { background: #F1F5F9; }
.svc-panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-panel-title i { color: var(--blue); }
.svc-panel-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.svc-panel-tag.green {
  background: rgba(16,185,129,0.12);
  color: #059669;
}

.svc-panel-footer {
  display: flex;
  gap: 16px;
  padding: 12px 18px;
  border-top: 1px solid rgba(15,23,42,0.07);
  background: var(--light);
  flex-wrap: wrap;
}
.svc-alt .svc-panel-footer { background: #F1F5F9; }
.spf-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.spf-item .text-blue { color: var(--blue); }
.spf-item .text-orange { color: var(--orange); }


/* ── Keyword Ranking Panel ──────────────────────────────────── */
.svc-rank-list {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-rank-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}
.rank-kw {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-bar-wrap {
  width: 90px;
  height: 6px;
  background: rgba(37,99,235,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.rank-bar {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: var(--radius-full);
  transition: width 0.8s ease;
}
.rank-pos {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  min-width: 30px;
  text-align: center;
}
.rank-1 { background: rgba(37,99,235,0.1); color: var(--blue); }
.rank-2 { background: rgba(249,115,22,0.1); color: var(--orange); }
.rank-3 { background: rgba(15,23,42,0.07); color: var(--muted); }


/* ── Tools Strip ────────────────────────────────────────────── */
.svc-tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
}
.svc-alt .svc-tool-badge { background: var(--light); }
.svc-tool-badge i { color: var(--blue); }


/* ── Map Pack Panel ─────────────────────────────────────────── */
.svc-map-pack { padding: 12px 18px; display: flex; flex-direction: column; gap: 6px; }
.map-listing {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.07);
  background: var(--light);
  position: relative;
}
.map-listing-1 {
  background: rgba(37,99,235,0.05);
  border-color: rgba(37,99,235,0.15);
}
.ml-rank {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ml-rank-2 { background: var(--muted); }
.ml-rank-3 { background: rgba(15,23,42,0.25); color: var(--white); }
.ml-body { flex: 1; min-width: 0; }
.ml-name { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.ml-stars { font-size: 11px; color: #f59e0b; display: flex; align-items: center; gap: 2px; margin: 2px 0; }
.ml-stars span { color: var(--muted); font-size: 11px; margin-left: 3px; }
.ml-cat { font-size: 11px; color: var(--muted); }
.ml-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  border-radius: var(--radius-full);
  position: absolute;
  top: 8px; right: 10px;
}


/* ── PPC Ads Panel ──────────────────────────────────────────── */
.svc-ads-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.ads-metric {
  text-align: center;
  padding: 8px 4px;
  border-right: 1px solid rgba(15,23,42,0.08);
}
.ads-metric:last-child { border-right: none; }
.ads-metric-highlight .ads-m-val { color: var(--orange); }
.ads-m-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.ads-m-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
}
.svc-ads-breakdown {
  padding: 10px 18px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ads-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(15,23,42,0.05);
  font-size: 12.5px;
}
.ads-row:last-child { border-bottom: none; }
.ads-row span { color: var(--muted); }
.ads-row strong { color: var(--navy); font-weight: 600; }


/* ── PageSpeed Scores Panel ─────────────────────────────────── */
.svc-perf-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.perf-score { text-align: center; }
.ps-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  border: 4px solid;
}
.ps-green { border-color: #22c55e; background: rgba(34,197,94,0.06); }
.ps-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #16a34a;
}
.ps-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}


/* ── Lead Gen Funnel Panel ──────────────────────────────────── */
.svc-funnel { padding: 18px 24px; display: flex; flex-direction: column; gap: 0; }
.funnel-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.08);
  font-size: 13px;
}
.funnel-s1 { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.2); }
.funnel-s2 { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.12); }
.funnel-s3 { background: rgba(249,115,22,0.06); border-color: rgba(249,115,22,0.15); }
.funnel-s4 { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   about.html
═══════════════════════════════════════════════════════════════ */


/* ── Hero Mini-Stats Strip ──────────────────────────────────── */
.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.ahs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ahs-item:last-child { border-right: none; }
.ahs-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ahs-lbl {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  text-align: center;
}
.ahs-divider { display: none; }


/* ── Visually Hidden (accessibility) ───────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── Our Story Section ──────────────────────────────────────── */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-content { display: flex; flex-direction: column; gap: 18px; }
.story-content .section-heading {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0;
  text-align: left;
}
.story-content .section-heading span { color: var(--blue); }
.story-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.story-content p strong { color: var(--navy); }
.story-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.story-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.story-cert-badge i { color: var(--blue); }


/* ── Story Panel + Timeline ─────────────────────────────────── */
.story-visual { position: relative; }
.story-panel {
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}
.story-panel-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.story-panel-label i { color: var(--orange); }

.milestone-timeline {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.milestone-item {
  display: grid;
  grid-template-columns: 48px 20px 1fr;
  gap: 0 14px;
  position: relative;
  padding-bottom: 22px;
}
.milestone-last { padding-bottom: 0; }
.milestone-item::after {
  content: '';
  position: absolute;
  left: 56px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: rgba(37,99,235,0.12);
}
.milestone-last::after { display: none; }
.ms-year {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.ms-year-now { color: var(--orange); }
.ms-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.25);
  margin-top: 4px;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.ms-dot-now {
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(249,115,22,0.25);
}
.ms-body { padding-top: 0; }
.ms-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.ms-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}


/* ── Key Numbers ────────────────────────────────────────────── */
.about-numbers {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 150% at 15% 50%, rgba(37,99,235,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 150% at 85% 50%, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.number-item:last-child { border-right: none; }
.num-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  display: inline;
}
.num-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  vertical-align: super;
}
.num-lbl {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}
.num-sub {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
  line-height: 1.5;
}


/* ── Our Approach ───────────────────────────────────────────── */
.about-approach {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.approach-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.approach-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.approach-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(37,99,235,0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.approach-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
}
.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}
.approach-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}


/* ── Core Values ────────────────────────────────────────────── */
.about-values {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(37,99,235,0.15);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
  transform: translateY(-3px);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.vc-blue   { background: rgba(37,99,235,0.1);  color: var(--blue);   border: 1px solid rgba(37,99,235,0.15); }
.vc-orange { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.15); }
.vc-green  { background: rgba(16,185,129,0.1); color: #059669;       border: 1px solid rgba(16,185,129,0.15); }
.vc-purple { background: rgba(139,92,246,0.1); color: #7c3aed;       border: 1px solid rgba(139,92,246,0.15); }
.vc-teal   { background: rgba(20,184,166,0.1); color: #0d9488;       border: 1px solid rgba(20,184,166,0.15); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}


/* ── Team Section ───────────────────────────────────────────── */
.about-team {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(37,99,235,0.18);
  box-shadow: 0 8px 28px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ta-blue   { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.ta-purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); color: #fff; }
.ta-orange { background: linear-gradient(135deg, #F97316, #EA580C); color: #fff; }
.ta-teal   { background: linear-gradient(135deg, #0D9488, #0F766E); color: #fff; }
.ta-green  { background: linear-gradient(135deg, #059669, #047857); color: #fff; }
.ta-indigo { background: linear-gradient(135deg, #4F46E5, #4338CA); color: #fff; }

.team-card-body { display: flex; flex-direction: column; gap: 10px; }
.tc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.tc-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-top: -4px;
}
.tc-bio {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.tc-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tc-cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.tc-cert i { color: var(--blue); font-size: 10px; }


/* ── Certifications ─────────────────────────────────────────── */
.about-certs {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  transition: var(--transition);
}
.cert-card:hover {
  border-color: rgba(37,99,235,0.2);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.08);
  transform: translateY(-3px);
}
.cert-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cert-google { background: rgba(37,99,235,0.08); color: var(--blue); border: 1px solid rgba(37,99,235,0.15); }
.cert-meta   { background: rgba(59,130,246,0.08); color: #1877F2;    border: 1px solid rgba(59,130,246,0.15); }
.cert-semrush{ background: rgba(249,115,22,0.08); color: var(--orange); border: 1px solid rgba(249,115,22,0.15); }
.cert-bbb    { background: rgba(16,185,129,0.08); color: #059669;    border: 1px solid rgba(16,185,129,0.15); }
.cert-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.cert-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.cert-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  background: rgba(37,99,235,0.08);
  color: var(--blue);
  border-radius: var(--radius-full);
}


/* ── Featured Quote ─────────────────────────────────────────── */
.about-quote {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 150% at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 150% at 80% 50%, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-quote .container { position: relative; z-index: 1; }

.featured-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.fq-icon {
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
}
.fq-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  quotes: none;
}
.fq-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.fq-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.fq-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fq-info strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.fq-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.fq-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 13px;
}


/* ── Why Local / Service Areas ──────────────────────────────── */
.about-local {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.local-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.local-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.local-content .section-heading {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0;
  text-align: left;
}
.local-content .section-heading span { color: var(--blue); }
.local-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.local-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.local-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.local-card:hover {
  border-color: rgba(37,99,235,0.18);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.lc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--orange);
  flex-shrink: 0;
}
.lc-body h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
}
.lc-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}


/* ── About Page Responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
  .certs-grid  { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .number-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .local-layout { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-stats { flex-direction: column; border-radius: var(--radius-lg); }
  .ahs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .ahs-item:last-child { border-bottom: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .local-cards { grid-template-columns: 1fr; }
  .fq-attribution { flex-direction: column; text-align: center; }
  .fq-info { text-align: center; }
  .milestone-item { grid-template-columns: 40px 16px 1fr; gap: 0 10px; }
  .milestone-item::after { left: 48px; }
  .ms-year { font-size: 11px; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .number-item:last-child { border-bottom: none; }
  .approach-card { padding: 24px 20px; }
  .story-panel { padding: 20px; }
  .team-card { flex-direction: row; gap: 16px; }
  .team-avatar { width: 52px; height: 52px; font-size: 1rem; border-radius: 14px; }
}
.fs-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--navy);
}
.fs-label i { color: var(--blue); font-size: 14px; }
.fs-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.funnel-arrow {
  text-align: center;
  padding: 4px 0;
  color: rgba(37,99,235,0.35);
  font-size: 11px;
}


/* ── Analytics Grid Panel ───────────────────────────────────── */
.svc-analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.anlyt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}
.anlyt-card i { font-size: 16px; margin-bottom: 2px; }
.anlyt-blue   { background: rgba(37,99,235,0.07);  border-color: rgba(37,99,235,0.12);  }
.anlyt-blue i { color: var(--blue); }
.anlyt-orange { background: rgba(249,115,22,0.07); border-color: rgba(249,115,22,0.12); }
.anlyt-orange i { color: var(--orange); }
.anlyt-green  { background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.12); }
.anlyt-green i { color: #10b981; }
.anlyt-purple { background: rgba(139,92,246,0.07); border-color: rgba(139,92,246,0.12); }
.anlyt-purple i { color: #7c3aed; }
.anlyt-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.anlyt-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}


/* ── All Services Include ───────────────────────────────────── */
.all-include {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.all-include::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.all-include .container { position: relative; z-index: 1; }
.all-include .section-header { margin-bottom: 56px; }
.all-include .section-header .tag { --tag-text: rgba(249,115,22,0.9); --tag-bg: rgba(249,115,22,0.12); --tag-border: rgba(249,115,22,0.2); }
.all-include .section-heading { color: var(--white); }
.all-include .section-heading span { color: var(--orange); }
.all-include .section-sub { color: rgba(255,255,255,0.6); }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ai-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: var(--transition);
}
.ai-item:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.25);
  transform: translateY(-4px);
}
.ai-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 16px;
}
.ai-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.3;
}
.ai-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

/* Mobile sub-links in nav */
.mobile-sub {
  padding-left: 36px !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.55) !important;
}


/* ── Services Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-layout-rev { direction: ltr; }
  .svc-perf-scores { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .pg-hero { padding: 120px 0 60px; }
  .pg-hero-actions { flex-direction: column; align-items: stretch; }
  .pg-hero-actions .btn { width: 100%; justify-content: center; }
  .svc-quicknav { gap: 8px; }
  .svc-qlink { padding: 8px 14px; font-size: 12px; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-stat-strip { flex-direction: column; }
  .svc-stat { border-right: none; border-bottom: 1px solid rgba(37,99,235,0.1); padding: 12px; }
  .svc-stat:last-child { border-bottom: none; }
  .svc-ads-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .ai-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .svc-perf-scores { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-analytics-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .pg-hero-heading { font-size: 1.75rem; }
  .ai-grid { grid-template-columns: 1fr; }
  .svc-ads-metrics { grid-template-columns: 1fr; }
  .svc-perf-scores { grid-template-columns: repeat(2, 1fr); }
  .svc-analytics-grid { grid-template-columns: 1fr; }
  .ai-item { padding: 22px 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   contact.html
═══════════════════════════════════════════════════════════════ */


/* ── Short Hero Variant ─────────────────────────────────────── */
.pg-hero-short { padding-bottom: 56px; }


/* ── Hero Quick Contact Bar ─────────────────────────────────── */
.hero-quick-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.hqc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
}
.hqc-item:hover { background: rgba(255,255,255,0.05); }
.hqc-static { cursor: default; }
.hqc-static:hover { background: transparent; }
.hqc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.hqc-icon-green {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.25);
  color: #34d399;
}
.hqc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hqc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.hqc-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hqc-divider { width: 0; }


/* ── Contact Main Section ───────────────────────────────────── */
.contact-main {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}


/* ── Contact Form Card ──────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(15,23,42,0.07);
}
.cfc-header {
  padding: 32px 36px 28px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
  background: linear-gradient(135deg, rgba(37,99,235,0.03) 0%, rgba(249,115,22,0.02) 100%);
}
.cfc-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cfc-heading i { color: var(--orange); font-size: 1.1rem; }
.cfc-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.cfc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cfc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.cfc-trust-item i { color: var(--blue); font-size: 12px; }

/* ── ReadyOnDemand iframe wrapper ───────────────────────────── */
.cf-iframe-wrap {
  padding: 24px;
}
.cf-iframe-wrap iframe {
  display: block;
  width: 100%;
}

/* ── Form Elements ──────────────────────────────────────────── */
.cf-form {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cf-required { color: var(--orange); font-size: 14px; line-height: 1; }
.cf-optional {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
}
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--light);
  border: 1.5px solid rgba(15,23,42,0.12);
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-sizing: border-box;
}
.cf-input::placeholder,
.cf-textarea::placeholder { color: rgba(15,23,42,0.3); }
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.cf-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ── Checkbox ───────────────────────────────────────────────── */
.cf-checkbox-group { margin-top: -4px; }
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cf-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cf-check-box {
  width: 20px; height: 20px;
  border: 1.5px solid rgba(15,23,42,0.2);
  border-radius: 5px;
  background: var(--light);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cf-check input[type="checkbox"]:checked + .cf-check-box {
  background: var(--blue);
  border-color: var(--blue);
}
.cf-check input[type="checkbox"]:checked + .cf-check-box::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.cf-check input[type="checkbox"]:focus-visible + .cf-check-box {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.cf-check-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Submit Row ─────────────────────────────────────────────── */
.cf-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.cf-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 28px;
}
.cf-submit-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}
.cf-submit-note i { color: var(--blue); }


/* ── Contact Info Sidebar ───────────────────────────────────── */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.ci-card,
.next-steps-card,
.contact-review-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}
.ci-card-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.ci-card-heading i { color: var(--blue); font-size: 14px; }
.ci-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.ci-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ci-icon-phone { background: rgba(37,99,235,0.08);  color: var(--blue);   border: 1px solid rgba(37,99,235,0.12); }
.ci-icon-email { background: rgba(249,115,22,0.08); color: var(--orange); border: 1px solid rgba(249,115,22,0.12); }
.ci-icon-loc   { background: rgba(16,185,129,0.08); color: #059669;       border: 1px solid rgba(16,185,129,0.12); }
.ci-icon-hours { background: rgba(139,92,246,0.08); color: #7c3aed;       border: 1px solid rgba(139,92,246,0.12); }
.ci-body { display: flex; flex-direction: column; gap: 2px; }
.ci-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.ci-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}
a.ci-val:hover { color: var(--blue); }
.ci-social {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.07);
}

/* ── Next Steps ─────────────────────────────────────────────── */
.ns-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ns-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.ns-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.ns-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Review Card in Sidebar ─────────────────────────────────── */
.contact-review-card { background: var(--navy); border-color: rgba(255,255,255,0.06); }
.crc-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #f59e0b;
  margin-bottom: 14px;
}
.crc-stars span { color: rgba(255,255,255,0.5); font-size: 12px; margin-left: 4px; }
.crc-quote {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 16px;
  quotes: none;
}
.crc-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.crc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.crc-attr strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.crc-attr span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
}


/* ── Trust Strip ────────────────────────────────────────────── */
.contact-trust-strip {
  padding: 36px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cts-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.cts-item i {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
}
.cts-item strong { color: var(--white); }


/* ── Map Section ────────────────────────────────────────────── */
.contact-map-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.map-and-areas {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.map-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.1);
  box-shadow: 0 4px 24px rgba(15,23,42,0.07);
}
.map-iframe { display: block; }

.service-areas-card {
  background: var(--light);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.service-areas-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.service-areas-card h3 i { color: var(--orange); }
.sa-list {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.sa-list li i { color: var(--blue); font-size: 12px; }
.sa-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.sa-note i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }


/* ── Contact FAQ ────────────────────────────────────────────── */
.contact-faq-section {
  padding: var(--section-pad) 0;
  background: var(--light);
}
.cfaq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.cfaq-item {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.cfaq-item:hover { border-color: rgba(37,99,235,0.15); }


/* ── Contact Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-wrap { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-info-wrap > *:last-child { grid-column: 1 / -1; }
  .cts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 1024px) {
  .map-and-areas { grid-template-columns: 1fr; }
  .cfaq-grid { grid-template-columns: 1fr; }
  .hero-quick-contact { flex-direction: column; border-radius: var(--radius-lg); }
  .hqc-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .hqc-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .cf-form { padding: 24px 20px; }
  .cfc-header { padding: 24px 20px; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-wrap { grid-template-columns: 1fr; }
  .contact-info-wrap > *:last-child { grid-column: auto; }
  .cts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cfc-heading { font-size: 1.05rem; }
  .cfc-trust-row { gap: 10px; }
  .contact-review-card { display: none; }
}
