/* ============================================================
   ELECTRON CYBERSECURITY — Design Tokens & Component Styles
   Brand: Deep navy + crimson red + silver/white
   ============================================================ */

/* --- Type Scale (Fluid) --- */
:root {
  --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 base) --- */
  --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;

  /* --- 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);

  /* --- Content Widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* --- Fonts --- */
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ============================================================
   COLOR SYSTEM — Electron Brand
   Navy + Crimson Red + Silver
   ============================================================ */
:root, [data-theme="light"] {
  --color-bg:             #f8f9fb;
  --color-surface:        #ffffff;
  --color-surface-2:      #f1f3f7;
  --color-surface-offset: #e8ecf2;
  --color-divider:        #d5dbe5;
  --color-border:         #c5cdd9;

  --color-text:           #0f1729;
  --color-text-muted:     #5a6578;
  --color-text-faint:     #99a3b4;
  --color-text-inverse:   #f8f9fb;

  /* Primary — Deep Navy */
  --color-primary:        #0f1729;
  --color-primary-hover:  #1a2744;
  --color-primary-active: #0a0f1c;

  /* Accent — Crimson Red (Electron brand) */
  --color-accent:         #c41e2e;
  --color-accent-hover:   #a31824;
  --color-accent-active:  #87131d;
  --color-accent-light:   #fef2f2;

  /* Success */
  --color-success:        #0d7c3f;

  /* Warning */
  --color-warning:        #d97706;

  /* Gold accent (from logo) */
  --color-gold:           #c9a84c;
  --color-gold-light:     #e8d48a;

  /* Silver accent */
  --color-silver:         #8892a4;
  --color-silver-light:   #c5cdd9;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,41,0.06);
  --shadow-md: 0 4px 12px rgba(15,23,41,0.08);
  --shadow-lg: 0 12px 32px rgba(15,23,41,0.12);
  --shadow-xl: 0 20px 50px rgba(15,23,41,0.16);
}

[data-theme="dark"] {
  --color-bg:             #0a0f1c;
  --color-surface:        #111827;
  --color-surface-2:      #1a2332;
  --color-surface-offset: #0f1729;
  --color-divider:        #1e2a3d;
  --color-border:         #2a3650;

  --color-text:           #e2e8f0;
  --color-text-muted:     #8892a4;
  --color-text-faint:     #5a6578;
  --color-text-inverse:   #0f1729;

  --color-primary:        #e2e8f0;
  --color-primary-hover:  #cbd5e1;
  --color-primary-active: #94a3b8;

  --color-accent:         #ef4444;
  --color-accent-hover:   #dc2626;
  --color-accent-active:  #b91c1c;
  --color-accent-light:   rgba(239,68,68,0.1);

  --color-success:        #22c55e;
  --color-warning:        #f59e0b;
  --color-gold:           #d4a843;
  --color-gold-light:     #e8c96a;

  --color-silver:         #64748b;
  --color-silver-light:   #334155;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0a0f1c;
    --color-surface:        #111827;
    --color-surface-2:      #1a2332;
    --color-surface-offset: #0f1729;
    --color-divider:        #1e2a3d;
    --color-border:         #2a3650;
    --color-text:           #e2e8f0;
    --color-text-muted:     #8892a4;
    --color-text-faint:     #5a6578;
    --color-text-inverse:   #0f1729;
    --color-primary:        #e2e8f0;
    --color-primary-hover:  #cbd5e1;
    --color-primary-active: #94a3b8;
    --color-accent:         #ef4444;
    --color-accent-hover:   #dc2626;
    --color-accent-active:  #b91c1c;
    --color-accent-light:   rgba(239,68,68,0.1);
    --color-success:        #22c55e;
    --color-warning:        #f59e0b;
    --color-silver:         #64748b;
    --color-silver-light:   #334155;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

.section-padding {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

/* ============================================================
   HERO INLINE BANNER
   ============================================================ */
.hero-inline-banner {
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  max-width: 520px;
}

.hero-inline-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 1024px) {
  .hero-inline-banner {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.top-bar {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-6);
}

[data-theme="dark"] .top-bar {
  background: #060a14;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.top-bar a {
  color: var(--color-text-inverse);
  text-decoration: none;
}

[data-theme="dark"] .top-bar a {
  color: var(--color-text);
}

.top-bar a:hover {
  color: var(--color-accent);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  white-space: nowrap;
}

.logo svg {
  flex-shrink: 0;
}

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

.logo-text .company-name {
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text .tagline {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

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

.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #060a14 0%, #111827 50%, #1a1020 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--color-accent) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

/* Hero shield logo */
.hero-shield {
  margin-bottom: var(--space-6);
}

.hero-shield img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 4px 24px rgba(196,30,46,0.3));
}

@media (max-width: 1024px) {
  .hero-shield {
    text-align: center;
  }
  .hero-shield img {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero-shield img {
    width: 100px;
    height: 100px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #e8d48a;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-theme="dark"] .hero-badge {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.35);
  color: #e8c96a;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  color: #ffffff;
}

[data-theme="dark"] .hero h1 {
  color: #f1f5f9;
}

.hero h1 .highlight {
  color: var(--color-accent);
}

[data-theme="dark"] .hero h1 .highlight {
  color: #ef4444;
}

.hero-description {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

[data-theme="dark"] .hero-description {
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,30,46,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.hero-trust {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold-light);
}

[data-theme="dark"] .trust-number {
  color: var(--color-gold-light);
}

.trust-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-theme="dark"] .trust-label {
  color: var(--color-text-faint);
}

/* Hero right — lead capture form */
.hero-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-text);
  box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .hero-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

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

.hero-form-card .form-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196,30,46,0.1);
}

.form-submit {
  width: 100%;
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--space-2);
}

