/* 
 * Android Mobility — Premium Theme v3
 * High-contrast section alternation + scroll animations
 */

/* ─────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────── */
:root {
  /* Dark Palette */
  --bg-black: #000000;
  --bg-charcoal: #0d1117;
  --bg-navy: #0a1628;
  --bg-card-dark: #111827;
  --bg-card-darker: #0c1220;

  /* Light Palette */
  --bg-light: #f0f6fc;
  --bg-white: #ffffff;
  --bg-light-blue: #e6f2ff;
  --bg-card-light: #ffffff;

  /* Text */
  --text-white: #ffffff;
  --text-light: #c9d1d9;
  --text-muted: #8b949e;
  --text-dark: #0d1117;
  --text-dark-sub: #57606a;

  /* Accents */
  --cyan: #00d4ff;
  --purple: #7c3aed;
  --blue: #2563eb;
  --green: #10b981;

  /* Gradients */
  --grad-accent: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --grad-accent-soft: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
  --grad-glow: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.3), transparent);
  --grad-dark-to-navy: linear-gradient(180deg, #000000 0%, #0a1628 100%);
  --grad-navy-to-dark: linear-gradient(180deg, #0a1628 0%, #000000 100%);

  /* Layout */
  --section-pad: 110px;
  --max-w: 1280px;

  /* Effects */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 50px;
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --ease: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────────────
   GLOBAL RESET
   ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-black) !important;
  color: var(--text-white) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: inherit !important;
}

/* Header font fallback — Graphik is CORS-blocked on localhost,
   so provide a sans-serif fallback chain */
#header,
#header .ubermenu,
#header .ubermenu-target,
#header .ubermenu-target-title {
  font-family: "Graphik Medium", "Graphik Regular", 'Inter', system-ui, -apple-system, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

p {
  margin: 0 0 1em !important;
  color: inherit !important;
  font-size: inherit !important;
  font-family: inherit !important;
}


/* ─────────────────────────────────────
   UTILITIES
   ───────────────────────────────────── */
.container {
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.section-pad {
  padding: var(--section-pad) 0;
  position: relative;
}

.text-grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Section headers */
.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  display: inline-block;
}

.sec-head h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.75px !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.sec-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 12px auto 0;
}

/* Buttons */
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  background: var(--grad-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--ease);
}

.btn-grad:hover::before {
  background: rgba(255, 255, 255, 0.1);
}

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3), 0 6px 20px rgba(124, 58, 237, 0.2);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--ease);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}


/* ═══════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════ */
/* GSAP handles .reveal class */
.reveal {
  /* opacity and transform managed by GSAP */
  will-change: transform, opacity;
}

/* Simple CSS Reveal for Contact Section */
.simple-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.simple-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.simple-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}


/* ═══════════════════════════════════
   SECTION 1 — HERO
   Background: Pure Black
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: var(--bg-black) !important;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-img {
  max-height: 500px;
  filter: drop-shadow(0 30px 60px rgba(0, 212, 255, 0.12));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}


/* ═══════════════════════════════════
   SECTION 2 — SOLUTIONS
   Background: Deep Navy
   ═══════════════════════════════════ */
.solutions {
  background: var(--bg-navy);
  position: relative;
}

/* Top glow edge */
.solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.solutions .sec-tag {
  color: var(--cyan);
}

.sol-grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 36px;
  align-items: center;
}

.sol-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  text-align: left;
  cursor: pointer;
  transition: var(--ease);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.tab-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--ease);
}

.tab-btn h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 !important;
  color: var(--text-white);
}

.tab-btn p {
  font-size: 0.8rem;
  margin: 0 !important;
  color: var(--text-muted);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.2);
}

.tab-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 3px;
  background: var(--grad-accent);
  animation: progressVertical 5s linear forwards;
}

