/* ═══════════════════════════════════════════════════════════════════════════
   VASSU INFOTECH — ENTERPRISE BRIGHT MODE DESIGN SYSTEM (2026 EDITION)
   Crisp Light Canvas · Pure White Surfaces · Rich Emerald & Cyber Accents
   ═══════════════════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

/* ── 1. DESIGN TOKENS (BRIGHT MODE ENTERPRISE STANDARD) ─────────────────── */

:root {
  /* High-Precision Bright Surface Hierarchy */
  --bg-obsidian: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-hover: #ffffff;
  --bg-subtle: rgba(15, 23, 42, 0.03);

  /* Surface Aliases */
  --surface-white: #ffffff;
  --surface-off: #f8fafc;
  --surface-light: #f1f5f9;
  --surface-border: #e2e8f0;

  /* High-Contrast Architectural Typography */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  /* Laser Brand Accents (Calibrated for High Light-Mode Contrast) */
  --green: #059669;
  --green-glow: #10b981;
  --green-neon: #059669;
  --green-hover: #047857;
  --green-subtle: rgba(5, 150, 105, 0.08);
  --green-border: rgba(5, 150, 105, 0.25);
  --cyan: #0891b2;
  --blue: #2563eb;
  --orange: #ea580c;

  /* Hairlines & Structural Rules */
  --rule: #e2e8f0;
  --rule-subtle: rgba(15, 23, 42, 0.05);
  --rule-bright: #cbd5e1;
  --rule-dark: #94a3b8;
  --rule-heavy: #059669;

  /* Soft Multi-Layered Elevation Shadows */
  --shadow-flat-sm:
    0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
  --shadow-flat-card:
    0 4px 20px -2px rgba(15, 23, 42, 0.05),
    0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-flat-hover:
    0 20px 35px -5px rgba(15, 23, 42, 0.1), 0 0 20px rgba(5, 150, 105, 0.12);
  --shadow-glow-green: 0 0 24px rgba(5, 150, 105, 0.25);

  /* Motion Timing Scale */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --ease-accelerate: cubic-bezier(0.4, 0, 1, 1);
  --duration-instant: 100ms;
  --duration-fast: 150ms;
  --duration: 200ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-page: 600ms;

  /* Typography Stack */
  --font-display:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Mathematical Spacing Scale (4px Base) */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s8: 32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;
  --s32: 128px;

  /* Layout Container */
  --grid: 1280px;
  --gutter: 24px;
  --margin: clamp(20px, 4vw, 80px);
}

/* ── 2. RESET & BASE ──────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-obsidian);
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  background-color: var(--bg-obsidian);
  background-image:
    radial-gradient(
      ellipse 80% 50% at 50% -20%,
      rgba(5, 150, 105, 0.05),
      transparent 70%
    ),
    radial-gradient(
      circle 600px at 90% 30%,
      rgba(8, 145, 178, 0.03),
      transparent 60%
    );
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: rgba(5, 150, 105, 0.2);
  color: #0f172a;
}

/* ── 3. ACCESSIBILITY ─────────────────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 4. TYPOGRAPHY & HEADINGS ─────────────────────────────────────────── */

