/* ═══════════════════════════════════════════════════════════════
   FITPASSIO LANDING — Complete CSS (Enhanced Navbar)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary:        #C62828;
  --primary-start:  #E53935;
  --primary-end:    #C62828;
  --inverse-primary:#CF6679;
  --on-primary:     #FFDAD6;
  --bg:             #0A0A0A;
  --surface:        #121212;
  --surface-2:      #1E1E1E;
  --surface-3:      #2A2A2A;
  --text:           #FFFFFF;
  --text-muted:     rgba(255,255,255,0.65);
  --text-dim:       rgba(255,255,255,0.35);
  --border:         rgba(198,40,40,0.25);
  --border-subtle:  rgba(255,255,255,0.06);
  --glow:           rgba(229,57,53,0.4);
  --glow-soft:      rgba(229,57,53,0.18);
  --font:           'Noto Sans', 'Noto Sans Tamil', sans-serif;
  --grad:           linear-gradient(135deg, var(--primary-start), var(--primary-end));
  --grad-subtle:    linear-gradient(135deg, rgba(229,57,53,0.12), rgba(198,40,40,0.06));

  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  60px;
  --space-3xl:  100px;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full:100px;

  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NOISE TEXTURE ───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED NAVBAR — Modern, refined, with better interactions
   ═══════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(229, 57, 53, 0.18);
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  padding: 10px 48px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(229, 57, 53, 0.1);
  border-bottom-color: rgba(229, 57, 53, 0.3);
}

/* Logo area */
nav .flex.items-center.gap-3 {
  transition: transform 0.25s ease;
}
nav .flex.items-center.gap-3:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 38px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease;
}
nav .flex.items-center.gap-3:hover .logo-img {
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.25);
}

nav .text-white.font-extrabold {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

nav .text-primary {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Nav links */
nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

nav ul li a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav ul li a:hover {
  color: var(--text);
}

nav ul li a:hover::after {
  width: 100%;
}

/* CTA buttons in nav */
nav .hidden.md\\:flex.items-center.gap-3 a {
  transition: all 0.25s ease;
}

nav .hidden.md\\:flex.items-center.gap-3 a:first-child {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

nav .hidden.md\\:flex.items-center.gap-3 a:first-child:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

nav .hidden.md\\:flex.items-center.gap-3 a:last-child {
  background: var(--grad);
  color: white;
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px var(--glow-soft);
  border: 1px solid rgba(255,255,255,0.1);
}

nav .hidden.md\\:flex.items-center.gap-3 a:last-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--glow);
  filter: brightness(1.1);
}

/* Hamburger menu button */
nav button.md\\:hidden {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

nav button.md\\:hidden:hover {
  background: rgba(229, 57, 53, 0.15);
  border-color: rgba(229, 57, 53, 0.4);
  transform: scale(1.05);
}

/* ── LOGO (global) ───────────────────────────────────────────── */
.logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: var(--radius-sm);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base),
              border-color var(--transition-base);
  text-decoration: none;
  font-family: var(--font);
  border: none;
  outline: none;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-start);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 20px var(--glow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px var(--glow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  background: transparent;
  color: var(--primary-start);
  border: 1.5px solid rgba(198,40,40,0.5);
}

.btn-outline:hover {
  background: rgba(198,40,40,0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 64px 90px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(229,57,53,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(207,102,121,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.28);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-start);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-start);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* ── PHONE MOCKUPS ───────────────────────────────────────────── */
.phones-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  z-index: 1;
}

.phones-scene::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(229,57,53,0.1) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.phone-mockup {
  width: 230px;
  height: 475px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55),
              0 0 0 1px rgba(255,255,255,0.04);
  background: #0a0a0a;
  flex-shrink: 0;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-main {
  z-index: 3;
  transform: translateY(0) scale(1.06);
  box-shadow: 0 60px 120px rgba(0,0,0,0.65),
              0 0 60px rgba(229,57,53,0.12),
              0 0 0 1.5px rgba(229,57,53,0.15);
}

.phone-left {
  position: absolute;
  left: -10px;
  transform: rotate(-8deg) translateY(24px) scale(0.88);
  z-index: 2;
  opacity: 0.65;
}

.phone-right {
  position: absolute;
  right: -10px;
  transform: rotate(8deg) translateY(24px) scale(0.88);
  z-index: 2;
  opacity: 0.65;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 7s ease-in-out infinite;
}

.orb-1 {
  width: 90px;
  height: 90px;
  background: rgba(229,57,53,0.14);
  top: 50px;
  right: 10px;
  animation-delay: 0s;
  filter: blur(22px);
}

.orb-2 {
  width: 55px;
  height: 55px;
  background: rgba(207,102,121,0.18);
  bottom: 90px;
  left: 20px;
  animation-delay: 2.5s;
  filter: blur(16px);
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-18px) translateX(6px); }
  66%       { transform: translateY(-8px) translateX(-4px); }
}