.form-submit:hover {
  background: var(--color-accent-hover);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  text-align: center;
}

/* ============================================================
   SAFE HARBOR ALERT BAR
   ============================================================ */
.alert-bar {
  background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
  color: #fef2f2;
  padding: var(--space-3) var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
}

[data-theme="dark"] .alert-bar {
  background: linear-gradient(90deg, #450a0a 0%, #7f1d1d 50%, #450a0a 100%);
}

.alert-bar a {
  color: #fca5a5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.alert-bar a:hover {
  color: #fff;
}

/* ============================================================
   SOCIAL PROOF / LOGOS BAR
   ============================================================ */
.social-proof-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}

.social-proof-bar .container {
  text-align: center;
}

.social-proof-bar p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  max-width: none;
}

.proof-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.proof-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.proof-item span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

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

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

/* ============================================================
   SAFE HARBOR SECTION
   ============================================================ */
.safe-harbor {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.safe-harbor .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.safe-harbor-content .highlight-box {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: var(--space-6);
}

[data-theme="dark"] .safe-harbor-content .highlight-box {
  background: rgba(239,68,68,0.08);
}

.highlight-box p {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
}

.tier-grid {
  display: grid;
  gap: var(--space-4);
}

.tier-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

[data-theme="dark"] .tier-card {
  background: var(--color-surface-2);
}

.tier-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-sm);
}

[data-theme="dark"] .tier-icon {
  background: rgba(239,68,68,0.12);
}

.tier-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.tier-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--color-bg);
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

[data-theme="dark"] .service-icon {
  background: rgba(239,68,68,0.1);
}

.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.65;
  margin-bottom: var(--space-4);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* ============================================================
   WHY CHOOSE US / VALUE PROPS
   ============================================================ */
.why-us {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

[data-theme="dark"] .why-us {
  background: #060a14;
}

.why-us .section-label {
  color: #fca5a5;
}

.why-us .section-label::before {
  background: #fca5a5;
}

.why-us .section-title {
  color: #fff;
}

[data-theme="dark"] .why-us .section-title {
  color: #f1f5f9;
}

.why-us .section-subtitle {
  color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .why-us .section-subtitle {
  color: var(--color-text-faint);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.why-card {
  padding: var(--space-6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
}

[data-theme="dark"] .why-card {
  border-color: var(--color-border);
  background: var(--color-surface);
}

.why-card .number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

[data-theme="dark"] .why-card .number {
  color: var(--color-gold-light);
}

.why-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: #fff;
}

[data-theme="dark"] .why-card h3 {
  color: #f1f5f9;
}

.why-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

[data-theme="dark"] .why-card p {
  color: var(--color-text-muted);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--color-surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--color-divider);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c41e2e, #a31824);
  border: 3px solid var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}

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

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.testimonial-card blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.author-info .name {
  font-size: var(--text-sm);
  font-weight: 600;
}

.author-info .role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries {
  background: var(--color-surface);
}

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

.industry-card {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease;
}

.industry-card:hover {
  border-color: var(--color-accent);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

[data-theme="dark"] .industry-icon {
  background: rgba(239,68,68,0.1);
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

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

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--color-bg);
}

.faq-list {
  max-width: var(--content-default);
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  gap: var(--space-4);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-5);
}

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

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #c41e2e 100%);
  color: #fff;
  text-align: center;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #991b1b 100%);
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.8);
  margin-inline: auto;
}

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

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: #fff;
  color: #991b1b;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding-block: var(--space-16) var(--space-8);
}

[data-theme="dark"] .footer {
  background: #060a14;
  color: var(--color-text);
}

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

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 36ch;
}

[data-theme="dark"] .footer-brand p {
  color: var(--color-text-muted);
}

.footer h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .footer h4 {
  color: var(--color-text-faint);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: var(--text-sm);
}

[data-theme="dark"] .footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: #fff;
}

[data-theme="dark"] .footer-links a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

[data-theme="dark"] .footer-bottom {
  border-top-color: var(--color-border);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .footer-bottom p {
  color: var(--color-text-faint);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: var(--text-xs);
}

[data-theme="dark"] .footer-bottom a {
  color: var(--color-text-faint);
}

.footer-bottom a:hover {
  color: #fff;
}

[data-theme="dark"] .footer-bottom a:hover {
  color: var(--color-text);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-form-card { max-width: 500px; margin-inline: auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .safe-harbor .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: var(--space-6); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: var(--text-2xl); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; }

  .top-bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-form-card { padding: var(--space-6); }
  .cta-actions { flex-direction: column; align-items: center; }
}