.t-mega {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.t-hero {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

.t-display {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.t-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.t-subhead {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

.t-body {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.t-caption {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-tertiary);
}

.t-mono {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.t-mono-lg {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #0f172a 30%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── 5. GRID & CONTAINER SYSTEM ───────────────────────────────────────── */

.inner {
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 var(--margin);
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 var(--margin);
}

.grid-wide {
  max-width: 1440px;
}
.col-1 {
  grid-column: span 1;
}
.col-2 {
  grid-column: span 2;
}
.col-3 {
  grid-column: span 3;
}
.col-4 {
  grid-column: span 4;
}
.col-5 {
  grid-column: span 5;
}
.col-6 {
  grid-column: span 6;
}
.col-7 {
  grid-column: span 7;
}
.col-8 {
  grid-column: span 8;
}
.col-9 {
  grid-column: span 9;
}
.col-10 {
  grid-column: span 10;
}
.col-11 {
  grid-column: span 11;
}
.col-full {
  grid-column: 1 / -1;
}

.col-narrow {
  grid-column: span 4;
}
.col-wide {
  grid-column: span 8;
}

/* ── 6. SECTIONS & STRUCTURAL RULES ───────────────────────────────────── */

.section {
  position: relative;
  padding: var(--s24) 0;
  border-top: 1px solid var(--rule);
}

.section-sm {
  padding: var(--s16) 0;
  border-top: 1px solid var(--rule);
}
.section-xs {
  padding: var(--s12) 0;
  border-top: 1px solid var(--rule);
}

.section-dark,
.section-off,
.section-light {
  background: var(--bg-surface);
}

.rule-top {
  border-top: 1px solid var(--rule);
}
.rule-bottom {
  border-bottom: 1px solid var(--rule);
}
.rule-heavy {
  border-top: 2px solid var(--green);
}
.rule-green {
  border-top: 2px solid var(--green);
}

.hr {
  width: 100%;
  height: 1px;
  background: var(--rule);
  border: none;
}

.hr-green {
  width: 48px;
  height: 2px;
  background: var(--green);
  border: none;
}

.vr {
  width: 1px;
  height: 100%;
  background: var(--rule);
}

.section-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.section-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--green-border), transparent);
}

/* ── 7. HEADER & NAVIGATION ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 74px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  transition:
    background var(--duration) ease,
    border-color var(--duration) ease,
    box-shadow var(--duration) ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(5, 150, 105, 0.25);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 var(--margin);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
}

.nav-logo-accent {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 24px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  transition: color var(--duration) ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.nav-link:hover {
  color: #0f172a;
}

.nav-link.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
  transition:
    background var(--duration) ease,
    transform var(--duration) ease,
    box-shadow var(--duration) ease;
  margin-left: 16px;
}

.nav-cta:hover {
  background: var(--green-hover);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.45);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: scale(0.97);
}

/* Mega Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 580px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid #e2e8f0;
  border-top: 2px solid var(--green);
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration) ease,
    visibility var(--duration);
  z-index: 1001;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-column-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding: 10px 20px 6px;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  color: var(--text-secondary);
  transition:
    background var(--duration) ease,
    color var(--duration) ease;
}

.dropdown-item:hover {
  background: rgba(5, 150, 105, 0.08);
  color: #0f172a;
}

.dropdown-item-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--green);
  min-width: 18px;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dropdown-item-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
}

.dropdown-item-desc {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

/* Mobile Nav Button */
.nav-mobile-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

.nav-mobile-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration) ease,
    visibility var(--duration);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
}

.mobile-drawer-panel {
  position: relative;
  width: min(360px, 85vw);
  height: 100%;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.mobile-drawer-nav {
  padding: 0 24px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-link:last-child {
  border-bottom: none;
}

.mobile-drawer-link-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--green);
  min-width: 20px;
}

.mobile-drawer-cta {
  display: block;
  width: calc(100% - 48px);
  margin: 24px;
  padding: 14px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

/* ── 8. HERO SECTION (2026 BRIGHT ARCHITECTURAL CONSOLE) ─────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(74px + var(--s12));
  padding-bottom: 0;
  overflow: hidden;
  background: #f8fafc;
  color: #0f172a;
}

/* Blueprint micro-grid texture for Bright Mode */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 40%,
    black 30%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.12) 0%,
    rgba(5, 150, 105, 0.03) 50%,
    transparent 70%
  );
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-glow-left {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(8, 145, 178, 0.08) 0%,
    transparent 65%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 var(--margin);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-architectural-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s12);
  align-items: center;
  padding-bottom: var(--s12);
}

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

.hero-status-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: var(--s6);
}

.hero-status-beacon {
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  box-shadow: 0 0 10px #059669;
  animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: var(--s6);
}

.hero-title-accent {
  color: #059669;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: #475569;
  max-width: 540px;
  margin-bottom: var(--s8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  transition:
    background var(--duration) ease,
    transform var(--duration) ease,
    box-shadow var(--duration) ease;
}

.hero-cta-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.5);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition:
    border-color var(--duration) ease,
    background var(--duration) ease,
    color var(--duration) ease;
}

.hero-cta-secondary:hover {
  background: #f8fafc;
  border-color: var(--green);
  color: var(--green);
}

.hero-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition:
    background var(--duration) ease,
    border-color var(--duration) ease;
}

.hero-whatsapp-direct:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
}

.hero-cta-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.hero-cta-secondary:active {
  transform: translateY(0) scale(0.98);
}

