/* ==========================================================
   CLONEX ESPORTS - SIGNATURE WHITE & BLUE DESIGN SYSTEM
   Palette:
     • Canvas: Pure White (#ffffff) • Sky White (#f8fbff)
     • Brand Primary: Royal Tech Blue (#0066ff) • Electric Azure (#0284c7)
     • Heading: Deep Midnight Navy (#0b192c) • Body: Cool Slate (#475569)
   Spacing: Generous, Luxurious, Modern SaaS Breathing Space
   Hero Layout: 3D Monumental Typography Behind Phone Device + Cloud Sky
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  /* Brand Tech Blue Palette */
  --brand-50: #f0f7ff;
  --brand-100: #e0effe;
  --brand-200: #bae0fd;
  --brand-300: #7cc8fb;
  --brand-400: #38bdf8;
  --brand-500: #0284c7;
  --brand-primary: #0066ff; /* Signature Vibrant Royal Tech Blue */
  --brand-hover: #004edb;
  --brand-navy: #0b192c;
  --brand-soft-bg: #f0f7ff;
  --brand-light-border: #dbeafe;

  /* Accent & Badges */
  --accent-gold: #f59e0b;
  --accent-gold-bg: #fffbeb;
  --accent-gold-border: #fde68a;

  /* Neutrals: Clean White & Soft Slate Surfaces */
  --neutral-white: #ffffff;
  --neutral-50: #f8fbff;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0b192c;

  /* Semantic UI Tokens */
  --bg-primary: #ffffff;
  --bg-section-alt: #f8fbff;
  --bg-card: #ffffff;
  --border-subtle: #e2e8f0;
  --border-card: #e2e8f0;
  --border-focus: #0066ff;

  --text-heading: #0b192c;
  --text-body: #475569;
  --text-muted: #64748b;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Hide Webflow badge permanently */
.w-webflow-badge, [class*="webflow-badge"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================
   TOP BAR: TRANSLUCENT FROSTED CRYSTAL NAVBAR
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 28px;
  pointer-events: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 9999px;
  padding: 12px 24px 12px 20px;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  pointer-events: auto;
  transition: all 0.25s ease;
}

.nav-container:hover {
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 16px 36px -4px rgba(0, 102, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 11px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
  transition: transform 0.25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-heading);
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--brand-primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--neutral-600);
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-primary);
  background: var(--brand-soft-bg);
}

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

.nav-apk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 9999px;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-apk-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 102, 255, 0.45);
  color: #ffffff;
}

.nav-menu-toggle {
  display: none;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  color: var(--brand-primary);
  cursor: pointer;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  touch-action: manipulation;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.nav-menu-toggle:hover {
  background: #dbeafe;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: scale(1.04);
}

.nav-menu-toggle:active {
  transform: scale(0.96);
}

.nav-menu-toggle.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.nav-menu-toggle .close-icon {
  display: none;
}

.nav-menu-toggle.active .hamburger-icon {
  display: none;
}

.nav-menu-toggle.active .close-icon {
  display: block;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 102, 255, 0.06);
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: flex !important;
  animation: drawerSlideDown 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  color: var(--text-heading);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.drawer-link:hover {
  background: var(--brand-soft-bg);
  color: var(--brand-primary);
}

.drawer-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  border-radius: 16px;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 12px;
  box-shadow: 0 8px 22px rgba(0, 102, 255, 0.35);
}

/* ==========================================================
   HERO SECTION: 3D LAYERED (MONUMENTAL FONT BEHIND PHONE)
   Generous Spacing, Cloud Sky Horizon, White & Blue Theme
   ========================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 120px;
  text-align: center;
  overflow: hidden;
  background-color: #ebf5ff;
  background-image: 
    linear-gradient(180deg, rgba(235, 245, 255, 0.45) 0%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0.95) 88%, #ffffff 100%),
    url('assets/cloud-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 4;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Monumental Background Typography (BEHIND THE PHONE IMAGE) */
.hero-monumental-bg {
  width: 100%;
  margin-bottom: -45px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.monumental-line-1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.8vw, 114px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  text-shadow: 0 4px 30px rgba(11, 25, 44, 0.08);
  text-transform: uppercase;
}

.monumental-line-2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.8vw, 114px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 55%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  display: inline-block;
}

