/* ============================================================
   MICROSYSTEM AI WI-FI SOLUTIONS — Design System
   ============================================================ */

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Primary palette */
  --navy-deep: #0a1628;
  --navy-medium: #101d35;
  --navy-light: #162544;
  --navy-card: #131f38;

  /* Luxury accents */
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a08030;

  /* Orange (brand partner accent) */
  --orange: #ff6b00;
  --orange-light: #ff8a33;
  --orange-dark: #e05e00;

  /* Tech / AI accents */
  --blue-glow: #00a8ff;
  --blue-light: #4dc3ff;
  --blue-dark: #0077cc;
  --cyan: #00e5ff;

  /* Neutrals */
  --white: #f0f0f5;
  --white-dim: #c5c5d0;
  --gray: #8a8a9a;
  --dark-text: #1a1a2e;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(0, 168, 255, 0.15);
  --shadow-glow-orange: 0 0 30px rgba(255, 107, 0, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.15);

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

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-dim);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--blue-glow), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--container-wide);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary::before {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--glass-border-hover);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Pulse animation for primary CTA */
.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-4px);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-glow);
  margin-bottom: var(--space-md);
}

.section-badge i {
  font-size: 0.9rem;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin: var(--space-md) auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  padding: 0 var(--space-md);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

/* Animated particles overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-glow);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 65%; top: 15%; animation-delay: 3s; animation-duration: 10s; }
.particle:nth-child(6) { left: 75%; top: 50%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(7) { left: 85%; top: 35%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(8) { left: 90%; top: 80%; animation-delay: 4s; animation-duration: 6s; }
.particle:nth-child(9) { left: 45%; top: 45%; animation-delay: 3.5s; animation-duration: 11s; width: 6px; height: 6px; }
.particle:nth-child(10) { left: 55%; top: 25%; animation-delay: 5s; animation-duration: 8s; width: 3px; height: 3px; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-xl) var(--space-lg);
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-glow);
  margin-bottom: var(--space-md);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

.hero-text h1 {
  margin-bottom: var(--space-md);
  color: var(--white);
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-dim);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Image / Sara AI */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-robot-wrapper {
  position: relative;
  width: 420px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-robot-wrapper img {
  width: 340px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.2));
}

/* Glow ring behind Sara */
.hero-robot-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.12) 0%, transparent 70%);
  animation: pulse-ring 4s ease-in-out infinite;
  z-index: 1;
}

.hero-robot-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(0, 168, 255, 0.15);
  animation: rotate-slow 20s linear infinite;
  z-index: 1;
}

.hero-robot-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 15px var(--blue-glow);
}

/* Floating info cards around Sara */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 3;
  white-space: nowrap;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card i {
  margin-right: 0.4rem;
  color: var(--blue-glow);
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 25%;
  left: -15%;
  animation-delay: 1.5s;
}

.floating-card.card-3 {
  bottom: 10%;
  right: -5%;
  animation-delay: 3s;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  z-index: 1;
}

.about-text {
  padding: var(--space-md) 0;
}

.about-text p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ============================================================
   TRACTION SHOWCASE
   ============================================================ */
.traction-section {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
}

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

.traction-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-top: var(--space-sm);
}

/* --- Traction Grid Layouts --- */
.traction-grid {
  display: grid;
  gap: var(--space-md);
  justify-items: center;
}

.traction-primary {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: var(--space-lg);
}

.traction-secondary {
  grid-template-columns: repeat(2, 1fr);
  max-width: 380px;
  margin: 0 auto;
}

/* --- Traction Card --- */
.traction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.traction-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,168,255,0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.traction-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,168,255,0.08);
}

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

.traction-card[data-color="cyan"]:hover {
  border-color: rgba(0,229,255,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(0,229,255,0.12);
}

.traction-card[data-color="orange"]:hover {
  border-color: rgba(255,107,0,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(255,107,0,0.12);
}

.traction-card[data-color="gold"]:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.12);
}