.hero-whatsapp-direct:active {
  transform: scale(0.98);
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid #e2e8f0;
  width: 100%;
  max-width: 540px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #475569;
}

.hero-trust-chip i {
  color: var(--green);
  font-size: 0.75rem;
}

/* Hero Right Stage */
.hero-visual-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.hero-visual-card {
  position: relative;
  width: 100%;
  height: 440px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateZ(0);
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 600ms ease,
    visibility 600ms;
}

.hero-visual-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.08) saturate(1.1);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.05) 0%,
      transparent 40%,
      rgba(15, 23, 42, 0.6) 100%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

/* Glass Badges in Hero */
.hero-glass-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.badge-top-right {
  top: 20px;
  right: 20px;
}
.badge-bottom-left {
  bottom: 24px;
  left: 20px;
}

.hero-glass-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 15px;
  flex-shrink: 0;
}

.hero-glass-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-glass-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.hero-glass-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: #64748b;
}

.hero-glass-status-pill {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(5, 150, 105, 0.35);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.hero-visual-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-visual-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all var(--duration) ease;
}

.hero-visual-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #cbd5e1;
}

.hero-visual-btn.active {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-color: #059669;
  font-weight: 700;
}

/* Integrated Hero Telemetry Strip */
.hero-telemetry-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.hero-telemetry-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-telemetry-bar-item {
  padding: var(--s6) var(--s4);
  text-align: center;
  border-right: 1px solid #f1f5f9;
}

.hero-telemetry-bar-item:last-child {
  border-right: none;
}

.hero-telemetry-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
  margin-bottom: 4px;
}

.hero-telemetry-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ── 9. BRAND STATEMENT SECTION ───────────────────────────────────────── */

.brand-statement {
  padding: var(--s24) 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.brand-statement-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  gap: var(--s8);
  align-items: start;
}

.brand-statement-left {
  padding-right: var(--s8);
}

.brand-statement-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s6);
}

.brand-statement-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.brand-statement-vr {
  display: flex;
  justify-content: center;
}

.brand-statement-vr-line {
  width: 1px;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(180deg, var(--green), transparent);
}

.brand-statement-right {
  padding-top: var(--s8);
}

.brand-statement-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: var(--s5);
}

/* ── 10. CAPABILITIES SECTION (INTERACTIVE BENTO & SPOTLIGHT) ─────────── */

.capabilities {
  padding: var(--s24) 0;
  background: #f8fafc;
  position: relative;
}

.capabilities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s8);
  padding-bottom: var(--s6);
  border-bottom: 1px solid #e2e8f0;
}

.capabilities-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

/* Filter Bar */
.cap-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}

.cap-filter-btn {
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all var(--duration) ease;
}

.cap-filter-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.cap-filter-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

.capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-row {
  display: grid;
  grid-template-columns: 48px 1.2fr 1.6fr auto auto;
  align-items: center;
  gap: var(--s5);
  padding: var(--s5) var(--s5);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all var(--duration-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.cap-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(5, 150, 105, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.cap-row:hover::before {
  opacity: 1;
}

.cap-row:hover {
  background: #ffffff;
  border-color: var(--green);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 0 15px rgba(5, 150, 105, 0.08);
  transform: translateY(-2px);
}

.cap-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 16px;
  transition: all var(--duration) ease;
  flex-shrink: 0;
}

.cap-row:hover .cap-icon-box {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.cap-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cap-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  transition: color var(--duration) ease;
}

.cap-row:hover .cap-name {
  color: var(--green);
}

.cap-tag-pill {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cap-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
}

.cap-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.cap-sla-badge i {
  color: var(--green);
  font-size: 10px;
}

.cap-arrow {
  font-size: 1.125rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  transition: all var(--duration) var(--ease);
}

.cap-row:hover .cap-arrow {
  background: var(--green);
  color: #ffffff;
  transform: translateX(4px);
}

/* ── 11. GPU / AI COMPUTE SECTION (BRIGHT BENTO) ──────────────────────── */

.gpu-modern-section {
  position: relative;
  padding: var(--s24) 0;
  background: #ffffff;
  color: #0f172a;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.gpu-modern-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.08) 0%,
    transparent 60%
  );
  filter: blur(90px);
  pointer-events: none;
}

.gpu-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.gpu-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  aspect-ratio: 16/10;
}