/* Phone Device in Hand (Overlapping in Front of the Letters) */
.hero-phone-wrapper {
  position: relative;
  z-index: 5;
  margin: -30px auto 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-img {
  max-width: 480px;
  width: 78vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(11, 25, 44, 0.18)) 
          drop-shadow(0 6px 20px rgba(0, 102, 255, 0.14));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-phone-img:hover {
  transform: translateY(-6px);
}

/* Supporting Description */
.hero-description {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 32px;
  color: var(--neutral-600);
  max-width: 720px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 6;
}

/* Central Prominent CTA Buttons */
.hero-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 6;
}

.hero-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 40px;
  min-height: 68px;
  border-radius: 18px;
  background: var(--brand-primary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px -3px rgba(0, 102, 255, 0.4), 0 4px 8px -2px rgba(0, 102, 255, 0.2);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-main-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -4px rgba(0, 102, 255, 0.5);
  color: #ffffff;
}

.hero-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-micro-sub {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.btn-main-label {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.15;
}

.btn-amber-chip {
  padding: 6px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-alt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  min-height: 68px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid var(--neutral-200);
  color: var(--text-heading);
  font-family: var(--font-title);
  font-size: 16.5px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: all 0.22s ease;
}

.hero-alt-btn:hover {
  background: var(--brand-soft-bg);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

/* Minimal Social Proof Bar */
.hero-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 6;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  padding: 9px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.proof-chip svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ==========================================================
   MINIMAL & GENEROUSLY SPACED SECTIONS (WHITE & BLUE)
   ========================================================== */
.why-us-section, .how-section, .features-section {
  padding: 140px 24px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.why-us-section {
  background-color: var(--bg-primary);
}

.how-section {
  background-color: var(--bg-section-alt);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.features-section {
  background-color: var(--bg-primary);
}

.why-us-container, .how-container, .features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 76px;
  position: relative;
  z-index: 5;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.16;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 18px;
  line-height: 30px;
  color: var(--neutral-600);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================
   ELEVATED WHITE & BLUE CARDS
   ========================================================== */
.why-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 24px;
  padding: 8px 4px 28px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.why-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.why-card {
  flex: 0 0 340px;
  width: 340px;
  min-width: 340px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  box-sizing: border-box;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-primary);
  box-shadow: 0 24px 48px -8px rgba(0, 102, 255, 0.15), 0 4px 12px rgba(15, 23, 42, 0.03);
}

.why-icon-pod {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.why-card:hover .why-icon-pod {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 8px 22px rgba(0, 102, 255, 0.3);
}

.why-card-title {
  font-family: var(--font-title);
  font-size: 21px;
  line-height: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.why-card-desc {
  font-size: 15.5px;
  line-height: 27px;
  color: var(--neutral-600);
}

/* ==========================================================
   HOW IT WORKS SECTION (4 STEPS)
   ========================================================== */
.how-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 24px;
  padding: 8px 4px 28px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.how-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.how-card {
  flex: 0 0 310px;
  width: 310px;
  min-width: 310px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  padding: 38px 28px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  box-sizing: border-box;
}

.how-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary);
  box-shadow: 0 22px 42px -6px rgba(0, 102, 255, 0.13);
}

.how-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.step-icon-pod {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 0.25s ease;
}

.how-card:hover .step-icon-pod {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.step-num {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-primary);
  background: var(--brand-soft-bg);
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid var(--brand-light-border);
}

.step-title {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  line-height: 26px;
  color: var(--neutral-600);
  flex: 1 1 auto;
}

/* ==========================================================
   FEATURES SECTION
   ========================================================== */
.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 24px;
  padding: 8px 4px 28px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.features-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.feature-card {
  flex: 0 0 310px;
  width: 310px;
  min-width: 310px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  box-sizing: border-box;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary);
  box-shadow: 0 22px 42px -6px rgba(0, 102, 255, 0.13);
}

.feat-icon-pod {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 26px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.feature-card:hover .feat-icon-pod {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.feature-title {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  line-height: 26px;
  color: var(--neutral-600);
  margin-bottom: 28px;
  flex-grow: 1;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 10px;
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  width: fit-content;
}

/* ==========================================================
   PRE-FOOTER CTA & 4-COLUMN FOOTER
   ========================================================== */
.footer-section {
  position: relative;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--neutral-200);
  padding: 110px 24px 52px;
  width: 100%;
  z-index: 20;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner {
  background: linear-gradient(135deg, #0066ff 0%, #004edb 50%, #0284c7 100%);
  border-radius: 32px;
  padding: 68px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 88px;
  box-shadow: 0 28px 60px -12px rgba(0, 102, 255, 0.4);
  color: #ffffff;
}

.cta-content {
  max-width: 660px;
}

.cta-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.94);
}

.footer-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  min-height: 64px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--brand-primary);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.22s ease;
}

.footer-download-btn:hover {
  background: var(--brand-soft-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--brand-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 56px;
  margin-bottom: 68px;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--neutral-600);
  font-size: 15px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
  transform: translateX(3px);
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  color: var(--text-heading);
  font-size: 14px;
  font-weight: 600;
  word-break: break-all;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.email-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.community-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: 800;
  transition: all 0.2s ease;
}

.social-pill:hover {
  transform: translateY(-2px);
}

.pill-telegram {
  background: var(--brand-soft-bg);
  border: 1px solid var(--brand-light-border);
  color: var(--brand-primary);
}

.pill-telegram:hover {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--neutral-200);
  padding-top: 36px;
}

