/* ═══════════════════════════════════════════════
   Zekara App — style.css  (Dark theme)
   Deep navy palette · Plus Jakarta Sans · Mobile-first
═══════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────── */
:root {
  --indigo:        #6366F1;
  --indigo-dark:   #4F46E5;
  --indigo-mid:    #818CF8;
  --indigo-glow:   rgba(99,102,241,0.25);
  --sky:           #38BDF8;
  --sky-glow:      rgba(56,189,248,0.15);
  --amber:         #F59E0B;

  --bg:            #08090F;
  --bg-alt:        #0D0E1A;
  --bg-card:       #111221;
  --bg-card-hover: #161729;
  --bg-input:      #0F1020;

  --text:          #ECEDF5;
  --text-soft:     #8385A3;
  --text-muted:    #4A4D68;
  --white:         #FFFFFF;

  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.14);
  --border-accent: rgba(99,102,241,0.35);

  --grad-primary:  linear-gradient(135deg, #6366F1 0%, #38BDF8 100%);
  --grad-hero:     radial-gradient(ellipse at 15% 0%, rgba(99,102,241,0.18) 0%, transparent 55%),
                   radial-gradient(ellipse at 85% 100%, rgba(56,189,248,0.12) 0%, transparent 55%);
  --grad-card:     linear-gradient(145deg, #111221, #0D0E1A);
  --grad-dark:     linear-gradient(145deg, #0A0B14, #080910);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --shadow-sm:     0 1px 4px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-indigo: 0 8px 32px rgba(99,102,241,0.4);

  --font-display: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', 'Poppins', system-ui, sans-serif;

  --nav-height: 68px;
  --max-width:  1200px;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(8,9,15,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(8,9,15,0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── LOGO ───────────────────────────────────── */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(99,102,241,0.45));
  transition: transform 0.2s;
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.06); }

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-logo-app {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--sky);
  margin-left: 2px;
  vertical-align: super;
  letter-spacing: 0.3px;
}

/* ── NAV LINKS ──────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--text); }

/* ── NAV DROPDOWN ───────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(2px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  border: 1px solid var(--border-hover);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 12px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  color: var(--text-soft) !important;
  background: none !important;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.07) !important;
  color: var(--text) !important;
}
.nav-app-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

/* ── NAV ACTIONS ────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  transition: all 0.22s;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-indigo);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(99,102,241,0.5);
}
.btn--secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn--large { padding: 14px 38px; font-size: 1rem; }

/* ── STORE BUTTON ───────────────────────────── */
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  min-width: 155px;
}
.store-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-md);
}
.store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn--large { padding: 13px 24px; min-width: 185px; }
.store-btn--large .store-icon { width: 30px; height: 30px; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-sub {
  font-size: 0.6rem;
  font-weight: 600;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.store-btn-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.store-btn--large .store-btn-main { font-size: 1.15rem; }
.store-btn--unavailable {
  opacity: 0.45;
  cursor: default;
}
.store-btn--unavailable:hover {
  transform: none;
  background: rgba(255,255,255,0.07);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

/* ── SECTION COMMONS ────────────────────────── */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── LABEL CHIP ─────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--indigo-mid);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ── HOME HERO ──────────────────────────────── */
.home-hero {
  padding-top: var(--nav-height);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}
/* Ambient grid */
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  pointer-events: none;
}

.home-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.home-hero-content { flex: 1; max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.12);
  color: var(--indigo-mid);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(99,102,241,0.28);
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--grad-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.home-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}
.home-hero-content h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero-content > p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero-visual { flex: 1; display: flex; justify-content: center; }

/* ── PHONE MOCKUP ───────────────────────────── */
.phone-mockup {
  position: relative;
  width: 250px;
  flex-shrink: 0;
}
.phone-shell {
  background: linear-gradient(150deg, #5a5a5a 0%, #2e2e2e 25%, #181818 50%, #2a2a2a 75%, #111 100%);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.12),
    inset 0 -2px 4px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,0,0,0.8),
    0 32px 80px rgba(99,102,241,0.18),
    0 8px 24px rgba(0,0,0,0.5);
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
  position: relative;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.phone-glow {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 50px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.4) 0%, transparent 70%);
  filter: blur(16px);
}