.traction-card[data-color="blue"]:hover {
  border-color: rgba(0,168,255,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(0,168,255,0.12);
}

/* --- SVG Ring Gauge --- */
.traction-ring-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: var(--space-sm);
}

.traction-ring-wrapper.small {
  width: 120px;
  height: 120px;
}

.traction-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.traction-ring .ring-bg {
  fill: none;
  stroke-width: 6;
  opacity: 0.6;
}

.traction-ring .ring-progress {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 364.4;
  stroke-dashoffset: 364.4;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 6px rgba(0,168,255,0.25));
}

.traction-ring-wrapper.small .ring-progress {
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
}

.traction-ring .ring-glow {
  fill: none;
  stroke-width: 12;
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

.traction-card.visible .ring-glow {
  opacity: 0.4;
}

/* Inner value display */
.traction-value-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  z-index: 2;
}

.traction-ring-wrapper.small .traction-value-inner {
  font-size: 1.4rem;
}

.traction-value-inner .counter-prefix {
  color: var(--gold);
  font-size: 0.9em;
  margin-right: 1px;
}

.traction-value-inner .counter-suffix {
  font-size: 0.75em;
  color: var(--white-dim);
  margin-left: 1px;
}

/* Animated dot on ring circumference */
.ring-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease 2s;
  z-index: 3;
}

.traction-card.visible .ring-dot {
  opacity: 1;
  animation: ring-dot-pulse 2s ease-in-out infinite;
}

.ring-dot[data-color="cyan"] {
  background: #00e5ff;
  box-shadow: 0 0 10px rgba(0,229,255,0.6), 0 0 20px rgba(0,229,255,0.3);
}

.ring-dot[data-color="orange"] {
  background: #ff6b00;
  box-shadow: 0 0 10px rgba(255,107,0,0.6), 0 0 20px rgba(255,107,0,0.3);
}

.ring-dot[data-color="gold"] {
  background: #c9a84c;
  box-shadow: 0 0 10px rgba(201,168,76,0.6), 0 0 20px rgba(201,168,76,0.3);
}

.ring-dot[data-color="blue"] {
  background: #00a8ff;
  box-shadow: 0 0 10px rgba(0,168,255,0.6), 0 0 20px rgba(0,168,255,0.3);
}

@keyframes ring-dot-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.7; }
}

/* --- Traction Label --- */
.traction-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Traction Icon Badge --- */
.traction-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.traction-card:hover .traction-icon-badge {
  opacity: 1;
  border-color: rgba(255,255,255,0.2);
}

/* --- Feedback Section --- */
.traction-feedback {
  text-align: center;
  position: relative;
}

.feedback-label-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.feedback-label-header i {
  color: var(--gold);
}

/* --- Growth Line --- */
.traction-growth-line {
  margin-top: var(--space-lg);
  width: 100%;
  height: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 2s, transform 1s ease 2s;
}

.traction-section.growth-visible .traction-growth-line {
  opacity: 1;
  transform: translateY(0);
}

.growth-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 3s cubic-bezier(0.16, 1, 0.3, 1) 1.5s;
}

.traction-section.growth-visible .growth-path {
  stroke-dashoffset: 0;
}

.growth-area {
  opacity: 0;
  transition: opacity 1.5s ease 2.5s;
}

.traction-section.growth-visible .growth-area {
  opacity: 1;
}

.growth-dot {
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(255,107,0,0.6));
}

.traction-section.growth-visible .growth-dot {
  opacity: 1;
  transition: opacity 0.5s ease 3s;
}

/* --- Traction Card Animations --- */
.traction-card {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.traction-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-bounce);
}

.traction-primary .traction-card:nth-child(1).visible { transition-delay: 0.1s; }
.traction-primary .traction-card:nth-child(2).visible { transition-delay: 0.25s; }
.traction-primary .traction-card:nth-child(3).visible { transition-delay: 0.4s; }
.traction-primary .traction-card:nth-child(4).visible { transition-delay: 0.55s; }