.copyright {
  color: var(--neutral-500);
  font-size: 14px;
}

.legal-inline-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-inline-links a {
  color: var(--neutral-500);
  font-size: 14px;
}

.legal-inline-links a:hover {
  color: var(--brand-primary);
}

/* ==========================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   NO MOBILE BOTTOM BAR - CLEAN FREE SCROLLING
   ========================================================== */
@media screen and (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-apk-btn {
    display: none !important;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .hero-monumental-bg {
    margin-bottom: -35px;
  }
  .monumental-line-1, .monumental-line-2 {
    font-size: clamp(38px, 8.5vw, 72px);
  }
  .why-us-section, .how-section, .features-section {
    padding: 100px 24px;
  }
  .why-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
  }
  .how-card, .feature-card {
    flex: 0 0 270px;
    width: 270px;
    min-width: 270px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: 0 !important;
  }

  .header {
    padding: 10px 14px;
  }

  .nav-container {
    padding: 8px 10px 8px 14px;
    border-radius: 9999px;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.1), 0 2px 6px -1px rgba(15, 23, 42, 0.05);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand-title {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .nav-apk-btn {
    display: none !important;
  }

  .nav-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
  }

  .mobile-nav-drawer {
    top: 72px;
    left: 14px;
    right: 14px;
    padding: 20px 16px;
    border-radius: 20px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 70px;
    min-height: auto;
  }

  .hero-monumental-bg {
    margin-bottom: -22px;
  }

  .monumental-line-1, .monumental-line-2 {
    font-size: clamp(32px, 8.4vw, 48px);
    line-height: 1.05;
  }

  .hero-phone-wrapper {
    margin: -20px auto 28px;
  }

  .hero-phone-img {
    max-width: 340px;
    width: 86vw;
  }

  .hero-description {
    font-size: 15.5px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 32px;
    gap: 14px;
  }

  .hero-main-btn, .hero-alt-btn {
    width: 100%;
    min-height: 60px;
  }

  .hero-proof-bar {
    gap: 12px;
  }

  .proof-chip {
    font-size: 13px;
    padding: 7px 14px;
  }

  .why-us-section, .how-section, .features-section {
    padding: 70px 20px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  /* Horizontal card rails: side-by-side with smooth auto scroll and NO visible bar */
  .why-grid, .how-grid, .features-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 20px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    cursor: grab;
    user-select: none;
    /* Completely hide scrollbars on all browsers */
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .why-grid.dragging, .how-grid.dragging, .features-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
  }

  .why-grid::-webkit-scrollbar,
  .how-grid::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .why-grid::-webkit-scrollbar-track,
  .how-grid::-webkit-scrollbar-track,
  .features-grid::-webkit-scrollbar-track,
  .why-grid::-webkit-scrollbar-thumb,
  .how-grid::-webkit-scrollbar-thumb,
  .features-grid::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
  }

  /* Compact side-by-side cards */
  .why-card, .how-card, .feature-card {
    flex: 0 0 232px !important;
    width: 232px !important;
    min-width: 232px !important;
    max-width: 240px !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
    padding: 22px 18px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid var(--neutral-200) !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: stretch !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .why-card-desc, .feature-desc, .step-desc {
    flex-grow: 1 !important;
  }

  .why-icon-pod, .feat-icon-pod {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin-bottom: 14px !important;
  }

  .why-icon-pod svg, .feat-icon-pod svg {
    width: 20px !important;
    height: 20px !important;
  }

  .why-card-title, .feature-title {
    font-size: 15.5px !important;
    line-height: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .why-card-desc, .feature-desc {
    font-size: 13px !important;
    line-height: 19.5px !important;
    color: var(--neutral-600) !important;
  }

  .feature-chip {
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    width: fit-content;
    margin-top: auto;
  }

  .how-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 14px !important;
  }

  .step-icon-pod {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
  }

  .step-icon-pod svg {
    width: 20px !important;
    height: 20px !important;
  }

  .step-num {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: var(--brand-primary) !important;
  }

  .step-title {
    font-size: 15.5px !important;
    line-height: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .step-desc {
    font-size: 13px !important;
    line-height: 19.5px !important;
    color: var(--neutral-600) !important;
  }

  /* ==========================================================
     MOBILE FOOTER REDESIGN
     ========================================================== */
  .footer-section {
    padding: 56px 16px 36px !important;
    background: #f8fafc !important;
    border-top: 1px solid var(--neutral-200) !important;
  }

  .cta-banner {
    padding: 32px 20px !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 22px !important;
    margin-bottom: 40px !important;
    background: linear-gradient(140deg, #0062ff 0%, #004bd9 60%, #0284c7 100%) !important;
    box-shadow: 0 16px 36px -8px rgba(0, 102, 255, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .cta-content {
    max-width: 100% !important;
  }

  .cta-title {
    font-size: 22px !important;
    line-height: 28px !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
  }

  .cta-desc {
    font-size: 14px !important;
    line-height: 21px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 22px !important;
  }

  .footer-download-btn {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 14px !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
    background: #ffffff !important;
    color: var(--brand-primary) !important;
  }

  /* 2-Column Structured Mobile Footer */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
    margin-bottom: 36px !important;
  }

  /* Col 1: Brand Info Card (Full Width) */
  .footer-col-brand {
    grid-column: 1 / -1 !important;
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col-brand .brand {
    justify-content: center;
    margin-bottom: 10px !important;
  }

  .footer-col-brand p {
    font-size: 13px !important;
    line-height: 20px !important;
    color: var(--neutral-500) !important;
    margin-bottom: 14px !important;
    max-width: 320px;
  }

  .email-pill {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    margin-top: 0 !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  /* Col 2 & 3: Navigation & Legal sit side-by-side in 2 clean cards */
  .footer-col-nav,
  .footer-col-legal {
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: 18px;
    padding: 18px 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  }

  .footer-col-title {
    font-size: 12px !important;
    letter-spacing: 0.07em !important;
    margin-bottom: 12px !important;
    color: var(--text-heading) !important;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--neutral-100);
  }

  .footer-links {
    gap: 9px !important;
  }

  .footer-links a {
    font-size: 13px !important;
    color: var(--neutral-600) !important;
    padding: 2px 0;
  }

  /* Col 4: Community & Support (Full Width Card) */
  .footer-col-community {
    grid-column: 1 / -1 !important;
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    text-align: center;
  }

  .footer-col-community .footer-col-title {
    border-bottom: none;
    margin-bottom: 6px !important;
  }

  .footer-col-community p {
    font-size: 13px !important;
    line-height: 19px !important;
    margin-bottom: 14px !important;
  }

  .community-row {
    justify-content: center;
  }

  .pill-telegram {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 20px !important;
    font-size: 14px !important;
    border-radius: 13px !important;
    background: #0088cc !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.28) !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 14px !important;
    padding-top: 24px !important;
    border-top: 1px solid var(--neutral-200) !important;
  }

  .copyright {
    font-size: 12.5px !important;
    color: var(--neutral-400) !important;
  }

  .legal-inline-links {
    justify-content: center !important;
    gap: 10px !important;
  }

  .legal-inline-links a {
    font-size: 12px !important;
    color: var(--neutral-500) !important;
    padding: 4px 8px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 6px;
  }
}

@media screen and (max-width: 420px) {
  .header {
    padding: 8px 10px;
  }

  .nav-container {
    padding: 6px 8px 6px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .nav-menu-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .mobile-nav-drawer {
    top: 66px;
    left: 10px;
    right: 10px;
    padding: 16px 14px;
  }

  .drawer-link {
    padding: 11px 14px;
    font-size: 15px;
  }

  .why-card, .how-card, .feature-card {
    flex: 0 0 215px !important;
    width: 215px !important;
    min-width: 215px !important;
    max-width: 220px !important;
    padding: 18px 14px !important;
    align-self: stretch !important;
    height: auto !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-col-nav,
  .footer-col-legal {
    grid-column: 1 / -1 !important;
  }
}

