/* ====================================
   HYZR Landing Page – styles.css
   ==================================== */

/* ---- CSS Variables ---- */
:root {
  --accent: #15803D;
  --accent-light: #16A34A;
  --accent-dark: #14532D;
  --navy: #000000;
  --navy-mid: #0A0A0A;
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  --bg: #000000;
  --bg-soft: #050505;
  --bg-card: #0F0F0F;
  --border: #1F2937;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.8);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Subtle Map Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('page-overlay.png');
  background-size: 800px; /* Repeating pattern size */
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
  filter: grayscale(1) invert(0.5); /* Make it subtle and blend with dark theme */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Inter', sans-serif; cursor: pointer; border: none; background: none; }
input { font-family: 'Inter', sans-serif; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 800; 
  line-height: 1.15; 
}
h4 { font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 28px rgba(22, 163, 74, 0.45); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); background: rgba(22, 163, 74, 0.05); }
.btn-white {
  background: #FFFFFF;
  color: #15803D;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-large { padding: 16px 36px; font-size: 1rem; }
.text-accent { color: var(--accent); }

/* ---- Section Shared ---- */
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 14px;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 52px;
  text-align: center;
}

/* ======================
   NAVBAR
   ====================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.header-logo {
  height: 50px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 70px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.875rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; width: fit-content; }

/* ======================
   HERO
   ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}
.hero-content { flex: 1; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 16px;
  animation: fadeInDown 0.7s ease 0.2s both;
}
.hero-services {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease 0.3s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInDown 0.7s ease 0.4s both;
}
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.phone-mockup { position: relative; }
.hero-app-img {
  width: 320px;
  max-width: 90vw;
  border-radius: 36px;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(22, 163, 74, 0.2));
  animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 40px 80px rgba(22, 163, 74, 0.2));
  }
  50% {
    transform: translateY(-20px) rotate(-1.5deg);
    filter: drop-shadow(0 60px 100px rgba(22, 163, 74, 0.3));
  }
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.12), transparent);
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 0; left: -100px; background: radial-gradient(circle, rgba(139,92,246,0.08), transparent); }
.shape-3 { width: 200px; height: 200px; top: 50%; right: 200px; background: radial-gradient(circle, rgba(22,163,74,0.07), transparent); }

/* ======================
   COUNTER
   ====================== */
.counter-section {
  background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-inner { position: relative; max-width: 860px; margin: 0 auto; }
.counter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.counter-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}
.counter-number.bump { transform: scale(1.06); color: var(--accent-light); }
.counter-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  margin-bottom: 52px;
}
.counter-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ======================
   SERVICES
   ====================== */
.services-section {
  padding: 96px 24px;
  background: var(--bg-soft);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 24px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
  transform: translateY(-6px);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.service-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }
.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #EC4899, #F472B6);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ======================
   SCREENSHOTS / CAROUSEL
   ====================== */