/* ── SECTIONS ────────────────────────────────────────────────── */
section {
  padding: var(--space-3xl) 64px;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-start);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 400;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP — Fixed single-row marquee
   ════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 60px;
}

/* Fade edges */
.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--surface) 40%, transparent);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--surface) 40%, transparent);
}

.trust-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  font-weight: 700;
  flex-shrink: 0;
  padding: 0 28px 0 64px;
  position: relative;
  z-index: 3;
}

.trust-marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.trust-marquee {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
}

.trust-marquee:hover {
  animation-play-state: paused;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast), border-color var(--transition-fast),
              background var(--transition-fast);
  cursor: default;
}

.trust-item:hover {
  color: var(--text);
  border-color: rgba(229,57,53,0.3);
  background: var(--surface-3);
}

.trust-item .ti-icon {
  font-size: 15px;
  line-height: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #1c0808, #181010);
  border-top: 1px solid rgba(198,40,40,0.2);
  border-bottom: 1px solid rgba(198,40,40,0.2);
  padding: 70px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(229,57,53,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow),
              border-color var(--transition-slow),
              box-shadow var(--transition-slow);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,57,53,0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.feature-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35),
              0 0 0 1px rgba(229,57,53,0.08);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 22px;
  transition: transform var(--transition-base), background var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: rgba(229,57,53,0.16);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.how-step {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: default;
}

.how-step:last-child { border-bottom: none; }

.how-step:hover .step-num {
  background: var(--grad);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 18px var(--glow-soft);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-start);
  flex-shrink: 0;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base),
              color var(--transition-base);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -0.2px;
  margin-top: 10px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.68;
}

.how-visual {
  position: relative;
}

.screenshot-stack {
  position: relative;
  width: 100%;
  height: 500px;
}

.screenshot-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transition: transform var(--transition-slow);
}

.screenshot-stack:hover .sc-1 { transform: rotate(-5deg) translateY(-6px); }
.screenshot-stack:hover .sc-2 { transform: rotate(4deg) translateY(-6px); }

.sc-1 {
  width: 210px;
  height: 410px;
  top: 0;
  left: 20px;
  transform: rotate(-4deg);
  z-index: 1;
}

.sc-2 {
  width: 210px;
  height: 410px;
  top: 60px;
  right: 20px;
  transform: rotate(3deg);
  z-index: 2;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── SCREENSHOTS SHOWCASE ────────────────────────────────────── */
.screenshots-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.ss-phone {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  flex-shrink: 0;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.ss-phone:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px var(--glow-soft);
}

.ss-phone img {
  display: block;
  object-fit: cover;
  object-position: top;
}

.ss-main { width: 220px; height: 450px; }
.ss-side { width: 190px; height: 380px; }
.ss-sm   { width: 165px; height: 330px; }

/* ── WHO IS IT FOR ───────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow),
              border-color var(--transition-slow),
              box-shadow var(--transition-slow);
}

.audience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,57,53,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.audience-emoji {
  font-size: 40px;
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}

.audience-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.7px;
}

.audience-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 28px;
}

.audience-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.audience-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.audience-perks li:hover { color: var(--text); }

.perk-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-start);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229,57,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 1.06;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── STORE BUTTONS ───────────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  cursor: pointer;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  text-decoration: none;
  color: var(--text);
}

.store-btn:hover {
  background: var(--surface-3);
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.store-icon { font-size: 27px; }
.store-label { display: flex; flex-direction: column; text-align: left; }
.store-sub  { font-size: 10px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 1px; }
.store-name { font-size: 15px; font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  padding: 72px 64px 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 260px;
  margin-top: 16px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  color: var(--text);
}

.social-btn:hover {
  background: rgba(229,57,53,0.14);
  border-color: rgba(229,57,53,0.28);
  transform: translateY(-2px);
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 64px;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition-base);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--text); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav,
  nav.scrolled {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 80px 32px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 32px 70px;
    gap: 56px;
    text-align: center;
  }

  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .phones-scene { height: 440px; }
  .phone-mockup { width: 185px; height: 380px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 52px; }
  .audience-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 32px;
    gap: 36px;
  }

  .trust-label { padding-left: 32px; }
  .divider { margin: 0 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .screenshots-row { gap: 14px; }
  .cta-section { padding: 80px 32px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .ss-side, .ss-sm { display: none; }
  .ss-main { width: 260px; height: 520px; }
  .stat-num { font-size: 38px; }
  .phone-left, .phone-right { display: none; }
  .phone-main { transform: scale(1); }
  .trust-label { display: none; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}