/* ============================================
   GDG Media Management - Global Stylesheet
   Brand Palette: #81d11a (GDG Green), #0D0D0D (Black), Greys
   ============================================ */

:root {
  /* ── Brand Colors ── */
  --brand-green: #81d11a;
  --brand-green-dark: #6ab514;
  --brand-green-light: #eef8d8;
  --brand-green-glow: rgba(129,209,26,0.18);

  /* ── Dark / Background Tones ── */
  --brand-black: #0D0D0D;
  --brand-dark: #141414;
  --brand-dark-mid: #1C1C1C;
  --brand-dark-card: #222222;

  /* ── Legacy aliases (keep so existing references compile) ── */
  --brand-blue: #81d11a;
  --brand-blue-dark: #6ab514;
  --brand-blue-light: #eef8d8;
  --brand-navy: #0D0D0D;
  --brand-navy-mid: #1C1C1C;
  --accent-cyan: #81d11a;
  --accent-green: #a2e63f;

  /* ── Neutral Text ── */
  --text-primary: #111111;
  --text-secondary: #4B4B4B;
  --text-muted: #767676;

  /* ── Utility ── */
  --white: #ffffff;
  --gray-50: #F8F8F8;
  --gray-100: #F0F0F0;
  --gray-200: #E2E2E2;
  --gray-300: #C8C8C8;

  /* ── Design Tokens ── */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --shadow-green: 0 8px 28px rgba(129,209,26,0.28);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
  --font-sans: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════
   ANIMATION SYSTEM
   All entrance, ambient & interaction anims
   ══════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.7) translateY(16px); }
  70%  { transform: scale(1.04) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealWidth {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(129,209,26,0); }
  50%       { box-shadow: 0 0 0 10px rgba(129,209,26,0.18); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes hero-badge-in {
  0%   { opacity: 0; transform: translateY(-12px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-h1-in {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-sub-in {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-actions-in {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-stats-in {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes nav-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes counter-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
@keyframes underline-grow {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes rotate-icon {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Scroll-reveal base states ──
   Elements start hidden; JS adds .is-visible when in viewport */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.from-scale { transform: scale(0.9); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for sibling groups */
.reveal-group > *:nth-child(1) { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-group > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-group > *:nth-child(8) { transition-delay: 0.56s; }

/* ── Hero entrance animations ── */
.hero-badge    { animation: hero-badge-in   0.7s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
.hero h1       { animation: hero-h1-in      0.8s cubic-bezier(0.22,1,0.36,1)    0.42s both; }
.hero-sub      { animation: hero-sub-in     0.7s cubic-bezier(0.22,1,0.36,1)    0.62s both; }
.hero-actions  { animation: hero-actions-in 0.7s cubic-bezier(0.22,1,0.36,1)    0.78s both; }
.hero-stats    { animation: hero-stats-in   0.7s cubic-bezier(0.22,1,0.36,1)    0.92s both; }

/* ── Nav entrance ── */
.nav { animation: nav-slide-down 0.55s cubic-bezier(0.22,1,0.36,1) 0s both; }

/* -- Nav scrolled state (shrinks on scroll - added by JS) -- */
.nav.scrolled {
  background: rgba(13,13,13,0.97) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

/* ── Section header underline accent ── */
.section-header h2::after,
.section-header.centered h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 48px;
  background: var(--brand-green);
  border-radius: 2px;
  margin-top: 0.75rem;
  transform-origin: left;
  animation: none; /* triggered by .is-visible on parent */
}
.section-header.centered h2::after { margin-left: auto; margin-right: auto; }
.section-header.revealed h2::after {
  animation: revealWidth 0.55s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

/* ── Card hover lifts ── */
.service-card,
.case-card,
.team-card,
.why-item,
.testimonial-card,
.process-step,
.service-icon-card {
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.32s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease;
  will-change: transform;
}
.service-card:hover    { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card:hover       { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card:hover       { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-item:hover        { transform: translateY(-4px); }
.process-step:hover    { transform: translateY(-4px); }
.testimonial-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon-card:hover { transform: translateY(-5px); }

/* ── Icon spin on card hover ── */
.service-card:hover .service-icon,
.service-icon-card:hover .sic-icon {
  animation: rotate-icon 0.5s cubic-bezier(0.34,1.56,0.64,1) 1;
}

/* ── Button press & glow ── */
.btn {
  transition: transform 0.18s ease, box-shadow 0.22s ease,
              background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary:hover { box-shadow: var(--shadow-green); }

/* ── Logo bar scroll animation ── */
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Marquee wrapper - overflow hidden, full width */
.logo-bar-track {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-bar-logos {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 4rem;
  animation: logo-scroll 32s linear infinite;
}
.logo-bar-logos:hover {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .logo-bar-logos { animation: none; }
}
/* Legacy static fallback when .logo-bar-track is absent */
.logo-bar > .container > .logo-bar-logos {
  animation: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

/* ── Counter pop on finish ── */
.counter-popped { animation: counter-pop 0.45s cubic-bezier(0.34,1.56,0.64,1); }

/* ── Eyebrow tag entrance ── */
.eyebrow {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ── Photo split image reveal ── */
.photo-split-img-wrap {
  overflow: hidden;
}
.photo-split-img-wrap img {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  transform-origin: center;
}

/* ── Page hero entrance ── */
.page-hero-content {
  animation: slideUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

/* ── Stat numbers ambient pulse ── */
.hero-stat-num span,
.split-visual-stat {
  display: inline-block;
}

/* ── Green accent line under h1 in hero ── */
.hero h1 span {
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
  transform-origin: left;
  animation: revealWidth 0.6s cubic-bezier(0.22,1,0.36,1) 1.1s both;
}

/* ── Footer links hover underline ── */
.footer-link {
  position: relative;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--brand-green);
  transition: width 0.25s ease;
}
.footer-link:hover::after { width: 100%; }

/* ── CTA section pulse ring ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  border-radius: 50%;
  border: 1px solid rgba(129,209,26,0.12);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-secondary); line-height: 1.75; }

/* ── Layout Helpers ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ── Section Labels ── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.eyebrow-white {
  color: var(--brand-green);
  background: var(--brand-green-glow);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-green);
  color: var(--brand-black);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-outline {
  background: transparent;
  color: var(--brand-green-dark);
  border-color: var(--brand-green);
}
.btn-outline:hover {
  background: var(--brand-green);
  color: var(--brand-black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--brand-black);
}
.btn-white:hover {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
  transform: translateY(-2px);
}
.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: var(--brand-green);
  color: var(--brand-green);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.card-dark {
  background: var(--brand-dark-mid);
  border-color: rgba(255,255,255,0.07);
  color: var(--white);
}
.card-dark p { color: rgba(255,255,255,0.65); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(129,209,26,0.12);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.nav-logo-text .logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--brand-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  opacity: 0.95;
}
.footer-logo .logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-logo .logo-sub {
  font-size: 0.6rem;
  color: var(--brand-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--brand-green); background: var(--brand-green-glow); }
.nav-link.active { color: var(--brand-green); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid rgba(255,255,255,0.5);
  margin-left: 5px;
  vertical-align: middle;
  transition: var(--transition);
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(4px);
  background: var(--brand-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 1rem 1rem; /* extra top padding bridges the gap visually */
  margin-top: 0;             /* no gap - use padding-top instead */
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(129,209,26,0.15);
}

/* Invisible bridge fills the space between nav link bottom and dropdown top */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px; /* covers any sub-pixel gap */
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--brand-green-glow);
  color: var(--brand-green);
}
.dropdown-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(129,209,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--brand-green); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brand-black);
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
}
.mobile-nav-links { flex: 1; }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--brand-green); }
.mobile-nav-sub {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
.mobile-nav-sub .mobile-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border: none;
  padding: 0.6rem 0;
}
.mobile-nav-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, var(--brand-black) 0%, #0F0F0F 55%, #131a06 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(129,209,26,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(129,209,26,0.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  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: 60px 60px;
  pointer-events: none;
}
/* Hero two-column layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* Mascot column */
.hero-mascot-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  /* Extend below the section so the mascot "stands" at the bottom edge */
  margin-bottom: -5rem;
  align-self: flex-end;
}
.hero-mascot-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,209,26,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-mascot-img {
  position: relative;
  z-index: 1;
  width: clamp(260px, 28vw, 420px);
  height: auto;
  /* Trim the white padding the PNG carries */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  animation: mascot-float 4s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Collapse to single-column on tablet/mobile */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-mascot-wrap {
    display: none;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-green-glow);
  border: 1px solid rgba(129,209,26,0.3);
  color: var(--brand-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--brand-green); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--brand-green); }
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── Trusted by / Logo bar ── */
.logo-bar {
  background: var(--gray-50);
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logo-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
/* logo-bar-logos base - animated version lives inside .logo-bar-track */
.logo-bar-track .logo-bar-logos {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

/* ── Real client logo images ── */
.logo-bar-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.logo-bar-img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ── Fallback text pill (kept for any pages still using text) ── */
.logo-bar-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
}
.logo-bar-logo:hover { color: var(--brand-green-dark); border-color: var(--brand-green); }

/* ── Services Grid ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  transform: translateY(-6px);
}
/* service-card-icon used in inner pages */
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-green-dark);
  margin-bottom: 1.25rem;
}
/* legacy alias */
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-green-dark);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  transition: var(--transition);
}
.service-card .learn-more:hover { gap: 0.65rem; }

/* ── Stats / Results ── */
.stats-section {
  background: linear-gradient(145deg, var(--brand-black), var(--brand-dark));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(129,209,26,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.375rem;
  line-height: 1.5;
}
/* alias used in city pages */
.stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--brand-green-light);
  font-family: serif;
  line-height: 1;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-black), var(--brand-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Case Studies ── */
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  transform: translateY(-4px);
}
.case-card-header {
  background: linear-gradient(135deg, var(--brand-black), #1a2200);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.case-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(129,209,26,0.12);
  border-radius: 50%;
}
/* city page simplified case card */
.case-card-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: var(--brand-green-glow);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}
.case-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: rgba(129,209,26,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}
.case-card-header h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.case-card-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-100);
}
.case-result {
  background: var(--white);
  padding: 1.25rem;
  text-align: center;
}
.case-result-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-green-dark);
  line-height: 1;
}
.case-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
/* simplified city page case card result row */
.case-card > h4 {
  color: var(--text-primary);
}
.case-card-results > span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--brand-green-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  margin-right: 0.5rem;
}
.case-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card-body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.case-card-footer {
  padding: 1rem 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-service-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ── Process Steps ── */
.process-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.process-step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.process-step-num {
  width: 44px;
  height: 44px;
  background: var(--brand-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 1.25rem;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p { font-size: 0.875rem; }

/* ── CTA Sections ── */
.cta-section {
  background: linear-gradient(145deg, var(--brand-black) 0%, #111 40%, #0e1a00 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(129,209,26,0.18);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(129,209,26,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 45%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--brand-black);
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(129,209,26,0.1);
}
.footer-main {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--brand-green); color: var(--brand-black); }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-link:hover { color: var(--brand-green); transform: translateX(3px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.875rem;
}
.footer-contact-icon {
  color: var(--brand-green);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text { font-size: 0.825rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.825rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--brand-green); }

/* ── Newsletter ── */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--brand-green); background: rgba(255,255,255,0.09); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(145deg, var(--brand-black) 0%, #111 55%, #0e1a00 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(129,209,26,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ── Service Page Specific ── */
.service-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.service-bullet {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}
.service-bullet i {
  color: var(--brand-green-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--brand-green); box-shadow: 0 0 0 1px var(--brand-green-light); }
.feature-item h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.feature-item p { font-size: 0.85rem; }

/* ── About page ── */
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--brand-black) 0%, #1a2200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(129,209,26,0.3);
  border-bottom: 2px solid var(--brand-green);
}
.team-info { padding: 1.5rem; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--brand-green-dark); font-weight: 600; }

/* ── Contact form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(129,209,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--brand-green);
}
.form-success i { font-size: 2rem; margin-bottom: 0.75rem; }

/* ── Contact info cards ── */
.contact-info-card {
  background: var(--brand-dark-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--brand-green); box-shadow: 0 0 0 1px var(--brand-green); }
.contact-info-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-green-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-green);
  margin: 0 auto 1rem;
}
.contact-info-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: var(--transition); }
.contact-info-card a:hover { color: var(--brand-green); }
.contact-info-card p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ── Podcast quick-nav scroll bar ── */
.podcast-quicknav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.podcast-quicknav::-webkit-scrollbar { display: none; }
.podcast-quicknav-inner {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  flex-wrap: nowrap;
  min-width: max-content;
}

/* ── Podcast ── */
.podcast-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.podcast-platform:hover { box-shadow: var(--shadow-md); border-color: var(--brand-green); color: var(--brand-green-dark); }
.podcast-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--brand-green-light); color: var(--brand-green-dark); }
.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-answer.open { display: block; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--brand-green); }
.breadcrumb-sep { color: rgba(255,255,255,0.22); }