.gpu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.08) saturate(1.15);
  transition: transform 800ms var(--ease);
}

.gpu-modern-section:hover .gpu-image img {
  transform: scale(1.03);
}

.gpu-live-telemetry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #059669;
  text-transform: uppercase;
  margin-bottom: var(--s6);
}

.gpu-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: var(--s6);
}

.gpu-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: var(--s8);
}

.gpu-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.gpu-spec {
  padding: var(--s5);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all var(--duration) ease;
}

.gpu-spec:hover {
  background: #ffffff;
  border-color: var(--green);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.gpu-spec-val {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.gpu-spec-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ── 12. CASE STUDIES (BRIGHT LIVING COLOR & GLASS) ─────────────────── */

.cases {
  padding: var(--s24) 0;
  background: #f8fafc;
}

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  backdrop-filter: blur(16px);
  margin-bottom: var(--s8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: all var(--duration-base) var(--ease);
}

.case:hover {
  border-color: var(--green);
  box-shadow:
    0 15px 35px rgba(15, 23, 42, 0.08),
    0 0 20px rgba(5, 150, 105, 0.08);
  transform: translateY(-3px);
}

.case.reverse {
  direction: rtl;
}

.case.reverse > * {
  direction: ltr;
}

.case-img {
  position: relative;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.05) saturate(1.1);
  transition: transform 700ms var(--ease);
}

.case:hover .case-img img {
  transform: scale(1.04);
}

.case-img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s10) var(--s10);
}

.case-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s3);
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
  color: #0f172a;
}

.case-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: var(--s6);
}

.case-details {
  display: flex;
  gap: var(--s8);
  margin-bottom: var(--s6);
  padding: var(--s4) 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.case-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-detail-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-detail-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  width: fit-content;
  transition: gap var(--duration) var(--ease);
}

.case-link:hover {
  gap: 12px;
}

/* ── 13. TECHNOLOGY ECOSYSTEM (BRIGHT PARTNER SHIELDS) ────────────────── */

.ecosystem-modern {
  padding: var(--s24) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.ecosystem-modern-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s8);
}

.ecosystem-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.eco-static-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all var(--duration) ease;
}

.eco-static-logo span {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.eco-static-logo:hover {
  background: #ffffff;
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.08),
    0 0 15px rgba(5, 150, 105, 0.1);
}

/* ── 14. STATS MATRIX (BRIGHT GLOW MATRIX) ────────────────────────────── */

.stats-modern {
  padding: var(--s24) 0;
  background: #f8fafc;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.stats-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(5, 150, 105, 0.08) 0%,
    transparent 70%
  );
  filter: blur(70px);
  pointer-events: none;
}

.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}

.stat-modern {
  padding: var(--s8) var(--s6);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all var(--duration) ease;
}

.stat-modern:hover {
  background: #ffffff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 0 15px rgba(5, 150, 105, 0.1);
}

.stat-modern-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 8px;
}

.stat-modern-num .accent-glow {
  color: #059669;
}

.stat-modern-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ── 15. CLIENT TRUST SHOWCASE (ENTERPRISE GRID) ──────────────────────── */

.trust-section {
  padding: var(--s24) 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-header {
  text-align: center;
  margin-bottom: var(--s10);
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s3);
}

.trust-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.5vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.trust-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s4);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all var(--duration-base) var(--ease);
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(5, 150, 105, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

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

.trust-card:hover {
  background: #ffffff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 0 15px rgba(5, 150, 105, 0.08);
}

.trust-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

.trust-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  transition: color var(--duration) ease;
}

.trust-card:hover .trust-card-title {
  color: var(--green);
}

.trust-card-sector {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.trust-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.trust-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s3);
  border-top: 1px solid #e2e8f0;
}

.trust-card-sla {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f172a;
}

.trust-card-sla i {
  color: var(--green);
  font-size: 10px;
}

.trust-card-status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── 16. WHY CHOOSE US (TACTILE SPOTLIGHT CARDS) ──────────────────────── */

.why-us {
  padding: var(--s24) 0;
  background: #f8fafc;
}

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