/* ── APPS SECTION ───────────────────────────── */
.apps-section { background: var(--bg-alt); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ── APP CARD ───────────────────────────────── */
.app-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;     /* clip inner rounded corners */
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.app-card-art {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.app-card-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.app-card:hover .app-card-art img { transform: scale(1.04); }

.app-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(99,102,241,0.4);
}

.app-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-card-genre {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--indigo-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.app-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}
.app-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
  flex: 1;
  margin-top: 4px;
}
.app-card-footer {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Coming soon card */
.app-card--soon {
  border-style: dashed;
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.app-card--soon:hover {
  border-color: rgba(255,255,255,0.12);
}
.app-card-art--placeholder {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(56,189,248,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.soon-placeholder-icon { font-size: 3rem; opacity: 0.4; }

/* ── APP PAGE — HERO ────────────────────────── */
.app-hero {
  padding-top: var(--nav-height);
  background: var(--bg);
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}
.app-hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.app-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.app-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,9,15,0.99) 0%, rgba(8,9,15,0.65) 50%, rgba(8,9,15,0.2) 100%);
}
.app-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 88px;
  width: 100%;
  color: var(--white);
}
.app-hero-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.app-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.app-hero-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 32px;
}
.app-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── APP FEATURES ───────────────────────────── */
.app-features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── APP SCREENSHOTS ────────────────────────── */
.app-screenshots { background: var(--bg-alt); }

.screenshots-layout {
  display: flex;
  align-items: center;
  gap: 72px;
}
.screenshots-text { flex: 1; max-width: 420px; }
.screenshots-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.screenshots-text p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.screenshots-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 20px 0 28px;
}
.screenshots-list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.screenshots-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--indigo-mid);
  font-weight: 700;
}

.screenshots-carousel-wrap { flex: 1; display: flex; justify-content: center; }
.screenshots-carousel { position: relative; width: 100%; max-width: 240px; }

.screenshot-frame {
  display: none;
  padding: 9px;
  border-radius: 44px;
  background: linear-gradient(150deg, #5a5a5a 0%, #2e2e2e 25%, #181818 50%, #2a2a2a 75%, #111 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.12),
    inset 0 -2px 4px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,0,0,0.8),
    0 24px 64px rgba(99,102,241,0.18),
    0 8px 20px rgba(0,0,0,0.5);
}
.screenshot-frame.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.screen-inner {
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
  position: relative;
}
.screen-inner img { width: 100%; height: 100%; object-fit: cover; }
.screen-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  padding: 0;
}
.dot.active {
  background: var(--grad-primary);
  width: 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(99,102,241,0.4);
}

/* ── APP DOWNLOAD CTA ───────────────────────── */
.app-cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
}
.app-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.app-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.app-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.app-cta-inner > p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.65;
}
.cta-store-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); }

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-brand-logo-app {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--sky);
  margin-left: 2px;
  vertical-align: super;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.6; color: var(--text-soft); max-width: 240px; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-soft); }

/* ── ANIMATIONS ─────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ── RESPONSIVE — Tablet ────────────────────── */
@media (max-width: 1024px) {
  .screenshots-layout { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,9,15,0.98);
    backdrop-filter: blur(20px);
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-links.open li { padding: 2px 0; }
  .nav-links.open a { padding: 9px 14px; font-size: 0.95rem; display: block; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; pointer-events: all;
    transform: none; box-shadow: none;
    border: none; background: transparent;
    padding: 0 0 0 14px; display: none; min-width: unset;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  .home-hero-inner { flex-direction: column; padding: 60px 24px 72px; text-align: center; }
  .hero-actions { justify-content: center; }
  .phone-mockup { width: 210px; }
  .screenshots-layout { flex-direction: column; }
  .screenshots-text { max-width: 100%; text-align: center; }
  .screenshots-list li { text-align: left; }
  .footer-main { flex-direction: column; gap: 32px; padding: 40px 20px 28px; }
  .footer-links { gap: 28px; }
  .section-container { padding: 72px 20px; }
}

@media (max-width: 480px) {
  :root { --nav-height: 62px; }
  .section-container { padding: 56px 16px; }
  .home-hero-inner { padding: 48px 16px 64px; }
  .apps-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-store-buttons { flex-direction: column; align-items: center; }
  .store-buttons { flex-direction: column; }
}
