/* ============================================================
   Electron Cybersecurity — style.css
   Dark, futuristic, premium cybersecurity aesthetic
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Type Scale (fluid clamp) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing (4px system) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* === DARK MODE (default) === */
:root,
[data-theme="dark"] {
  --color-bg: #0a0e1a;
  --color-surface: #111827;
  --color-surface-2: #1a2332;
  --color-surface-3: #1e293b;
  --color-border: #2a3548;
  --color-border-subtle: #1e2d42;
  --color-divider: #1c2a3d;

  --color-text: #f1f5f9;
  --color-text-muted: #8892a4;
  --color-text-faint: #4a5568;

  --color-crimson: #c41e2e;
  --color-crimson-hover: #dc2f3f;
  --color-crimson-active: #a81a28;
  --color-crimson-glow: rgba(196, 30, 46, 0.25);

  --color-gold: #c9a84c;
  --color-gold-light: #e8d48a;
  --color-gold-glow: rgba(201, 168, 76, 0.2);

  --color-cyan: #06b6d4;
  --color-cyan-glow: rgba(6, 182, 212, 0.12);
  --color-cyan-subtle: rgba(6, 182, 212, 0.06);

  --color-primary: #c41e2e;
  --color-primary-hover: #dc2f3f;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-red: 0 0 30px rgba(196, 30, 46, 0.15);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.12);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.1);
}

/* === LIGHT MODE === */
[data-theme="light"] {
  --color-bg: #f5f7fa;
  --color-surface: #ffffff;
  --color-surface-2: #f0f2f5;
  --color-surface-3: #e8ecf0;
  --color-border: #d1d5db;
  --color-border-subtle: #e5e7eb;
  --color-divider: #e2e5e9;

  --color-text: #111827;
  --color-text-muted: #4b5563;
  --color-text-faint: #9ca3af;

  --color-crimson: #b91c2c;
  --color-crimson-hover: #991b2a;
  --color-crimson-active: #7f1d22;
  --color-crimson-glow: rgba(185, 28, 44, 0.12);

  --color-gold: #a08535;
  --color-gold-light: #c9a84c;
  --color-gold-glow: rgba(160, 133, 53, 0.1);

  --color-cyan: #0891b2;
  --color-cyan-glow: rgba(8, 145, 178, 0.08);
  --color-cyan-subtle: rgba(8, 145, 178, 0.04);

  --color-primary: #b91c2c;
  --color-primary-hover: #991b2a;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow-red: 0 0 30px rgba(185, 28, 44, 0.08);
  --shadow-glow-gold: 0 0 30px rgba(160, 133, 53, 0.06);
  --shadow-glow-cyan: 0 0 30px rgba(8, 145, 178, 0.06);
}

/* === GLOBAL STYLES === */
body {
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

/* === SECTION LABEL === */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-crimson);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 68ch;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-interactive);
}

.btn-primary {
  background: var(--color-crimson);
  color: #fff;
  border-color: var(--color-crimson);
}
.btn-primary:hover {
  background: var(--color-crimson-hover);
  border-color: var(--color-crimson-hover);
  box-shadow: var(--shadow-glow-red);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-1px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: all 0.3s ease;
}

[data-theme="light"] .nav {
  background: rgba(245, 247, 250, 0.85);
}

.nav.scrolled {
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-brand img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-crimson);
  transition: width var(--transition-interactive);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-phone {
  display: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

/* Mobile menu */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: calc(var(--space-20) + var(--space-8)) var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: block;
}

.mobile-menu .btn {
  margin-top: var(--space-4);
  text-align: center;
  justify-content: center;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-top: var(--space-4);
}

.mobile-menu-phone svg {
  color: var(--color-gold);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-20) + var(--space-8)) 0 var(--space-16);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated gradient */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(196, 30, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 50% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  animation: heroGlow 12s ease-in-out infinite alternate;
}