.why-us-card {
  padding: var(--s8) var(--s6);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all var(--duration-base) var(--ease);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.why-us-card:hover {
  border-color: var(--green);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 0 15px rgba(5, 150, 105, 0.08);
  transform: translateY(-3px);
}

.why-us-card:hover::before {
  transform: scaleX(1);
}

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 18px;
  margin-bottom: var(--s6);
  transition: all var(--duration) ease;
}

.why-us-card:hover .why-us-icon {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.why-us-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--s3);
  letter-spacing: -0.015em;
}

.why-us-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
}

/* ── 17. REGIONAL PRESENCE ────────────────────────────────────────────── */

.regions {
  padding: var(--s24) 0;
  background: #ffffff;
}

.regions-header {
  margin-bottom: var(--s10);
}

.regions-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--s3);
  color: #0f172a;
}

.regions-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.region {
  padding: var(--s10) var(--s8);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all var(--duration) ease;
}

.region:hover {
  background: #ffffff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.region-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--s1);
}

.region-type {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s4);
}

.region-addr {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: var(--s4);
}

.region-contact {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.region-contact a {
  font-weight: 600;
  color: var(--green);
  transition: color var(--duration) ease;
}

.region-contact a:hover {
  color: var(--green-hover);
}

/* ── 18. HIGH-IMPACT BRIGHT CTA BANNER ────────────────────────────────── */

.cta,
.cta-modern {
  position: relative;
  padding: var(--s32) 0;
  background: #f8fafc;
  color: #0f172a;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.cta::before,
.cta-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--s6);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s8);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #0f172a;
}

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

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35);
  transition:
    background var(--duration) ease,
    transform var(--duration) ease;
}

.cta-btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition:
    border-color var(--duration) ease,
    background var(--duration) ease;
}

.cta-btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--green);
  color: var(--green);
}

.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  margin-top: var(--s8);
  flex-wrap: wrap;
}

.cta-contact-item {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

/* ── 19. FOOTER (EXECUTIVE DARK SLATE CONTRAST) ───────────────────────── */

.footer {
  padding: var(--s20) 0 var(--s8);
  background: #0f172a;
  color: #ffffff;
  border-top: 1px solid #1e293b;
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--s4);
}

.footer-brand-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 320px;
  margin-bottom: var(--s6);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: all var(--duration) ease;
}

.footer-social a:hover {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: var(--s5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-links a {
  font-size: 0.8125rem;
  color: #cbd5e1;
  transition: color var(--duration) ease;
}

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

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

.footer-copy {
  font-size: 0.6875rem;
  color: #64748b;
}

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

.footer-legal a {
  font-size: 0.6875rem;
  color: #64748b;
  transition: color var(--duration) ease;
}

.footer-legal a:hover {
  color: #CBD5E1;
}

/* Google Preferred Source Trust Badge */
.google-preferred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #CBD5E1;
  transition: all var(--duration-fast) ease;
}

.google-preferred-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(66, 133, 244, 0.5);
  color: #FFFFFF;
}

.google-preferred-badge i {
  font-size: 13px;
  color: #4285F4;
}

.google-preferred-badge .google-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34A853;
  box-shadow: 0 0 6px #34A853;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ── 20. CONTACT & RFQ PORTAL ─────────────────────────────────────────── */

.contact-form-section {
  padding: var(--s24) 0;
  background: #f8fafc;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  gap: var(--s8);
  align-items: start;
}

.form-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: var(--s4);
}

.form-info-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: var(--s8);
}

.form-field {
  margin-bottom: var(--s5);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: var(--s2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color var(--duration) ease,
    box-shadow var(--duration) ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  cursor: pointer;
  transition:
    background var(--duration) ease,
    transform var(--duration) ease;
  margin-top: var(--s2);
}

.form-submit:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── 21. FAQ ACCORDION ────────────────────────────────────────────────── */

.faq-section {
  padding: var(--s24) 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.faq-item {
  padding: var(--s6) var(--s8);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    background var(--duration) ease,
    border-color var(--duration) ease;
}

.faq-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  cursor: pointer;
}

.faq-q-text {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.faq-toggle {
  font-size: 1.125rem;
  color: var(--green);
  transition: transform var(--duration) ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-a-text {
  padding-top: var(--s4);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
}

/* ── 22. DETAIL PAGES & SERVICE DIRECTORY CATALOG ─────────────────────── */

.detail-banner {
  padding: 150px 0 var(--s12);
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.detail-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: var(--s4);
  max-width: 900px;
}

.detail-banner-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  max-width: 780px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--s4);
}

.breadcrumb-link {
  color: var(--text-tertiary);
  transition: color var(--duration-fast) ease;
}

.breadcrumb-link:hover {
  color: var(--green);
}

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

.breadcrumb-current {
  color: var(--green);
  font-weight: 700;
}

.flat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 4px;
  margin-bottom: var(--s4);
}