/* ── Section headers ── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p { max-width: 560px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* ── Split / Two-col sections ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-visual {
  background: linear-gradient(145deg, var(--brand-black), #111 50%, #0e1a00);
  border-radius: var(--border-radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(129,209,26,0.15);
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(129,209,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.split-visual-inner { text-align: center; position: relative; z-index: 1; }
.split-visual-icon {
  font-size: 4rem;
  color: rgba(129,209,26,0.35);
  display: block;
  margin-bottom: 1rem;
}
.split-visual-stat {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, white 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.split-visual-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.split-content .eyebrow { margin-bottom: 0.875rem; }
.split-content h2 { margin-bottom: 1rem; }
.split-content p { margin-bottom: 1.5rem; }

/* ── Industries ── */
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.industry-tag:hover { border-color: var(--brand-green); color: var(--brand-green-dark); background: var(--brand-green-light); }
.industries-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Industry Cards ── */
.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.industry-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-green-dark);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.industry-card:hover .industry-card-icon {
  background: var(--brand-green);
  color: var(--brand-black);
}
.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.industry-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.industry-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.industry-card:hover .industry-card-link { gap: 0.65rem; }
@media (max-width: 1100px) {
  .industry-card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .industry-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .industry-card-grid { grid-template-columns: 1fr; }
}

