/* ==========================================================================
   SHADOW CLOUDS — AUDITED MASTER ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

/* 1. DESIGN TOKENS */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F8FC;
  --bg-dark: #090A0F;

  --bg-card: rgba(255, 255, 255, 0.70);
  --bg-card-hover: rgba(255, 255, 255, 0.95);

  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #9CA3AF;
  --text-light: #FFFFFF;

  --border-light: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(255, 255, 255, 0.45);
  --border-hover: rgba(124, 58, 237, 0.45);

  --accent: #7C3AED;
  --accent-hover: #8B5CF6;
  --accent-light: rgba(124, 58, 237, 0.08);
  --accent-glow: rgba(124, 58, 237, 0.35);
  --status-green: #10B981;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(124, 58, 237, 0.08);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.04);

  --blur-glass: 40px;
  --transition-fast: 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-main: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.section-padding { padding: var(--space-4xl) 0; }
.bg-secondary { background-color: var(--bg-secondary); }

.text-center { text-align: center; }
.text-accent { color: var(--accent-hover); }

.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }

/* 3. PRELOADER & PROGRESS & TOAST */
.preloader {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.preloader.loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-inner {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 20px var(--accent);
}

.preloader-title { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); }

.preloader-bar {
  width: 150px;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.bar-progress {
  width: 0%;
  height: 100%;
  background: var(--accent);
  animation: fillProgress 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillProgress { to { width: 100%; } }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #8B5CF6);
  z-index: 10001;
  width: 0%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 30000; display: flex; flex-direction: column; gap: 10px; }
.toast { padding: 14px 22px; border-radius: var(--radius-pill); background: #111118; border: 1px solid var(--accent); color: #FFFFFF; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-md); animation: toastIn 300ms ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* 4. AUDITED PERFECT 80px NAVBAR & FLEX SPACING */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  z-index: 10000;
  transition: top var(--transition-main), transform var(--transition-main);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: background 450ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1), border-color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* STATE 2: SOLID WHITE SCROLLED NAVBAR (#FFFFFF, NO TRANSPARENCY) */
.navbar-wrapper.nav-scrolled .navbar {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10) !important;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 24px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.brand-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.35);
  transition: color 450ms ease;
  white-space: nowrap;
}

.brand-text .text-accent { color: #8B5CF6; }

.navbar-wrapper.nav-scrolled .brand-text {
  color: #111111;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: color 450ms ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #8B5CF6;
}

.navbar-wrapper.nav-scrolled .nav-link {
  color: #111111;
  text-shadow: none;
}

.navbar-wrapper.nav-scrolled .nav-link:hover,
.navbar-wrapper.nav-scrolled .nav-link.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 24px;
}

/* 5. LIQUID GLASS MEGA MENU PANEL */
.mega-menu-trigger { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.98);
  width: 920px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  opacity: 0;
  filter: blur(10px);
  visibility: hidden;
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms cubic-bezier(0.16, 1, 0.3, 1), visibility 220ms ease;
  pointer-events: none;
  z-index: 10001;
}

.mega-menu.mega-active {
  opacity: 1;
  filter: blur(0);
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.mega-item:hover {
  background: #FFFFFF;
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.14);
}

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

.mega-title { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 2px; }
.mega-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }
.mega-price { font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-top: 6px; }

/* 6. BUTTON & SELECTOR DESIGN SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-main);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.w-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #9333EA 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(124, 58, 237, 0.2);
  text-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-2px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ripple-btn { position: relative; overflow: hidden; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 600ms linear;
  pointer-events: none;
}

@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* AUDITED PRICING TABS & CYCLE SELECTOR PILLS */
.pricing-tabs, .cycle-pill-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-tab, .cycle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
}

.pricing-tab:hover, .cycle-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.pricing-tab.active, .cycle-btn.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px var(--accent-glow) !important;
  transform: translateY(0) !important;
}

/* 7. GLASS CARDS & HOVER LIFT SHADOWS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-main), box-shadow var(--transition-main), border-color var(--transition-main), background var(--transition-main);
  box-shadow: var(--shadow-sm), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
  transform: translateY(-6px);
}

/* 8. HERO SECTION & PURPLE TITLE GRADIENT */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 170px;
  padding-bottom: 110px;
  color: #FFFFFF;
  overflow: hidden;
  background-color: #090A0F;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-wallpaper {
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/hero_background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.45) 0%, rgba(9, 10, 15, 0.75) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.8);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: #FFFFFF;
}

.status-indicator { width: 8px; height: 8px; border-radius: 50%; background: var(--status-green); box-shadow: 0 0 10px var(--status-green); }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  max-width: 940px;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.text-purple-gradient {
  background: linear-gradient(135deg, #8B5CF6 0%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E5E7EB;
  max-width: 720px;
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-2xl); }

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  color: #E5E7EB;
}

.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { color: var(--status-green); }
.trust-divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); }

.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* 9. SECTIONS & CARDS */
.section-header { margin-bottom: var(--space-3xl); }
.section-tag { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--space-xs); display: inline-block; }
.section-title { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: var(--space-xs); }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

.feature-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-xs); }
.feature-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.feature-card p { font-size: 0.95rem; color: var(--text-secondary); }

.stat-val { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }

.product-card { padding: 0; display: flex; flex-direction: column; }
.card-img-container { position: relative; height: 200px; overflow: hidden; background: var(--bg-dark); }
.card-zoom-img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .card-zoom-img { transform: scale(1.08); }
.card-badge { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #FFFFFF; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill); }
.product-card-body { padding: var(--space-lg); display: flex; flex-direction: column; flex-grow: 1; }
.product-card-body h4 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.product-card-body p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-md); }
.product-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-lg); font-size: 0.875rem; color: var(--text-secondary); }
.product-specs li { display: flex; align-items: center; gap: 8px; }
.product-specs svg { color: var(--status-green); }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-sm); border-top: 1px solid var(--border-light); }

.infra-visual {
  position: relative;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F8F9FE;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.infra-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: contrast(1.1) brightness(1.05);
}

.infra-location-ping {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  animation: ping 2s infinite;
  cursor: pointer;
}

.loc-tokyo { top: 35%; left: 82%; }
.loc-frankfurt { top: 28%; left: 48%; }
.loc-us { top: 32%; left: 22%; }
.loc-mumbai { top: 45%; left: 68%; }

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

.form-group { margin-bottom: var(--space-md); display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.modal-input { padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); background: #FFFFFF; color: var(--text-primary); font-size: 0.95rem; }

.footer { background: #090A0F; color: #9CA3AF; padding-top: var(--space-3xl); padding-bottom: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--space-2xl); margin-bottom: var(--space-3xl); }
.footer-brand-col .brand-text { color: #FFFFFF; }
.footer-desc { margin-top: var(--space-md); margin-bottom: var(--space-md); font-size: 0.9rem; max-width: 320px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; color: #E5E7EB; }
.status-dot-green { width: 6px; height: 6px; border-radius: 50%; background: var(--status-green); }
.footer-links-col h5 { color: #FFFFFF; font-size: 0.95rem; font-weight: 700; margin-bottom: var(--space-md); }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-links-col a:hover { color: #FFFFFF; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-lg); border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.85rem; }

@media (max-width: 1100px) {
  .nav-links { gap: 16px; font-size: 0.85rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-trust-bar { flex-direction: column; gap: 8px; }
  .trust-divider { display: none; }
  .navbar-wrapper { width: calc(100% - 24px); }
  .section-padding { padding: var(--space-2xl) 0; }
}
