/* =============================================
   SPARKHIVE AGENCY - MAIN STYLESHEET
   Shared styles for all pages
============================================= */

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --primary:   #0B3C5D;
  --accent:    #FF6D2E;
  --secondary: #1F6FEB;
  --light-gray:#F5F7FA;
  --white:     #FFFFFF;
  --text:      #1A1A1A;
  --max-w:     1200px;
  --section-pad: 80px;
  --cta-pad:   100px;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 10px 36px rgba(0,0,0,.14);
  --transition: .25s ease;
}

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--gray  { background: var(--light-gray); }
.section--white { background: var(--white); }
.section--dark  { background: var(--primary); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #555;
  max-width: 600px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
}
.logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-right: 16px;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--accent); }
@media (max-width: 768px) {
  .header-phone { display: none; }
}


.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

/* =============================================
   HERO STYLES
============================================= */
.hero, .page-hero {
  padding: 100px 0 90px;
  background: var(--white);
}
.hero-grid, .hero-inner, .page-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  grid-column: 1 / 2;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.hero-trust .trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual, .hero-illustration {
  grid-column: 2 / 3;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-img, .hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-img-fallback {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(11,60,93,0.05), rgba(31,111,235,0.05));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(11,60,93,0.1);
}
.hero-badge-2 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 10;
}
.hero-badge-2 span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-badge-2 > span:last-child {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.author-byline {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.author-byline a {
  color: var(--secondary);
  font-weight: 600;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,109,46,.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub { font-size: 18px; color: #444; margin-bottom: 14px; font-weight: 500; }
.hero-body { font-size: 16px; color: #666; margin-bottom: 36px; }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-illustration {
  background: linear-gradient(135deg, rgba(11,60,93,.07) 0%, rgba(255,109,46,.12) 100%);
  border-radius: 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.hero-illustration::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,109,46,.08);
  top: -60px; right: -60px;
}
.hero-illustration::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(11,60,93,.07);
  bottom: -40px; left: -40px;
}
.hero-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  z-index: 2;
}
.hero-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.6; transform:scale(1.3); }
}

/* =============================================
   TRUST METRICS
============================================= */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.metric-number {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

/* =============================================
   SERVICES GRID
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent);
}
.service-card:nth-child(4) { grid-column: 1 / 2; }
.service-card:nth-child(5) { grid-column: 2 / 3; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,109,46,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p { font-size: 15px; color: #666; line-height: 1.65; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card .card-link:hover { gap: 10px; }

/* =============================================
   INDUSTRIES GRID
============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.industry-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.industry-icon svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.industry-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.industry-card p { font-size: 14px; color: #666; line-height: 1.7; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.industry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.industry-card:hover .industry-card-link { text-decoration: underline; }

/* =============================================
   AUTHORITY POINTS ICONS
============================================= */
.authority-point-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
}
.authority-point-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* =============================================
   MISSION PILLARS (About Page)
============================================= */
.mission-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.mission-pillar {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.mission-pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-pillar-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mission-pillar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.mission-pillar p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   SEO CARDS (About Page - What Makes Us Different)
============================================= */
.seo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.seo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.seo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,109,46,.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seo-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.seo-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   PROCESS ROW (About Page - Our Approach)
============================================= */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.process-col {
  text-align: center;
  padding: 24px;
}
.process-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.process-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   AUTHORITY GRID (Location Pages)
============================================= */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.authority-content {
  grid-column: 1 / 2;
}
.authority-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.authority-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.authority-point strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.authority-point > div:last-child {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.authority-stats {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--light-gray);
  padding: 32px;
  border-radius: var(--radius);
}
.auth-stat {
  text-align: center;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.auth-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.auth-stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* =============================================
   AUTHORITY CARDS GRID
============================================= */
.authority-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.authority-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.authority-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.authority-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
}
.authority-card-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.authority-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.authority-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   AUTHORITY STATS
============================================= */
.authority-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.auth-stat {
  text-align: center;
}
.auth-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.auth-stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* =============================================
   SERVICE HUB ICONS
============================================= */
.hub-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
}
.hub-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hub-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}
.hub-desc { font-size: 14px; color: #666; text-align: center; margin-bottom: 12px; }
.hub-features { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.hub-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: var(--light-gray);
  padding: 4px 10px;
  border-radius: 4px;
}
.hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
}
.hub-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hub-link:hover { gap: 8px; }