/* ── Why choose section ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-item {
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.why-item:hover { background: rgba(129,209,26,0.08); border-color: rgba(129,209,26,0.22); }
.why-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(129,209,26,0.12);
  border: 1px solid rgba(129,209,26,0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-green);
  margin-bottom: 1.1rem;
  transition: var(--transition);
}
.why-item:hover .why-item-icon {
  background: rgba(129,209,26,0.22);
  border-color: rgba(129,209,26,0.5);
  color: #a2e63f;
}
.why-item h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--brand-green);
  color: var(--brand-black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-green);
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--brand-green-dark); }

/* ═══════════════════════════════════════════
   GOOGLE REVIEWS SLIDER
   ═══════════════════════════════════════════ */

/* Section wrapper */
.reviews-section {
  background: var(--brand-black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(129,209,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Section header */
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-header .eyebrow { color: var(--brand-green); margin-bottom: 0.75rem; }
.reviews-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.reviews-header p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 1.25rem; font-size: 1rem; }

/* Google badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  margin: 0 auto;
}
.google-rating-badge .google-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.google-logo-g { color: #4285F4; }
.google-logo-o1 { color: #EA4335; }
.google-logo-o2 { color: #FBBC05; }
.google-logo-g2 { color: #34A853; }
.google-logo-l { color: #EA4335; }
.google-logo-e { color: #4285F4; }
.google-rating-stars { color: #FBBC05; font-size: 0.95rem; letter-spacing: 1px; }
.google-rating-score { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.google-rating-count { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* Slider track */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}

/* Left/right fade edges */
.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--brand-black), transparent);
}
.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--brand-black), transparent);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual review card */
.review-card {
  flex: 0 0 340px;
  background: var(--brand-dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: var(--transition);
  cursor: default;
}
.review-card:hover {
  border-color: rgba(129,209,26,0.25);
  background: #272727;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Card top row: avatar + name + date */
.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-black);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.15rem;
}