.traction-secondary .traction-card:nth-child(1).visible { transition-delay: 0.7s; }
.traction-secondary .traction-card:nth-child(2).visible { transition-delay: 0.85s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .traction-primary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .traction-primary {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .traction-ring-wrapper {
    width: 110px;
    height: 110px;
  }

  .traction-ring-wrapper.small {
    width: 100px;
    height: 100px;
  }

  .traction-value-inner {
    font-size: 1.3rem;
  }

  .traction-ring-wrapper.small .traction-value-inner {
    font-size: 1.15rem;
  }

  .traction-secondary {
    max-width: 300px;
  }
}

/* ============================================================
   SARA AI MODULES — BENTO GRID
   ============================================================ */
#modules {
  background: var(--navy-medium);
  position: relative;
  overflow: hidden;
}

#modules::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-md);
}

.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-glow), var(--gold));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

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

.bento-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-blue);
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.15), rgba(0, 168, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-glow);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 168, 255, 0.15);
  flex-shrink: 0;
}

.bento-card h4 {
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-size: 1.15rem;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 168, 255, 0.1);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--space-sm);
  width: fit-content;
}

.bento-card.featured {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(255, 107, 0, 0.05));
  border-color: rgba(201, 168, 76, 0.2);
}

.bento-card.featured .bento-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(255, 107, 0, 0.1));
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.2);
}

.bento-card.featured .bento-tag {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
}

/* Sara AI mini avatar in modules section */
.module-sara {
  width: 60px;
  height: auto;
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0.15;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.bento-card:hover .module-sara {
  opacity: 0.35;
}

/* ============================================================
   ENTERPRISE WI-FI SECTION
   ============================================================ */
#enterprise {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

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

.enterprise-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.enterprise-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.enterprise-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.feature-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateX(8px);
}

.feature-check {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 168, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.enterprise-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enterprise-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating network nodes animation */
.network-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  opacity: 0.4;
  animation: node-pulse 3s ease-in-out infinite;
}

.node::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-glow), transparent);
  top: 50%;
  left: 100%;
  opacity: 0.3;
}

.node:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.node:nth-child(2) { top: 40%; left: 70%; animation-delay: 0.5s; }
.node:nth-child(3) { top: 65%; left: 30%; animation-delay: 1s; }
.node:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.5s; }
.node:nth-child(5) { top: 25%; left: 85%; animation-delay: 2s; }

/* ============================================================
   CUSTOMERS SECTION — SCROLLING LOGOS
   ============================================================ */
#customers {
  background: var(--navy-medium);
  padding: var(--space-xl) 0;
  overflow: hidden;
  position: relative;
}

#customers::before,
#customers::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

#customers::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-medium), transparent);
}

#customers::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-medium), transparent);
}

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: fit-content;
}

.marquee-row-1 {
  animation: marquee-scroll 45s linear infinite;
}

.marquee-row-2 {
  animation: marquee-scroll-reverse 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 90px;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-smooth);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo-card:hover {
  border-color: var(--gold);
  background: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.logo-card img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.logo-card:hover img {
  transform: scale(1.02);
}

/* ============================================================
   PARTNERS SECTION — GRID WITH LOGOS
   ============================================================ */
#partners {
  background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-deep) 100%);
  padding: var(--space-xl) 0;
  overflow: hidden;
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
  text-align: center;
}

.partner-card:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.partner-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.partner-card:hover img {
  transform: scale(1.1);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.partner-card:hover .partner-name {
  color: var(--blue-glow);
}


/* ============================================================
   WHY CHOOSE US — ANIMATED SLIDER
   ============================================================ */
#why-us {
  background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}

.usp-slider-wrapper {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 500px;
}

/* Left Pane: Visuals */
.usp-visual-pane {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, var(--navy-card), var(--navy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--glass-border);
  overflow: hidden;
}