@keyframes progressVertical {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.tab-btn.active .tab-icon {
  background: var(--grad-accent);
  color: #fff;
}

.tab-btn.active h3 {
  color: var(--cyan);
}

.sol-display {
  position: relative;
  height: 500px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  /* transition handled by GSAP */
}

.sol-img.active {
  opacity: 1;
  z-index: 2;
}


/* ═══════════════════════════════════
   SECTION 3 — PRODUCTS
   Background: Pure Black (contrast from navy)
   ═══════════════════════════════════ */
.products {
  background: var(--bg-black);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.products .sec-tag {
  color: var(--purple);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.prod-card {
  background: var(--bg-card-dark);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Gradient top accent on hover */
.prod-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.12);
}

.prod-card:hover::after {
  transform: scaleX(1);
}

.prod-img-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--r-sm);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.prod-img {
  max-height: 160px;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-img {
  transform: scale(1.08);
}

.prod-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.prod-spec {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.load-more {
  margin-top: 48px;
  text-align: center;
}


/* ═══════════════════════════════════
   SECTION 4 — PARTNERS
   Background: LIGHT (maximum contrast!)
   ═══════════════════════════════════ */
.partners {
  background: linear-gradient(180deg, var(--bg-light-blue) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative orb */
.partners::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.partners .sec-tag {
  color: var(--purple);
}

.partners .sec-head h2 {
  color: var(--text-dark);
}

.partners .sec-desc {
  color: var(--text-dark-sub);
}

/* Logo Carousel */
.logo-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logo-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
}

.logo-track.scroll-left {
  animation: marqueeLeft 40s linear infinite;
}

.logo-track.scroll-right {
  animation: marqueeRight 40s linear infinite;
}

.logo-track-wrapper:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.partner-logo {
  height: 46px;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}


/* ═══════════════════════════════════
   SECTION 5 — STATS
   Background: Charcoal (dark section)
   ═══════════════════════════════════ */
.stats {
  background: var(--bg-charcoal);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats .sec-tag {
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

/* Gradient top line */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.08);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}


/* ═══════════════════════════════════
   SECTION 6 — USE CASES
   Background: Deep Navy (contrast from charcoal)
   ═══════════════════════════════════ */
.use-cases {
  background: var(--bg-navy);
  position: relative;
}

.use-cases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.use-cases .sec-tag {
  color: var(--cyan);
}

.uc-card {
  position: relative;
  height: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.uc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 48px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  color: white;
}

.uc-logo {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.uc-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}


/* ═══════════════════════════════════
   SECTION 7 — LEADERS
   Background: Pure Black (contrast from navy)
   ═══════════════════════════════════ */
.leaders {
  background: var(--bg-black);
  position: relative;
}

.leaders::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.leaders .sec-tag {
  color: var(--purple);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.leader-card {
  background: var(--bg-card-dark);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--ease);
}

.leader-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.1);
  transform: translateY(-6px);
}

.leader-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.06);
  transition: var(--ease);
}

.leader-card:hover .leader-img-wrap {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.leader-role {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}


/* ═══════════════════════════════════
   SECTION 8 — CONTACT
   Background: WHITE (light section)
   ═══════════════════════════════════ */
/* ═══════════════════════════════════
   SECTION 8 — CONTACT
   Background: Dark Navy + Blue Glow (Homepage Style)
   ═══════════════════════════════════ */
.contact {
  background: radial-gradient(circle at 0% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.contact::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact .sec-tag {
  color: var(--cyan);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
}

.contact-info>p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
}

/* Hide pills in this new layout or style them minimally */
.contact-pills {
  display: none;
}

.contact-form-card {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

.contact-form-card h3 {
  display: none;
  /* Hide header inside form */
}

.form-input {
  background: #f8fafc !important;
  border: 1px solid transparent !important;
  color: #334155 !important;
  padding: 14px 24px !important;
  border-radius: 17px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  transition: var(--ease);
  outline: none !important;
  font-weight: 500 !important;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  background: #ffffff !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
}

textarea.form-input {
  border-radius: 24px;
  resize: none;
}

.contact form button {
  background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
}

.contact form button:hover {
  background: linear-gradient(90deg, #7c3aed 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


/* ═══════════════════════════════════
   SECTION 9 — BLOG
   Background: WHITE (light section)
   ═══════════════════════════════════ */
.blog {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}

.blog .sec-tag {
  color: var(--purple);
}

.blog .sec-head h2 {
  color: var(--text-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: var(--ease);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}

.blog-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--ease);
}

.blog-link:hover {
  color: var(--purple);
  gap: 12px;
}

.blog-link i {
  font-size: 0.7rem;
  transition: var(--ease);
}


/* ═══════════════════════════════════
   SECTION 10 — FAQ
   Background: Pure Black (final contrast)
   ═══════════════════════════════════ */
.faq {
  background: var(--bg-black);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.faq .sec-tag {
  color: var(--purple);
}

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: var(--r-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-card-dark) !important;
  color: var(--text-white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 24px;
  border: none;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 212, 255, 0.06) !important;
  color: var(--cyan) !important;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(0.5) sepia(1) hue-rotate(155deg) saturate(5);
}

.accordion-body {
  color: var(--text-light);
  padding: 0 24px 20px;
  background: var(--bg-card-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════
   FOOTER
   Background: Deepest dark
   ═══════════════════════════════════ */
footer {
  background: #020202;
  padding: 80px 0 32px;
  color: var(--text-muted);
  font-size: 0.88rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--ease);
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--ease);
}

.social-links a:hover {
  background: var(--grad-accent);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.copyright p {
  margin: 0;
}


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-img {
    max-height: 320px;
  }

  .sol-grid {
    grid-template-columns: 1fr;
  }

  .sol-display {
    height: 300px;
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px;
  }

  .sec-head h2 {
    font-size: 1.8rem;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }
}