/* Google G icon on top-right */
.review-google-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.review-google-icon svg {
  width: 28px;
  height: 28px;
}

/* Stars */
.review-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 1;
}

/* Review text */
.review-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Navigation controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.reviews-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.reviews-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--brand-black);
  transform: scale(1.08);
}
.reviews-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Dot indicators */
.reviews-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}
.reviews-dot.active {
  background: var(--brand-green);
  width: 22px;
  border-radius: 4px;
}

/* Auto-play progress bar */
.reviews-progress {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.reviews-progress-bar {
  height: 100%;
  background: var(--brand-green);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

/* ── Responsive overrides for slider ── */
@media (max-width: 900px) {
  .review-card { flex: 0 0 290px; padding: 1.4rem; }
  .reviews-slider-wrap::before,
  .reviews-slider-wrap::after { width: 40px; }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 calc(100vw - 3rem); }
  .reviews-controls { gap: 0.75rem; }
  .reviews-slider-wrap::before,
  .reviews-slider-wrap::after { display: none; }
}

/* ── Photo Grid / Gallery Sections ── */
.photo-grid-section {
  padding: 5rem 0;
}
/* 3-up mosaic grid */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.photo-mosaic-item {
  overflow: hidden;
  position: relative;
}
.photo-mosaic-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.photo-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-mosaic-item:hover img {
  transform: scale(1.04);
}

/* 2-col photo + text split */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.photo-split.reverse {
  direction: rtl;
}
.photo-split.reverse > * {
  direction: ltr;
}
.photo-split-img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.photo-split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-split-img-wrap:hover img {
  transform: scale(1.03);
}
/* Decorative accent corner */
.photo-split-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(129,209,26,0.15);
  pointer-events: none;
}
.photo-split-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(129,209,26,0.25);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.photo-split-badge i {
  color: var(--brand-green);
}