/* =============================================
   CASE STUDIES GRID
============================================= */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.case-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-card:nth-child(1) .case-card-header { background: linear-gradient(135deg, #0B3C5D, #1F6FEB); }
.case-card:nth-child(2) .case-card-header { background: linear-gradient(135deg, #FF6D2E, #0B3C5D); }
.case-card:nth-child(3) .case-card-header { background: linear-gradient(135deg, #1F6FEB, #FF6D2E); }
.case-result {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.case-result-label {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  text-align: center;
  margin-top: 4px;
}
.case-card-body { padding: 24px; }
.case-industry {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.case-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.case-card-body p { font-size: 14px; color: #666; }
.case-cta { text-align: center; margin-top: 48px; }

/* =============================================
   WHY CHOOSE US
============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .section-title { margin-bottom: 24px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.why-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-check svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 14px; color: #666; }
.why-visual {
  background: linear-gradient(135deg, rgba(11,60,93,.06), rgba(255,109,46,.1));
  border-radius: 16px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  font-family: 'Outfit', sans-serif;
}
.why-stat-card:nth-child(1) { top: 32px; right: 32px; }
.why-stat-card:nth-child(2) { bottom: 32px; left: 32px; }
.why-stat-card:nth-child(3) { top: 50%; left: 28px; transform: translateY(-50%); }
.why-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); }
.why-stat-label { font-size: 12px; color: #888; }

/* =============================================
   PROCESS STEPS
============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(255,109,46,.1);
  transition: background var(--transition), color var(--transition);
}
.process-step:hover .step-num {
  background: var(--accent);
  color: var(--white);
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: #666; line-height: 1.6; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-wrapper {
  max-width: 820px;
  margin: 48px auto 0;
  position: relative;
}
.testimonial-slide {
  display: none;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  position: relative;
}
.testimonial-slide.active { display: block; }
.quote-mark {
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  opacity: .25;
  position: absolute;
  top: 20px; left: 36px;
}
.testimonial-text {
  font-size: 18px;
  color: #444;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.author-role { font-size: 13px; color: #888; }
.stars { color: #FFB800; font-size: 17px; letter-spacing: 2px; margin-bottom: 6px; }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  color: var(--accent);
}
.testi-btn:hover { background: var(--accent); color: var(--white); }
.testi-dots { display: flex; gap: 12px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testi-dot.active { background: var(--accent); transform: scale(1.4); }

/* =============================================
   LOCAL SEO AREA / CITIES
============================================= */
.cities-intro { max-width: 580px; margin: 0 auto 48px; text-align: center; color: #555; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.city-chip {
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.city-chip svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.city-chip:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* =============================================
   FAQ
============================================= */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,109,46,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* =============================================
   FINAL CTA
============================================= */
.cta-section {
  padding: var(--cta-pad) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,109,46,.08);
  top: -200px; right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(31,111,235,.1);
  bottom: -100px; left: -50px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #080F18;
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--accent); }
.social-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-map {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 120px;
  background: #1a2535;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
  .industries-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 1024px) {
  .hero-inner, .page-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { grid-column: 1 / 2; }
  .hero-visual, .hero-illustration { grid-column: 1 / 2; min-height: 320px; }
  .authority-grid { grid-template-columns: 1fr; gap: 32px; }
  .authority-content { grid-column: 1 / 2; }
  .authority-stats { grid-column: 1 / 2; grid-template-columns: repeat(2, 1fr); }
}

.header-phone:hover { color: var(--accent); }
@media (max-width: 768px) {
  
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; --cta-pad: 72px; }
  body { overflow-wrap: break-word; }
  .nav-menu, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero, .page-hero { padding: 60px 0 52px; }
  .hero-inner, .page-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { grid-column: 1 / 2; }
  .hero-visual, .hero-illustration { grid-column: 1 / 2; min-height: 280px; }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .authority-stats { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }

  .industries-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }

  .testimonial-slide { padding: 36px 24px 28px; }
  .testimonial-text { font-size: 16px; }

  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .authority-cards-grid { grid-template-columns: 1fr; gap: 24px; }
  .authority-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .metrics-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Comparison table mobile optimization */
  table { font-size: 13px !important; }
  th, td { padding: 10px 8px !important; }
}

/* =============================================
   CONTACT FORM
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
.contact-point-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-point-icon svg { width: 14px; height: 14px; }
.contact-form-wrap {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .02em;
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e4ea;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,109,46,.12);
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
}
.form-disclaimer {
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.6;
  margin-top: -8px;
}

.header-phone:hover { color: var(--accent); }
@media (max-width: 768px) {
  
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb-bar { background: var(--light-gray); border-bottom: 1px solid #e8eaed; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #777;
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #bbb; margin: 0 4px; }
.breadcrumb-current { color: var(--primary); font-weight: 600; }

/* =============================================
   UTILITY: SCREEN READER ONLY
============================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   THANK YOU PAGE
============================================= */
.thankyou-section { padding: 100px 0; text-align: center; }
.thankyou-icon { width: 80px; height: 80px; background: rgba(255,109,46,.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.thankyou-icon svg { width: 40px; height: 40px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thankyou-section h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px,5vw,56px); font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.thankyou-section p { font-size: 18px; color: #555; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }

/* =============================================
   SERVICE BLOCK (Location Pages)
============================================= */
.service-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  margin-bottom: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.service-block-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.service-block p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-link svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-link:hover { gap: 10px; }
.services-stack {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

/* =============================================
   SERVICE PILL (Case Studies)
============================================= */
.service-pill,
.service-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,109,46,.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}
.service-pill:hover {
  background: rgba(255,109,46,.2);
}
.service-pill svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-strip {
  text-align: center;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
}
.services-strip-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.services-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =============================================
   CASE STUDY - OVERVIEW GRID
============================================= */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.overview-card-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #888;
  margin-bottom: 8px;
}
.overview-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* =============================================
   CASE STUDY - CS LIST
============================================= */
.cs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.cs-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.cs-list-item svg {
  flex-shrink: 0;
}

/* =============================================
   CASE STUDY - RESULTS GRID
============================================= */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.result-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.result-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =============================================
   CASE STUDY - BEFORE VS AFTER
============================================= */
.bva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.bva-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.bva-col--before { border-top: 4px solid #ccc; }
.bva-col--after { border-top: 4px solid var(--accent); }
.bva-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.bva-heading svg {
  width: 20px; height: 20px;
}
.bva-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bva-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}
.bva-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.bva-icon--before {
  background: rgba(0,0,0,.1);
  color: #999;
}
.bva-icon--after {
  background: rgba(255,109,46,.15);
  color: var(--accent);
}

/* =============================================
   CASE STUDY - TESTIMONIAL
============================================= */
.testimonial-block {
  max-width: 700px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-quote {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-source {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}
.cta-band .cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band .cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   AUTHORITY / LOCATION CLASSES
============================================= */
.authority-body {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11,60,93,0.08), rgba(31,111,235,0.08));
}

/* =============================================
   ADDITIONAL CLASSES (index.html)
============================================= */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}
.checklist li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  margin-top: 2px;
}
.review-showcase {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 32px;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.local-pack-showcase {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

/* =============================================
   SERVICE HUB GRID (digital-marketing-tampa.html)
============================================= */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-hub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* =============================================
   WHY DIGITAL MARKETING (digital-marketing-tampa.html)
============================================= */
.why-dm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-dm-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-dm-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.pillar-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.pillar-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.why-dm-visual {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(11,60,93,.06), rgba(255,109,46,.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.dm-stat-card:nth-child(1) { top: 32px; right: 32px; }
.dm-stat-card:nth-child(2) { bottom: 32px; left: 32px; }
.dm-stat-card:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.dm-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.dm-stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* =============================================
   INDUSTRIES ROW (digital-marketing-tampa.html)
============================================= */
.industries-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.industry-hub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.industry-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.industry-hub-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-hub-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-hub-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.industry-hub-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.industry-link:hover { gap: 10px; }

/* =============================================
   LOCAL COVERAGE (digital-marketing-tampa.html)
============================================= */
.local-grid-wrap {
  margin-top: 32px;
}
.local-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

/* =============================================
   CONTACT PAGE (contact.html)
============================================= */
.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #888;
}
.contact-item-value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--secondary);
  text-decoration: none;
}
.contact-item-value a:hover {
  text-decoration: underline;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 16px;
  text-decoration: none;
}
.map-link:hover {
  text-decoration: underline;
}
.map-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-form-card select,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e4ea;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
}
.contact-form-card select:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,109,46,.12);
}

/* =============================================
   ABOUT PAGE TEAM
============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
.team-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   PAGE HERO INNER STATS
============================================= */
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* =============================================
   CASE STUDY CARD STYLES
============================================= */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.cs-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.cs-card-img {
  height: 200px;
  background: var(--light-gray);
  overflow: hidden;
}
.cs-card-body {
  padding: 24px;
}
.cs-industry {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.cs-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.cs-card-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.cs-result-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,109,46,.1);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.cs-result-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cs-result-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* =============================================
   SERVICES STRIP (case studies)
============================================= */
.services-strip {
  text-align: center;
  padding: 32px;
  background: var(--light-gray);
  border-radius: var(--radius);
  margin-top: 48px;
}
.services-strip-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.services-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =============================================
   CTA BAND (case studies)
============================================= */
.cta-band {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FAQ COLLAPSIBLE
============================================= */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--accent);
}
.faq-item.open .faq-toggle svg {
  stroke: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* =============================================
   INDUSTRY ICON FIX
============================================= */
.industry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   LOCAL CTA BAR
============================================= */
.local-cta-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}
.local-cta-bar p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.7;
}
.local-cta-bar .btn--sm {
  padding: 12px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

/* =============================================
   CONTACT POINTS (digital-marketing-tampa.html)
============================================= */
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
}
.contact-point-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-point-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   CONTACT INFO (digital-marketing-tampa.html)
============================================= */
.contact-info {
  padding-right: 24px;
}
.contact-info .section-title {
  margin-bottom: 16px;
}
.contact-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-wrap {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* =============================================
   HOW/WHY SECTION (Industry Pages)
============================================= */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}
.how-content {
  max-width: 700px;
}
.how-body {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}
.how-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.how-item {
  display: flex;
  gap: 16px;
}
.how-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-item-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.how-item-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.how-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-left: 4px solid var(--accent);
}
.hv-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hv-label {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-top: 4px;
}

/* =============================================
   RESULT CARD EXTENDED (Industry Pages)
============================================= */
.result-card-header {
  margin-bottom: 12px;
}
.result-num-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.result-card-body {
  text-align: left;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.result-industry {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  margin-bottom: 4px;
}
.result-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.result-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.results-cta {
  text-align: center;
  margin-top: 32px;
}

/* =============================================
   RESPONSIVE FIXES
============================================= */
@media (max-width: 1024px) {
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .why-dm-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-dm-visual { min-height: 300px; }
  .industries-row { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
}

.header-phone:hover { color: var(--accent); }
@media (max-width: 768px) {
  
}

@media (max-width: 768px) {
  .services-hub-grid { grid-template-columns: 1fr; }
  .why-dm-pillars { gap: 16px; }
  .pillar-item { flex-direction: column; align-items: center; text-align: center; }
  .pillar-num { margin-bottom: 8px; }
  .industries-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .local-cta-bar { flex-direction: column; text-align: center; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 28px; }
}

/* =============================================
   TEAM CARD FIX (about.html)
============================================= */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   AUTHORITY CARDS GRID (home page)
============================================= */
.authority-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.authority-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.authority-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.authority-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255,109,46,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.authority-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.authority-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.authority-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   MISCELLANEOUS FIXES
============================================= */
.cities-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

/* Fix for "Explore our digital marketing services" alignment */
.local-cta-bar p {
  margin: 0;
  line-height: 1.7;
}