.screenshots-section {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.screenshots-section .section-inner { margin-bottom: 0; }
.screenshots-section .section-sub { margin-bottom: 48px; }
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 16px 0 24px;
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 5;
}
.carousel-btn:hover { background: var(--accent); color: white; border-color: var(--accent); transform: scale(1.08); }
.carousel-btn.prev { margin-left: 24px; }
.carousel-btn.next { margin-right: 24px; }
.carousel-track-outer { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ss-real-img {
  height: 480px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.slide-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.app-screenshot {
  width: 220px;
  background: #111111;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-slide:hover .app-screenshot { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(15,22,40,0.4); }
.ss-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  background: var(--navy);
}
.ss-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 0.05em;
}
.ss-time { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.ss-greeting {
  padding: 10px 14px 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
}
.ss-section-title {
  padding: 14px 14px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
}
.ss-map-mini { overflow: hidden; height: 120px; }
.ss-map-mini svg { width: 100%; height: 100%; }
.ss-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  margin: 4px 10px;
  border-radius: 10px;
}
.ss-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ss-dot.green { background: #34D399; }
.ss-dot.red { background: var(--accent); }
.ss-input-box {
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
}
.ss-input-box.placeholder { color: rgba(255,255,255,0.35); font-weight: 400; }
.ss-chips {
  display: flex;
  gap: 6px;
  padding: 8px 10px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ss-chips::-webkit-scrollbar { display: none; }
.ss-chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
}
.ss-chip.active { background: rgba(22,163,74,0.25); border-color: rgba(22,163,74,0.5); color: #FF7E82; }
.driver-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.driver-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.driver-avatar.sm { width: 32px; height: 32px; font-size: 0.85rem; }
.driver-info { flex: 1; }
.driver-name { font-size: 0.75rem; font-weight: 700; color: white; }
.driver-name.sm { font-size: 0.72rem; }
.driver-meta { font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.driver-plate { font-size: 0.62rem; color: rgba(255,255,255,0.4); margin-top: 2px; font-family: monospace; }
.driver-price { font-size: 0.8rem; font-weight: 800; color: #34D399; }
.ss-confirm-btn {
  margin: 10px;
  padding: 12px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  width: calc(100% - 20px);
  transition: background 0.2s;
}
.sakhi-btn { background: #EC4899; }
.sakhi-btn:hover { background: #DB2777; }
.ss-track-map { height: 130px; overflow: hidden; }
.ss-track-map svg { width: 100%; height: 100%; }
.ss-eta-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  margin: 8px 10px;
  border-radius: 12px;
}
.ss-eta-info { flex: 1; text-align: center; }
.ss-eta-num { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; color: #34D399; }
.ss-eta-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.ss-eta-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.12); }
.ss-driver-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 14px;
}
.ss-actions { display: flex; gap: 6px; margin-left: auto; }
.ss-icon-btn {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}
.sakhi-hero {
  text-align: center;
  padding: 20px 14px 10px;
}
.sakhi-icon { font-size: 2.5rem; margin-bottom: 8px; }
.sakhi-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 8px;
}
.sakhi-desc { font-size: 0.68rem; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 400; }
.sakhi-features { padding: 0 14px 8px; }
.sakhi-f {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sakhi-f span { font-size: 0.9rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ======================
   ABOUT
   ====================== */
.about-section {
  padding: 96px 24px;
  background: var(--bg-soft);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.about-text { flex: 1; }
.about-text .section-tag { display: block; margin-bottom: 16px; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1rem;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.about-visual { flex: 0 0 auto; }
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 260px;
}
.about-stat-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.about-stat-card.primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-color: transparent; }
.about-stat-card.primary .asc-num,
.about-stat-card.primary .asc-label,
.about-stat-card.primary .asc-icon { color: white; }
.asc-icon { font-size: 1.8rem; display: flex; align-items: center; justify-content: center; }
.stat-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.asc-num { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--text-primary); }
.asc-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }

/* ======================
   PARTNER
   ====================== */
.partner-section {
  background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partner-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.ps-shape {
  position: absolute;
  border-radius: 50%;
}
.ps1 {
  width: 500px; height: 500px;
  top: -150px; right: -150px;
  background: radial-gradient(circle, rgba(22,163,74,0.15), transparent);
}
.ps2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent);
}
.partner-inner { position: relative; max-width: 720px; margin: 0 auto; }
.partner-icon { font-size: 3rem; margin-bottom: 20px; animation: floatAnim 3s ease-in-out infinite; }
.partner-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: white;
  margin-bottom: 16px;
}
.partner-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.partner-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.perk {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  transition: background var(--transition), transform var(--transition);
}
.perk:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.perk-icon { font-size: 1.6rem; }
.perk span { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.perk-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(48%) sepia(79%) saturate(464%) hue-rotate(94deg) brightness(88%) contrast(90%);
}

/* ======================
   FOOTER
   ====================== */
.footer { background: #000000; padding: 72px 24px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .nav-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); max-width: 260px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--accent); transform: translateY(-3px); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ======================
   ANIMATIONS
   ====================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .about-inner { gap: 48px; }
  .about-card-stack { min-width: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 20px 60px;
    gap: 40px;
  }
  .hero-tagline { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .phone-frame { width: 240px; height: 480px; }
  .hero-app-img { width: 260px; }

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

  .carousel-btn.prev { margin-left: 12px; }
  .carousel-btn.next { margin-right: 12px; }

  .about-inner { flex-direction: column; gap: 40px; }
  .about-text { text-align: center; }
  .section-title.left { text-align: center; }
  .trust-badges { justify-content: center; }
  .about-card-stack { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-stat-card { min-width: 160px; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 24px 16px 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .partner-perks { gap: 10px; }
  .perk { min-width: 100px; padding: 16px; }
  .counter-stats { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 18px 20px; }
  .stat-item:last-child { border-bottom: none; }
}