/* Inline photo strip - horizontal scroll row */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.photo-strip-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.photo-strip-item:hover img {
  transform: scale(1.05);
}

/* Single accent photo used in service-area pages */
.section-photo-accent {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 3rem;
}
.section-photo-accent img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.section-photo-accent-caption {
  background: var(--brand-dark);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.section-photo-accent-caption i {
  color: var(--brand-green);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .photo-mosaic-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .photo-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .photo-split.reverse { direction: ltr; }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .photo-strip-item:last-child {
    display: none;
  }
}
@media (max-width: 540px) {
  .photo-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-mosaic-item:first-child { grid-column: 1; grid-row: 1; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item:last-child { display: block; }
}

/* ── Utilities ── */
.bg-dark { background: var(--brand-black); }
.bg-dark-mid { background: var(--brand-dark-mid); }
.bg-gray { background: var(--gray-50); }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* -- Overflow guard - prevents horizontal scroll on all pages -- */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Safe inline <br> removal on mobile ── */
@media (max-width: 600px) {
  h1 br, h2 br { display: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1200px  → large desktop (base styles apply)
   1100px  → nav collapses to hamburger (prevents wrapping)
   1024px  → small laptop / large tablet landscape
    900px  → tablet landscape
    768px  → tablet portrait / large phone
    600px  → large phone
    480px  → small phone
    380px  → very small phone
   ══════════════════════════════════════════ */

/* -- 1100px: Nav collapse - switch to hamburger before items can wrap -- */
@media (max-width: 1100px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .dropdown-menu { display: none !important; }
}

/* ── 1024px: Small laptop / large tablet ── */
@media (max-width: 1024px) {
  /* Container */
  .container { padding: 0 2rem; }

  /* Grids */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Splits */
  .split-section { gap: 3rem; }

  /* Nav: slightly tighter (toggle already showing at 1100px) */
  .nav-inner { padding: 0 2rem; }
}

/* ── 900px: Tablet landscape ── */
@media (max-width: 900px) {
  /* Sections */
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .section-sm { padding: 2.5rem 0; }

  /* Hero */
  .hero { padding-top: 110px; padding-bottom: 3.5rem; }
  .page-hero { padding: 7rem 0 4rem; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  /* Service feature grid */
  .service-feature-grid { grid-template-columns: 1fr; }

  /* Split section visual */
  .split-visual { min-height: 280px; }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process steps */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Dropdown */
  .dropdown-menu { min-width: 420px; }
}

/* ── 768px: Tablet portrait / large phone ── */
@media (max-width: 768px) {
  /* Nav (already hidden at 1100px - only padding tweak needed here) */
  .nav-inner { padding: 0 1.25rem; }
  .dropdown-menu { display: none !important; }

  /* Container */
  .container { padding: 0 1.25rem; }

  /* Typography */
  h4 { font-size: 1.05rem; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .section-sm { padding: 2rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero { min-height: auto; padding: 7.5rem 0 3.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-content { max-width: 100%; }
  .page-hero { padding: 6.5rem 0 3.5rem; }
  .page-hero p { font-size: 1rem; }

  /* Buttons - prevent overflow on mobile */
  .btn-lg { padding: 0.95rem 2rem; font-size: 0.975rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Split sections */
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section.reverse { direction: ltr; }
  .split-visual { min-height: 220px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3.5rem 0 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }

  /* Service bullets */
  .service-bullets { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; }

  /* Case cards */
  .case-card-body { padding: 1.25rem 1.5rem; }
  .case-card-footer { padding: 0.875rem 1.5rem; }

  /* Logo bar */
  .logo-bar-logos { gap: 0.75rem; }
  .logo-bar { padding: 2rem 0; }

  /* Stats section */
  .stats-section .section { padding: 3rem 0; }

  /* CTA actions */
  .cta-actions { gap: 0.75rem; }

  /* Scroll to top */
  .scroll-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ── Inline margin overrides at tablet ── */
@media (max-width: 768px) {
  /* Services page group gaps */
  .grid-3[style*="margin-bottom:4rem"],
  .grid-3[style*="margin-bottom: 4rem"] { margin-bottom: 2.5rem !important; }
  .grid-4[style*="margin-bottom:3rem"],
  .grid-4[style*="margin-bottom: 3rem"],
  .grid-4[style*="margin-bottom: 3rem;"],
  .grid-4[style*="margin-bottom:3rem;"] { margin-bottom: 2rem !important; }
  /* Stats section header */
  .stats-section .text-center[style*="margin-bottom:3rem"],
  .stats-section .text-center[style*="margin-bottom: 3rem"] { margin-bottom: 1.75rem !important; }
  /* Podcast embed padding */
  [style*="padding:3rem;"],
  [style*="padding: 3rem;"] { padding: 1.75rem 1.25rem !important; }
}

@media (max-width: 480px) {
  /* Services page group gaps */
  .grid-3[style*="margin-bottom:4rem"],
  .grid-3[style*="margin-bottom: 4rem"] { margin-bottom: 2rem !important; }
  /* Services section headers on mobile */
  .section-header[style*="margin-bottom:2rem"],
  .section-header[style*="margin-bottom: 2rem"] { margin-bottom: 1.5rem !important; }
}

/* ── 600px: Large phone ── */
@media (max-width: 600px) {
  /* Container */
  .container { padding: 0 1rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
  .section-sm { padding: 1.75rem 0; }

  /* Hero */
  .hero { padding: 7rem 0 3rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-top: 1.5rem;
  }
  .page-hero { padding: 6rem 0 3rem; }

  /* Hero actions - stack on small phones */
  .hero-actions { gap: 0.75rem; }

  /* Buttons */
  .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
  .btn-sm { padding: 0.55rem 1rem; font-size: 0.825rem; }

  /* Cards */
  .card { padding: 1.5rem; }
  .service-card { padding: 1.5rem; }
  .process-step { padding: 1.5rem; }
  .contact-form { padding: 1.25rem; }

  /* Feature items */
  .feature-item { padding: 1.25rem; }

  /* Why items */
  .why-item { padding: 1.25rem; }

  /* Footer */
  .footer-main { gap: 1.75rem; }
  .footer-col h5 { margin-bottom: 0.875rem; }

  /* Section headers */
  .section-header { margin-bottom: 1.75rem; }
  .section-header p { font-size: 0.975rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card::before { font-size: 3.5rem; top: 0.75rem; right: 1rem; }

  /* Logo bar logos - smaller */
  .logo-bar-logo { font-size: 0.8rem; padding: 0.4rem 0.875rem; }

  /* CTA */
  .cta-section p { font-size: 0.975rem; }

  /* Stats */
  .stat-num { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── 480px: Small phone ── */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 0.875rem; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-lg { padding: 3.5rem 0; }
  .section-sm { padding: 1.5rem 0; }

  /* Hero */
  .hero { padding: 6.5rem 0 2.5rem; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* CTA actions */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Forms */
  .contact-form { padding: 1rem; border-radius: var(--border-radius); }
  .form-group { margin-bottom: 1rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* Cards */
  .card { padding: 1.25rem; }
  .service-card { padding: 1.25rem; }
  .process-step { padding: 1.25rem; }
  .why-item { padding: 1.1rem; }
  .feature-item { padding: 1.1rem; }
  .contact-info-card { padding: 1.5rem; }
  .testimonial-card { padding: 1.25rem; }

  /* Split visual */
  .split-visual { min-height: 180px; }
  .split-visual-stat { font-size: 2.75rem; }
  .split-visual-icon { font-size: 3rem; }

  /* Scroll to top */
  .scroll-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 0.875rem; }

  /* Section headers */
  .section-header { margin-bottom: 1.5rem; }

  /* Logo bar */
  .logo-bar-logos { gap: 0.5rem; }
  .logo-bar-logo { font-size: 0.75rem; padding: 0.35rem 0.75rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; }

  /* Stats grid */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }

  /* Footer brand social */
  .footer-social { flex-wrap: wrap; }
}

/* ── 380px: Very small phone ── */
@media (max-width: 380px) {
  /* Container */
  .container { padding: 0 0.75rem; }

  /* Nav */
  .nav-inner { padding: 0 0.875rem; }
  .nav-logo-text { display: none; }

  /* Sections */
  .section { padding: 2.25rem 0; }

  /* Hero */
  .hero { padding: 6rem 0 2.25rem; }
  .page-hero { padding: 5rem 0 2.25rem; }

  /* Buttons */
  .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.9rem; }

  /* Footer */
  .footer-main { gap: 1.25rem; }

  /* Stats */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Cards */
  .service-card { padding: 1rem; }
  .process-step { padding: 1rem; }
  .card { padding: 1rem; }
}
