/* ================================================================
   VIR Automation — styles-v2.css
   Swiss Modernism + Minimal Design System
   Homepage-only stylesheet (does NOT affect other 59 pages)
   ================================================================ */

/* ── Font Import ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens (CSS Custom Properties) ───────────────────── */
:root {
  /* Color System */
  --navy-900:    #0B1220;
  --navy-800:    #111827;
  --navy-700:    #1E293B;
  --navy-600:    #1A2D4D;
  --emerald-500: #3AAF4F;
  --emerald-600: #2D8C3E;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --text-primary:#0F172A;
  --text-muted:  #64748B;
  --border:      #E2E8F0;
  --text-on-dark:#FFFFFF;
  --text-muted-dark: #94A3B8;
  --slate-300:   #CBD5E1;

  /* Legacy compat aliases (app.js / cookie-consent may reference) */
  --emerald-400: #3AAF4F;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Layout */
  --container-max: 1280px;
  --nav-height: 64px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Transitions */
  --ease-default: 200ms ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ── Skip Link (a11y) ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--emerald-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: top var(--ease-default);
}

.skip-link:focus {
  top: 8px;
}

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

/* ── Typography Helpers ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-500);
  margin-bottom: var(--sp-4);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--sp-8);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.section-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: transform 300ms ease;
}

.topbar.nav-hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.logo-text span:last-child {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links > a,
.nav-dropdown-trigger {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--ease-default);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  line-height: var(--nav-height);
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover,
.nav-links > a.active {
  color: var(--emerald-500);
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--emerald-500);
  border-radius: var(--radius-md);
  transition: background var(--ease-default);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--emerald-600);
}


/* ── Dropdown Overrides (replaces nav-ext.css) ───────────────── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--ease-default);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color var(--ease-default), background var(--ease-default);
}

.nav-dropdown-menu a:hover {
  color: var(--emerald-500);
  background: var(--off-white);
}

.nav-dropdown-menu .dropdown-flagship {
  color: var(--emerald-500);
  font-weight: 600;
}

.nav-dropdown-menu .dropdown-flagship:hover {
  color: var(--emerald-600);
  background: var(--off-white);
}

.dropdown-divider {
  border-top: 1px solid var(--border);
  margin: 4px 0;
}


/* ── Mobile Toggle ───────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-primary);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}


/* ── Mobile Menu Overlay ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-primary);
  transition: color var(--ease-default);
}

.mobile-menu-link:hover {
  color: var(--emerald-500);
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-4);
  height: 48px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background: var(--emerald-500);
  border-radius: var(--radius-md);
  transition: background var(--ease-default);
}

.mobile-menu-cta:hover {
  background: var(--emerald-600);
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--navy-900);
  min-height: auto;
  display: flex;
  align-items: center;
  padding: var(--sp-12) 0 var(--sp-10);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.hero-content {
  max-width: 680px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
}

.hero-badge-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* Hero Heading */
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.12;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-6);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  max-width: 560px;
  margin-bottom: var(--sp-10);
}

/* CTA Row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: var(--emerald-500);
  border-radius: var(--radius-md);
  transition: background var(--ease-default);
  white-space: nowrap;
}

.btn-primary-lg:hover {
  background: var(--emerald-600);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: border-color var(--ease-default), background var(--ease-default);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
}

/* Hero Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  padding-top: var(--sp-12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: calc(var(--sp-10) / -2);
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--emerald-500);
  line-height: 1.2;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted-dark);
  white-space: nowrap;
}


/* ================================================================
   SECTIONS — General
   ================================================================ */
.section {
  padding: var(--sp-12) 0;
}

.section--white {
  background: var(--white);
}

.section--off-white {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy-900);
}

.section--dark h2,
.section--dark .section-header p {
  color: var(--text-on-dark);
}

.section--dark .section-header p {
  color: var(--text-muted-dark);
}


