/* ============================================================
   E TASK APP - Landing Page Stylesheet
   Ultra Modern | Luxury | Enterprise Grade
   ============================================================ */



/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --primary:        #7c3aed;
  --primary-light:  #a78bfa;
  --primary-dark:   #4c1d95;
  --accent:         #06b6d4;
  --accent-light:   #67e8f9;
  --accent-glow:    rgba(6,182,212,0.25);
  --gold:           #f59e0b;
  --bg-base:        #060612;
  --bg-surface:     #0d0d2b;
  --bg-card:        rgba(15,15,40,0.85);
  --glass:          rgba(255,255,255,0.04);
  --glass-border:   rgba(255,255,255,0.08);
  --text-primary:   #f0f0ff;
  --text-secondary: #94949e;
  --text-muted:     #5a5a72;
  --gradient-hero:  linear-gradient(135deg, #060612 0%, #0d0d2b 50%, #12082a 100%);
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-card:  linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
  --shadow-glow:    0 0 60px rgba(124,58,237,0.35);
  --shadow-card:    0 20px 60px rgba(0,0,0,0.55);
  --radius-card:    20px;
  --radius-pill:    999px;
  --transition:     all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  text-align: left;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── Selection ─────────────────────────────────────────── */
::selection { background: var(--primary); color: #fff; }

/* ─── Utility ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, #7c3aed, #06b6d4, #f59e0b, #7c3aed);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  to { background-position: 300% center; }
}
.section-padding { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Animated Background Grid ─────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,58,237,0.18) 0%, transparent 70%);
}

/* ─── Noise Overlay ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6,6,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}
.nav-logo:hover .logo-img {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--gradient-brand);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(124,58,237,0.6) !important; color: #fff !important; }

/* ─── Mobile Menu Toggle ─────────────────────────────────── */
.nav-toggle {
  background: none; border: none; cursor: pointer;
  display: none; flex-direction: column; gap: 6px;
  z-index: 1001; position: relative;
}
.nav-toggle span {
  display: block; width: 28px; height: 2px;
  background: var(--text-primary);
  border-radius: 4px; transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.4) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  min-height: calc(100vh - 80px);
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 70px; /* Reduced fixed height */
  overflow: hidden;
}
#typing-text {
  min-height: 1.2em;
}
.hero-description {
  font-size: 19px;
  color: var(--text-secondary);
  margin: 0 auto 48px;
  max-width: 820px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
  text-align: center;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.4s ease both;
  margin-bottom: 60px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: #fff;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 0 30px rgba(124,58,237,0.5), 0 8px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,0.7), 0 16px 40px rgba(0,0,0,0.4); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  color: var(--text-primary);
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.1); transform: translateY(-2px); }

/* Statistics removed to maintain clean typography-first layout */

/* Visual elements removed to maintain clean typography-first layout */

/* ═══════════════════════════════════════════════════════════
   WAVE DIVIDER
   ═══════════════════════════════════════════════════════════ */
.wave-divider { position: relative; overflow: hidden; }
.wave-divider svg { display: block; }

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════ */
#features {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 0 50px rgba(124,58,237,0.18), 0 20px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

.feature-card-inner { position: relative; z-index: 1; text-align: center; }