[data-theme="light"] .hero-bg::before {
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(185, 28, 44, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(8, 145, 178, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 50% 80%, rgba(160, 133, 53, 0.03) 0%, transparent 60%);
}

@keyframes heroGlow {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

/* Grid pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

[data-theme="light"] .hero-bg::after {
  background-image: 
    linear-gradient(rgba(8, 145, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 145, 178, 0.06) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

.hero-logo {
  width: 120px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}

@media (min-width: 768px) {
  .hero-logo {
    width: 160px;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  max-width: 18ch;
  line-height: 1.05;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-crimson);
}

.hero-subtext {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Hero stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  width: 100%;
  max-width: 900px;
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-subtle);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-crimson);
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  letter-spacing: 0.02em;
}

/* === THREAT SECTION === */
.threats {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  position: relative;
}

.threats-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.threats-header .section-subtitle {
  margin: 0 auto;
}

.threats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .threats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .threats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.threat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-crimson), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.threat-card:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.threat-card:hover::before {
  opacity: 1;
}

.threat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-crimson);
}

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

.threat-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.threat-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === SERVICES === */
.services {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
  position: relative;
}

[data-theme="light"] .services {
  background: var(--color-surface-2);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-slow);
  position: relative;
}

[data-theme="light"] .service-card {
  background: var(--color-surface);
}

.service-card:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-cyan);
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === WHY ELECTRON === */
.why-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--color-gold-glow), transparent);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-slow);
}

.why-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow-gold);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: #0a0e1a;
}

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

.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === SB 2610 CALLOUT === */
.sb2610-callout {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: linear-gradient(135deg, #1a0a0e 0%, var(--color-bg) 40%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .sb2610-callout {
  background: linear-gradient(135deg, #fdf2f2 0%, var(--color-surface) 40%, #f5f7fa 100%);
}

.sb2610-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, var(--color-crimson-glow), transparent);
  pointer-events: none;
}

.sb2610-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.sb2610-shield {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  box-shadow: 0 0 40px var(--color-crimson-glow);
  color: #fff;
}

.sb2610-shield svg {
  width: 32px;
  height: 32px;
}

.sb2610-inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.sb2610-inner p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

/* === INDUSTRIES === */
.industries {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.industries-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.industry-card:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-gold);
}

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

.industry-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.industry-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.industry-stat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border-subtle);
}

.industry-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-crimson);
  flex-shrink: 0;
}

.industry-stat span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* === PROCESS === */
.process {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
}

[data-theme="light"] .process {
  background: var(--color-surface-2);
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-crimson), #8a1520);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-glow-red);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 36ch;
  margin: 0 auto;
}

/* Process connector line (desktop only) */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -12%;
    width: 24%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-crimson), var(--color-border-subtle));
    pointer-events: none;
  }
}

/* === CONTACT CTA === */
.contact-cta {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  position: relative;
}

.contact-cta-inner {
  text-align: center;
  margin-bottom: var(--space-12);
}

.contact-cta-inner .section-title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-inner .section-subtitle {
  margin: 0 auto;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-option {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-slow);
}

.contact-option:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-option h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.contact-phone {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

.contact-email {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-email a {
  color: var(--color-cyan);
}

.contact-email a:hover {
  text-decoration: underline;
}

/* === FOOTER === */
.footer {
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
}

[data-theme="light"] .footer {
  background: var(--color-surface-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-brand img {
  width: 48px;
  height: auto;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col ul a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}

.footer-col ul a:hover {
  color: var(--color-text);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}

.footer-social a:hover {
  background: var(--color-crimson);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

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

.footer-bottom a:hover {
  color: var(--color-text);
}

/* === SCROLL REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* === UTILITY === */
.text-gold { color: var(--color-gold); }
.text-crimson { color: var(--color-crimson); }
.text-cyan { color: var(--color-cyan); }

/* Horizontal rule with gradient */
.hr-gradient {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}