.flat-badge-dot {
  width: 6px;
  height: 6px;
  background: #059669;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #059669;
}

/* 2-Column Detail Layout */
.detail-layout-section {
  padding: var(--s20) 0;
  background: #ffffff;
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--s12);
  align-items: start;
}

.detail-main-content {
  display: flex;
  flex-direction: column;
  gap: var(--s10);
}

.detail-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: var(--s10);
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.04);
}

.detail-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.detail-section-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: var(--s5);
}

.detail-hero-media {
  border: 1px solid #e2e8f0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: var(--s6);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.detail-hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.97) contrast(1.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-hero-media:hover img {
  transform: scale(1.025);
}

/* Flat Cards (Catalog & Hub) */
.flat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  padding: var(--s8);
  border-radius: 12px;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  position: relative;
}

.flat-card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border-color: rgba(5, 150, 105, 0.4);
  background: #ffffff;
}

.flat-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 8px;
  margin-bottom: var(--s5);
  transition: all var(--duration-fast) ease;
}

.flat-card-interactive:hover .flat-card-icon {
  background: var(--green);
  color: #ffffff;
}

.flat-card-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: var(--s2);
}

.flat-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--s2);
  line-height: 1.35;
}

.flat-card-interactive:hover .flat-card-title {
  color: var(--green);
}

.flat-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: var(--s5);
}

.flat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s4);
  border-top: 1px solid #f1f5f9;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.flat-card-footer i {
  transition: transform var(--duration-fast) var(--ease);
}

.flat-card-interactive:hover .flat-card-footer i {
  transform: translateX(4px);
}

/* Spec Matrices */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin: var(--s6) 0;
}

.spec-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.spec-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.spec-box {
  background: #ffffff;
  padding: var(--s5) var(--s6);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-box-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-box-val {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

/* Feature Checklists */
.flat-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin: var(--s6) 0;
}

.flat-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}

.flat-check-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  font-size: 0.6875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* SLA Banner Card */
.sla-banner-card {
  background: #f8fafc;
  color: #0f172a;
  padding: var(--s8);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  margin: var(--s6) 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.sla-banner-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sla-banner-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.sla-banner-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.sla-banner-desc {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}

/* Detail Sidebar */
.detail-sidebar-wrap {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.sidebar-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  padding: var(--s6);
  border-radius: 12px;
}

.sidebar-panel-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  margin: 0;
}

.sidebar-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--duration-fast) ease;
}

.sidebar-menu-link i {
  color: #94a3b8;
  font-size: 9px;
  transition:
    transform var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.sidebar-menu-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.sidebar-menu-link:hover i {
  color: var(--green);
  transform: translateX(3px);
}

.sidebar-menu-link.active {
  background: rgba(5, 150, 105, 0.08);
  color: var(--green);
  font-weight: 700;
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding-left: 10px;
}

.sidebar-menu-link.active i {
  color: var(--green);
  transform: translateX(3px);
}

.sidebar-cta-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-flat-card);
  padding: var(--s6);
  border-radius: 8px;
  text-align: center;
}

.sidebar-cta-box h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--s2);
}

.sidebar-cta-box p {
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: var(--s5);
  line-height: 1.5;
}

.sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  transition:
    background var(--duration-fast) ease,
    transform var(--duration-instant) ease;
}

.sidebar-btn:hover {
  background: var(--green-hover);
}

/* Location Map Widget */
.location-map-section {
  padding: 0 0 var(--s16) 0;
  background: var(--surface-off);
}

.map-card-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  margin-top: var(--s6);
}

.map-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s8);
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: var(--s4);
}

.map-header-info {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.map-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.map-header-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.map-header-address {
  font-size: 0.8125rem;
  color: #64748b;
  font-family: var(--font-sans);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--green);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
  transition: all var(--duration-fast) ease;
}