/* ================================================================
   SERVICES GRID ("What We Do")
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-12) var(--sp-10);
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--ease-default), transform var(--ease-default);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.service-item:hover {
  border-color: var(--emerald-500);
  transform: translateY(-2px);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--emerald-500);
  margin-bottom: var(--sp-2);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-item h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--emerald-500);
  margin-top: var(--sp-1);
  transition: color var(--ease-default);
}

.service-link:hover {
  color: var(--emerald-600);
}


/* ================================================================
   INDUSTRIES GRID
   ================================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--ease-default), transform var(--ease-default);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.industry-card:hover {
  border-color: var(--emerald-500);
  transform: translateY(-2px);
}

.industry-card-icon {
  width: 24px;
  height: 24px;
  color: var(--emerald-500);
  margin-bottom: var(--sp-1);
}

.industry-card-icon svg {
  width: 24px;
  height: 24px;
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.flagship-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--emerald-500);
  background: rgba(58, 175, 79, 0.1);
  border-radius: 100px;
  white-space: nowrap;
  width: fit-content;
}


/* ================================================================
   WHY VIR
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-10);
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--ease-default), transform var(--ease-default);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.why-item:hover {
  border-color: var(--emerald-500);
  transform: translateY(-2px);
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--emerald-500);
  margin-bottom: var(--sp-2);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  padding: var(--sp-8) 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--emerald-500);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}


/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  background: var(--navy-900);
  padding: var(--sp-12) 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-4);
}

.cta-strip-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cta-ghost-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--ease-default);
}

.cta-ghost-link:hover {
  color: var(--text-on-dark);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-600);
  padding: var(--sp-16) 0 var(--sp-8);
  color: var(--text-muted-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

/* Footer Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-logo-img {
  max-height: 36px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  max-width: 280px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.footer-contact-info a,
.footer-contact-info span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--ease-default);
}

.footer-contact-info a:hover {
  color: var(--white);
}

.footer-contact-info svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Footer Link Columns */
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--ease-default);
}

.footer-col-links a:hover {
  color: var(--white);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--navy-600);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-legal {
  font-size: 13px;
  color: var(--text-muted-dark);
  max-width: 600px;
}

.footer-meta {
  display: flex;
  gap: var(--sp-6);
}

.footer-meta a {
  font-size: 13px;
  color: var(--text-muted-dark);
  transition: color var(--ease-default);
}

.footer-meta a:hover {
  color: var(--white);
}


/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
  padding: var(--sp-4) var(--sp-6);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-consent-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

.cookie-consent-content p a {
  color: var(--emerald-500);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.cookie-consent-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  border-radius: var(--radius-md);
  transition: background var(--ease-default);
}

.cookie-consent-actions .btn-primary {
  color: var(--white);
  background: var(--emerald-500);
}

.cookie-consent-actions .btn-primary:hover {
  background: var(--emerald-600);
}

.cookie-consent-actions .btn-outline {
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
}

.cookie-consent-actions .btn-outline:hover {
  background: var(--off-white);
}


/* ================================================================
   SCROLL ANIMATIONS (app.js compatibility)
   ================================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers (if used in markup) */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Utility */
.hidden {
  display: none;
}


/* ================================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .container {
    padding-left: var(--sp-8);
    padding-right: var(--sp-8);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 42px;
  }

  .hero-stats {
    gap: var(--sp-8);
  }

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

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8);
  }

  /* Stats */
  .stats-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex-basis: 50%;
    padding: var(--sp-6) 0;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  /* Footer → 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}


/* ================================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {
  .container {
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
  }

  .section {
    padding: var(--sp-8) 0;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: var(--sp-8) 0 var(--sp-6);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--sp-6);
    align-items: flex-start;
  }

  .hero-stat + .hero-stat::before {
    display: none;
  }

  /* Grids → 1 column */
  .services-grid,
  .industries-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  /* Stats */
  .stat-item {
    flex-basis: 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  /* CTA Strip */
  .cta-strip h2 {
    font-size: 28px;
  }

  .cta-strip {
    padding: var(--sp-16) 0;
  }

  /* Footer → 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
