/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #F26B5E;
  --orange: #FF9100;
  --gold: #FFBB00;
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --white: #FFFFFF;
  --dark: #0F0F0F;
  --text: #1A1A1A;
  --text-light: #6B7280;
  --gradient: linear-gradient(135deg, var(--coral), var(--orange), var(--gold));
  --gradient-h: linear-gradient(90deg, var(--coral), var(--orange), var(--gold));
  --gradient-subtle: linear-gradient(135deg, rgba(242,107,94,0.08), rgba(255,145,0,0.06), rgba(255,187,0,0.08));
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 40px rgba(255,145,0,0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  padding-top: max(16px, env(safe-area-inset-top));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: all 0.2s;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-h);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.navbar.scrolled .lang-switcher {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.navbar.scrolled .lang-btn {
  color: var(--text-light);
}

.lang-btn.active {
  background: var(--gradient);
  color: var(--white);
}

.navbar.scrolled .lang-btn.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    linear-gradient(160deg, rgba(242,107,94,0.08) 0%, rgba(255,145,0,0.05) 50%, rgba(255,187,0,0.08) 100%),
    var(--bg);
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(242,107,94,0.45) 0%, rgba(255,145,0,0.35) 50%, rgba(255,187,0,0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,145,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 55%;
  text-align: left;
  min-width: 420px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 0 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255,145,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,145,0,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Phone mockup */
.hero-phone {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  margin-right: -60px;
}

.phone-mockup {
  width: min(580px, 40vw);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.25));
}

/* ===== FEATURES ===== */
.features {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

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

.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,145,0,0.15);
  background: var(--white);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(255,145,0,0.25);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  stroke: var(--white);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,145,0,0.1) 0%, transparent 60%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.how-it-works::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,107,94,0.08) 0%, transparent 60%);
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-subtitle {
  color: rgba(255,255,255,0.5);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
}


.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.step-reverse {
  direction: rtl;
}

.step-reverse > * {
  direction: ltr;
}

.step-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(255,145,0,0.35);
  position: relative;
  z-index: 2;
}

.step-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,145,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.step-card-badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.step-card p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
}

.step-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.step-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  background: var(--gradient);
  opacity: 0.12;
  filter: blur(20px);
  z-index: 0;
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step-image img {
  transform: translateY(-6px);
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--bg);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  border: 1.5px solid transparent;
  letter-spacing: -0.01em;
}

.category-pill:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,145,0,0.15);
  background: var(--white);
}

.cat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: all 0.35s;
}

.category-pill:hover .cat-icon {
  color: var(--coral);
  transform: scale(1.15);
}

/* ===== SHOWCASE ===== */
.showcase {
  padding: 140px 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.showcase::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,107,94,0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

.showcase-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.showcase-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-phone:hover {
  transform: translateY(-12px);
}

.showcase-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transition: box-shadow 0.4s;
}

.showcase-phone:hover img {
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.showcase-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

.showcase-dots {
  display: none;
}

/* ===== DOWNLOAD ===== */
.download {
  padding: 140px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(242,107,94,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,187,0,0.14) 0%, transparent 50%);
  pointer-events: none;
}

/* Mesh-like noise texture */
.download::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.01) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px;
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
}

.download h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.download p {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  margin-bottom: 48px;
  line-height: 1.7;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(255,145,0,0.3);
}

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge-soon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: var(--white);
  cursor: default;
  min-width: 210px;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}

.store-badge-soon:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
}

.store-badge-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.download-social {
  margin-top: 56px;
}

.download-social-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.download-social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}

.download-social-links a svg {
  width: 18px;
  height: 18px;
}

.download-social-links a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: #080808;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.footer-social a:hover {
  background: var(--gradient);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.5);
  stroke: rgba(255,255,255,0.5);
}

.footer-social a:hover svg {
  color: var(--white);
  stroke: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grids */
.feature-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.35s; }

.category-pill.reveal { transition-delay: calc(var(--i, 0) * 0.04s); }

.showcase-phone.reveal:nth-child(1) { transition-delay: 0s; }
.showcase-phone.reveal:nth-child(2) { transition-delay: 0.1s; }
.showcase-phone.reveal:nth-child(3) { transition-delay: 0.2s; }
.showcase-phone.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-reverse {
    direction: ltr;
  }

  .step-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .step-card {
    text-align: center;
    padding: 24px 20px;
    border: none;
    background: transparent;
    backdrop-filter: none;
  }

  .step-card:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
  }

  .step-card-badge {
    margin-bottom: 12px;
  }

  .step-image {
    max-width: 220px;
    margin: 16px auto 0;
  }

  .step-image::before {
    inset: -10px;
  }

}

@media (max-width: 768px) {
  /* Mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: max(100px, calc(80px + env(safe-area-inset-top))) 40px 40px;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text);
    text-shadow: none;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
    background-image: url('assets/hero-mobile.jpg');
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-text {
    text-align: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  .hero-phone {
    margin-right: 0;
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .phone-mockup {
    width: min(440px, 100%);
    animation: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features, .how-it-works, .categories, .showcase, .download {
    padding: 80px 0;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .steps {
    gap: 48px;
  }

  .showcase-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0;
  }

  .showcase-scroll::-webkit-scrollbar {
    display: none;
  }

  .showcase-phone {
    scroll-snap-align: center;
    flex: 0 0 100%;
    width: 100%;
    padding: 0 32px;
  }

  .showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s;
  }

  .showcase-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    min-height: 52px;
  }

  .phone-mockup {
    width: min(380px, 100%);
  }

  .category-pill {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .step-card h3 {
    font-size: 1.25rem;
  }

  .step-card {
    padding: 24px;
  }

  .download {
    padding: 80px 0;
  }

  .store-badge img {
    height: 48px;
  }
}

/* ===== EARLY ACCESS FLOATING BADGE ===== */
.early-badge {
  position: fixed;
  top: 72px;
  left: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 26, 26, 0.92);
  border: 1px solid rgba(255, 145, 0, 0.4);
  border-radius: 12px;
  padding: 8px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.early-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 145, 0, 0.8);
  box-shadow: 0 6px 20px rgba(255, 145, 0, 0.25);
}

.early-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

.early-badge-text {
  background: linear-gradient(135deg, #FF9100, #FF5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== EARLY ACCESS POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 145, 0, 0.25);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow: 0 0 60px rgba(255, 145, 0, 0.15);
}

.popup-overlay.popup-visible .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #fff;
}

.popup-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.popup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.popup-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.popup-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FF9100, #FF5722);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 145, 0, 0.35);
}

.popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 145, 0, 0.5);
}

/* Telefoni molto piccoli (es. iPhone SE 1a gen, 320px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .phone-mockup {
    width: min(320px, 100%);
  }

  .categories-grid {
    gap: 10px;
  }

  .category-pill {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}