.map-directions-btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.map-frame-container {
  position: relative;
  width: 100%;
  height: 450px;
  background: #f1f5f9;
}

.map-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-header-bar {
    padding: var(--s4) var(--s5);
  }
  .map-frame-container {
    height: 320px;
  }
  .map-directions-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Metric Strip */
.metric-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin: var(--s8) 0;
}

.metric-box {
  background: #ffffff;
  padding: var(--s6) var(--s8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #059669;
  letter-spacing: -0.03em;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 23. TOAST & MODAL & SCROLL UTILITIES ──────────────────────────────── */

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #059669, #10b981);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.4);
}

.whatsapp-float-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition:
    background var(--duration) ease,
    transform var(--duration) ease;
}

.whatsapp-float-btn:hover {
  background: #1fb855;
  color: #fff;
  transform: scale(1.06);
}

.whatsapp-tooltip {
  padding: 6px 12px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity var(--duration) ease,
    transform var(--duration) ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.whatsapp-float-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

#custom-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  max-width: 340px;
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-success .toast-icon {
  color: #059669;
}
.toast-error .toast-icon {
  color: #ef4444;
}

.toast-icon {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.toast-content {
  flex: 1;
}
.toast-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 3px;
}
.toast-message {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.toast-close {
  color: var(--text-muted);
  flex-shrink: 0;
}
.toast-close:hover {
  color: #0f172a;
}

.modal-overlay-custom {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) ease;
}

.modal-overlay-custom.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card-custom {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  max-width: 560px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--s8);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  transform: translateY(12px);
  transition: transform var(--duration) var(--ease);
}

.modal-overlay-custom.active .modal-card-custom {
  transform: translateY(0);
}

/* Scroll Reveal */
.reveal,
.glow-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--duration-page) var(--ease),
    transform var(--duration-page) var(--ease);
}

.reveal.is-visible,
.glow-on-scroll.is-glowing {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* ── 24. RESPONSIVE BREAKPOINTS ───────────────────────────────────────── */

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

  .hero-architectural-grid {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .hero-visual-card {
    height: 360px;
  }

  .brand-statement-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .brand-statement-vr {
    display: none;
  }

  .cap-row {
    grid-template-columns: 48px 1fr auto;
  }

  .cap-desc {
    display: none;
  }

  .gpu-grid {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .case {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-img {
    aspect-ratio: 16/9;
  }
  .case-body {
    padding: var(--s8) var(--margin);
  }
  .case.reverse {
    direction: ltr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
  .regions-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }

  .detail-layout-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .detail-sidebar-wrap {
    position: static;
  }

  .flat-checklist {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 639px) {
  :root {
    --margin: 16px;
    --s24: 56px;
    --s32: 72px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(74px + var(--s6));
    padding-bottom: var(--s8);
  }

  .hero-title {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.05;
  }

  .hero-visual-card {
    height: 290px;
  }

  .badge-bottom-left {
    display: none;
  }

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

  .hero-cta-primary,
  .hero-cta-secondary,
  .hero-whatsapp-direct {
    justify-content: center;
    width: 100%;
  }

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

  .hero-telemetry-bar-item:nth-child(2) {
    border-right: none;
  }

  .hero-telemetry-bar-item:nth-child(3),
  .hero-telemetry-bar-item:nth-child(4) {
    border-top: 1px solid #f1f5f9;
  }

  .hero-visual-nav {
    grid-template-columns: 1fr;
  }

  .cap-row {
    grid-template-columns: 1fr auto;
    gap: var(--s4);
    padding: var(--s4) var(--s4);
  }

  .cap-icon-box {
    display: none;
  }

  .stats-modern-grid {
    grid-template-columns: 1fr;
  }
  .gpu-specs {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .case-body {
    padding: var(--s6) var(--margin);
  }
  .case-details {
    flex-direction: column;
    gap: var(--s4);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--s4);
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .detail-banner {
    padding: 110px 0 var(--s8);
  }

  .detail-section-card {
    padding: var(--s6) var(--s4);
  }

  .detail-hero-media img {
    height: 220px;
  }

  .spec-grid,
  .spec-grid-3,
  .spec-grid-4 {
    grid-template-columns: 1fr;
  }

  .metric-strip-grid {
    grid-template-columns: 1fr;
  }

  .sla-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