.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 22px;
  position: relative;
}
.feature-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.15;
}
.icon-purple { background: rgba(124,58,237,0.2); color: var(--primary-light); }
.icon-purple::before { background: var(--primary); }
.icon-cyan   { background: rgba(6,182,212,0.2);  color: var(--accent-light); }
.icon-cyan::before   { background: var(--accent); }
.icon-gold   { background: rgba(245,158,11,0.2); color: var(--gold); }
.icon-gold::before   { background: var(--gold); }
.icon-green  { background: rgba(16,185,129,0.2); color: #34d399; }
.icon-green::before  { background: #10b981; }
.icon-rose   { background: rgba(244,63,94,0.2);  color: #fb7185; }
.icon-rose::before   { background: #f43f5e; }
.icon-indigo { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.icon-indigo::before { background: #6366f1; }

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}

/* Media types row */
.media-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}
.media-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE SECTION
   ═══════════════════════════════════════════════════════════ */
#why {
  position: relative;
  overflow: hidden;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.why-table {
  width: 100%;
  border-collapse: collapse;
}
.why-table thead tr {
  background: linear-gradient(90deg, rgba(124,58,237,0.2), rgba(6,182,212,0.1));
  border-bottom: 1px solid var(--glass-border);
}
.why-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.why-table td {
  padding: 18px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.why-table tbody tr:last-child td { border-bottom: none; }
.why-table tbody tr {
  transition: var(--transition);
}
.why-table tbody tr:hover { background: rgba(124,58,237,0.06); }
.feature-name {
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-name .fi { font-size: 16px; color: var(--primary-light); }
.benefit-text { color: var(--text-secondary); line-height: 1.5; }

.why-content { }
.why-intro {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: justify;
  hyphens: auto;
}
.why-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-point-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
  margin-top: 2px;
}
.why-point-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.why-point-text p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════ */
#quote {
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(6,182,212,0.05) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-size: 80px;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: -20px;
  font-family: Georgia, serif;
}
.quote-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 30px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
#cta {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.cta-pill {
  display: inline-block;
  background: linear-gradient(90deg, rgba(124,58,237,0.2), rgba(6,182,212,0.15));
  border: 1px solid rgba(124,58,237,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: justify;
  hyphens: auto;
}
.download-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.dl-btn img {
  display: block;
  transition: var(--transition);
}
.dl-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.4), 0 0 20px rgba(124,58,237,0.1);
}
.dl-btn:hover img {
  filter: brightness(1.2);
}

/* Platform badges */
.platform-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.platform-badge .dot-sm {
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy span { color: var(--primary-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-First
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet landscape (≤1100px) ─────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner     { grid-template-columns: 1fr; gap: 50px; }
  .hero-inner    { gap: 40px; }
}

/* ── Tablet portrait (≤900px) ───────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 20px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-table th, .why-table td { padding: 14px 16px; }
  .section-header { margin-bottom: 50px; }
}

/* ── Mobile (≤768px) ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Layout */
  .section-padding { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* Navbar */
  .nav-toggle { display: flex; z-index: 10001; }
  
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(8, 8, 20, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 10000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10% 12%;
    gap: 0;
    
    /* Ultra Modern Clip-Path Animation */
    clip-path: circle(0% at 92% 5%);
    transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    
    /* Reset counters for indexing */
    counter-reset: menu-counter;
  }
  
  .nav-links.open {
    clip-path: circle(150% at 92% 5%);
    pointer-events: auto;
  }
  
  /* Glowing Orb inside menu */
  .nav-links::after {
    content: '';
    position: absolute;
    top: 10%; right: -5%;
    width: 300px; height: 300px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 16px;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }
  /* Staggered entry */
  .nav-links.open li:nth-child(1) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.28s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.31s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.34s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.37s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.40s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.43s; }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0.4;
    transform: scaleX(0.8);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 15px var(--primary-light);
  }

  .nav-links a:active {
    color: var(--accent);
    transform: translateX(10px);
  }
  
  .nav-links .nav-cta {
    margin-top: 40px;
    font-size: 18px !important;
    padding: 18px 42px;
    letter-spacing: 0;
    background: var(--gradient-brand);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(124,58,237,0.3);
  }
  .nav-links .nav-cta::before { display: none; }

  /* Hero */
  #hero { padding-top: 85px; min-height: auto; padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 100%; }
  .hero-title { font-size: clamp(32px, 9vw, 52px); letter-spacing: -1px; line-height: 1.1; }
  .hero-subtitle { font-size: 16px; }
  .hero-description { font-size: 14px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 32px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* Floating cards — keep inside frame on mobile */
  .floating-card { padding: 8px 12px; font-size: 11px; }
  .floating-card-1 { left: 4px; top: 4%; }
  .floating-card-2 { right: 4px; bottom: 8%; }
  .card-icon { width: 26px; height: 26px; font-size: 13px; }

  /* Buttons — min touch target 44px */
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
    min-height: 48px;
  }
  .hero-actions { gap: 12px; flex-wrap: wrap; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 28px 22px; }

  /* Why table — horizontal scroll on small screens */
  .why-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .why-table { min-width: 380px; }
  .why-table th { font-size: 10px; padding: 12px 14px; }
  .why-table td { font-size: 13px; padding: 14px; }

  /* Why points */
  .why-points { gap: 16px; }
  .why-point-icon { width: 40px; height: 40px; font-size: 16px; }

  /* Quote */
  .quote-mark { font-size: 60px; }
  .quote-text { font-size: clamp(18px, 5vw, 26px); }

  /* CTA */
  .download-btns { gap: 12px; }
  .dl-btn { min-width: 160px; padding: 12px 20px; }
  .platform-badges { gap: 14px; font-size: 12px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; }

  /* Reduce heavy animations for performance */
  .hero-orb { filter: blur(60px); }
}

/* ── Small Mobile (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
  .download-btns { flex-direction: column; align-items: center; }
  .dl-btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats { gap: 14px; }
  .stat-value { font-size: 20px; }
  .section-title { letter-spacing: -1px; }
  .feature-card { padding: 24px 18px; }
  .logo-text { font-size: 18px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .platform-badges { gap: 10px; }
  .platform-badge { font-size: 11px; }
  .quote-text { font-size: 18px; }
  .cta-title { letter-spacing: -1px; }
}

/* ── Very small (≤360px) ────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .floating-card { display: none; } /* hide on very tiny screens */
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col:last-child { text-align: left !important; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
}