.usp-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s var(--ease-smooth);
  pointer-events: none;
}

.usp-visual.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.usp-icon-3d {
  font-size: 8rem;
  color: var(--white);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.3));
}

.usp-icon-3d svg {
  width: 140px;
  height: 140px;
  stroke-width: 1.5;
}

.usp-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: pulse-ring 4s ease-in-out infinite;
}

.usp-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

/* Right Pane: Content Tabs */
.usp-content-pane {
  flex: 1.2;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.usp-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.usp-tab {
  position: relative;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid transparent;
  background: transparent;
  overflow: hidden;
}

.usp-tab:hover {
  background: rgba(255,255,255,0.03);
}

.usp-tab.active {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.usp-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: none;
}

.usp-tab.active .usp-tab-progress {
  width: 100%;
  transition: width 5s linear;
}

.usp-tab-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.usp-tab-header i {
  color: var(--gold);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.usp-tab.active .usp-tab-header i {
  opacity: 1;
  transform: scale(1.1);
}

.usp-tab-header h3 {
  font-size: 1.15rem;
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.usp-tab.active .usp-tab-header h3 {
  color: var(--white);
}

.usp-tab-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
}

.usp-tab.active .usp-tab-body {
  max-height: 150px;
  opacity: 1;
  margin-top: var(--space-sm);
}

.usp-tab-body p {
  font-size: 0.95rem;
  padding-left: 2.5rem;
  margin: 0;
}

@media (max-width: 900px) {
  .usp-slider-wrapper {
    flex-direction: column;
  }
  .usp-visual-pane {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .usp-content-pane {
    padding: var(--space-md);
  }
  .usp-tab-progress {
    bottom: 0; left: 0; top: 0;
    width: 3px; height: 0%;
    background: linear-gradient(180deg, var(--gold), var(--orange));
  }
  .usp-tab.active .usp-tab-progress {
    height: 100%; width: 3px;
    transition: height 5s linear;
  }
}

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
#contact {
  background: var(--navy-deep);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-xs);
}

.contact-form-wrapper > p {
  margin-bottom: var(--space-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.03);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  margin-top: var(--space-sm);
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

/* Offices */
.offices-wrapper {
  padding: var(--space-md) 0;
}

.offices-wrapper h3 {
  margin-bottom: var(--space-lg);
}

.office-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.office-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--glass-border);
}

.office-card:last-child {
  border-bottom: none;
}

.office-pin {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 0, 0.15);
}

.office-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.office-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Email/Phone contact */
.contact-direct {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-direct-item i {
  color: var(--orange);
  font-size: 1.1rem;
  width: 20px;
}

.contact-direct-item a {
  color: var(--white-dim);
  font-size: 0.95rem;
}

.contact-direct-item a:hover {
  color: var(--orange);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
}

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

/* ============================================================
   SCROLL REVEAL BASE STATES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    order: -1;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .hero-robot-wrapper {
    width: 300px;
    height: 380px;
  }

  .hero-robot-wrapper img {
    width: 240px;
  }

  .hero-robot-glow {
    width: 260px;
    height: 260px;
  }

  .hero-robot-ring {
    width: 260px;
    height: 260px;
  }

  .floating-card {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .floating-card.card-1 {
    right: -5%;
  }

  .floating-card.card-2 {
    left: -5%;
  }

  .floating-card.card-3 {
    right: -5%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-height: 400px;
  }

  .enterprise-content {
    grid-template-columns: 1fr;
  }

  .enterprise-visual {
    display: none;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
  }

  .why-us-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-column: span 1;
  }

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

  .logo-card {
    min-width: 150px;
    height: 75px;
  }

  .logo-card img {
    max-width: 110px;
    max-height: 50px;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .partner-card {
    padding: 1rem 0.5rem;
  }

  .partner-card img {
    width: 48px;
    height: 48px;
  }

  .partner-name {
    font-size: 0.7rem;
  }
}
