/* ============================================
   Sara777 — App Download Site
   Fully responsive, app-first design
   ============================================ */

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

:root {
  --bg: #0b0e17;
  --bg-2: #10141f;
  --card: #161a26;
  --card-hi: #1c2130;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #f2f4fa;
  --muted: #9aa2b5;
  --dim: #6c7385;
  --primary: #22c55e;
  --primary-2: #16a34a;
  --accent: #ffc93c;
  --accent-2: #ff8a3d;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --grad-app: linear-gradient(135deg, #ffc93c 0%, #ff7a3d 100%);
  --grad-btn: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 130px; /* generous space so floating bar never overlaps content */
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 900px;
}

.accent { color: var(--accent); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 23, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--grad-app);
  color: #1a1330;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.5px;
  box-shadow: 0 6px 16px rgba(255, 138, 61, 0.35);
}
.nav-cta {
  background: var(--grad-btn);
  color: white;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
  transition: transform 0.15s ease;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-2);
  box-shadow: none;
}
.nav-cta-ghost:hover { color: var(--text); background: var(--card); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-btn);
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(34, 197, 94, 0.55); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 70px 0 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 201, 60, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 201, 60, 0.3);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.hero-copy h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.tagline {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.55;
}
.hero-copy .btn-block { max-width: 320px; }
.quick-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.quick-stats > div {
  display: flex;
  flex-direction: column;
}
.quick-stats strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.quick-stats span {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Phone mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-phone-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(255, 138, 61, 0.18), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.phone {
  width: 280px;
  height: 560px;
  background: #0a0a0f;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 0 0 3px #1e2130,
    0 30px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #0a0a0f;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a1d2e 0%, #0f1220 100%);
  padding: 40px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.screen-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.app-preview {
  text-align: center;
  margin: auto 0;
}
.app-logo-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: var(--grad-app);
  color: #1a1330;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 auto 14px;
  box-shadow: 0 14px 30px rgba(255, 138, 61, 0.4);
}
.app-logo-icon span { font-size: 20px; opacity: 0.85; }
.app-preview h3 { font-size: 20px; font-weight: 700; margin-bottom: 3px; }
.app-preview p { font-size: 13px; color: var(--muted); }
.fake-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: var(--grad-btn);
  color: white;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
}

/* ============================================
   FEATURES
   ============================================ */
.features { padding: 60px 0; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-row {
  background: var(--card);
  padding: 26px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s, background 0.2s;
}
.feature-row:hover {
  background: var(--card-hi);
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.feature-emoji {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 201, 60, 0.1);
  border: 1px solid rgba(255, 201, 60, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.feature-row:nth-child(2) .feature-emoji {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.24);
}
.feature-row:nth-child(3) .feature-emoji {
  background: rgba(124, 92, 255, 0.14);
  border-color: rgba(124, 92, 255, 0.28);
}
.feature-row:nth-child(4) .feature-emoji {
  background: rgba(91, 140, 255, 0.14);
  border-color: rgba(91, 140, 255, 0.28);
}
.feature-row h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-row p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 40px 0 60px;
}
.cta-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 50px 32px;
  text-align: center;
  background-image: radial-gradient(ellipse at top, rgba(255, 201, 60, 0.09), transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-inner h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  max-width: 620px;
}
.cta-inner .btn { min-width: 220px; }

/* ============================================
   DOWNLOAD PAGE
   ============================================ */
.download-page {
  padding: 50px 0 60px;
  max-width: 900px;
  margin: 0 auto;
}
.download-page > .container { max-width: 900px; }

.download-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 22px;
  background-image: radial-gradient(ellipse at top, rgba(255, 201, 60, 0.1), transparent 55%);
}
.download-card .btn-block { max-width: 360px; margin: 0 auto; }
.app-icon-big {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: var(--grad-app);
  color: #1a1330;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 auto 18px;
  box-shadow: 0 16px 36px rgba(255, 138, 61, 0.42);
}
.app-icon-big span { font-size: 22px; opacity: 0.85; }
.download-card h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.version {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
}
.rating-row {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 201, 60, 0.08);
  border: 1px solid rgba(255, 201, 60, 0.2);
  border-radius: 100px;
  font-size: 13px;
}
.stars { color: var(--accent); letter-spacing: 2px; }
.rating-text { color: var(--muted); }
.rating-text strong { color: var(--text); font-weight: 700; }

/* ============================================
   AD SLOTS — subtle, integrated
   ============================================ */
.ad-slot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin: 20px 0;
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ad-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dim);
  margin-bottom: 8px;
  font-weight: 600;
}
.ad-placeholder {
  color: var(--muted);
  font-size: 13px;
  padding: 12px;
}

/* ============================================
   INFO SECTION — App Feature Dashboard
   ============================================ */
.info-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  margin: 20px 0;
  background-image: radial-gradient(ellipse at top left, rgba(255, 201, 60, 0.05), transparent 55%);
}
.info-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  text-align: center;
}
.info-section .section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: left;
}
.info-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}
.info-emoji {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 201, 60, 0.12);
  border: 1px solid rgba(255, 201, 60, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.info-item:nth-child(2) .info-emoji {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.22);
}
.info-item:nth-child(3) .info-emoji {
  background: rgba(124, 92, 255, 0.14);
  border-color: rgba(124, 92, 255, 0.28);
}
.info-item:nth-child(4) .info-emoji {
  background: rgba(91, 140, 255, 0.14);
  border-color: rgba(91, 140, 255, 0.28);
}
.info-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.info-item p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  margin: 20px 0;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.reviews-header h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
}
.big-rating {
  font-size: 40px;
  font-weight: 800;
  background: var(--grad-app);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stars-big {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 18px;
}
.review-count {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 14px;
}
.review-card p {
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-app);
  color: #1a1330;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* ============================================
   INSTALL STEPS
   ============================================ */
.install-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  margin: 20px 0;
}
.install-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  text-align: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-btn);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.step p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SECONDARY CTA
   ============================================ */
.secondary-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  margin: 22px 0;
  background-image: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.06), transparent 60%);
}
.secondary-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}
.secondary-cta .btn-block { max-width: 340px; margin: 0 auto; }

.disclaimer {
  text-align: center;
  padding: 20px 12px;
  color: var(--dim);
  font-size: 12.5px;
  line-height: 1.6;
}
.disclaimer a { color: var(--muted); text-decoration: underline; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 40px 0 60px; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-card h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.legal-card .muted { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.legal-card h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.legal-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 10px;
}
.legal-card a { color: var(--accent); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
  margin-top: 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
}
.footer-links a:hover { color: var(--text); }
.copyright {
  text-align: center;
  color: var(--dim);
  font-size: 12.5px;
}

/* ============================================
   FLOATING DOWNLOAD BAR
   Desktop: bottom-right pill
   Mobile: full-width bottom bar
   ============================================ */
.float-download {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--grad-btn);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.6);
}
.float-download.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(34, 197, 94, 0.55);
  animation: pulseRing 2s infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets / small laptops */
@media (max-width: 1024px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 50px 0 40px; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .hero-copy h1 { font-size: clamp(30px, 5.5vw, 46px); }
}

/* Mobile — 768 and below */
@media (max-width: 768px) {
  .hero { padding: 24px 0 20px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-copy .pill,
  .hero-copy .tagline { margin-left: auto; margin-right: auto; }
  .quick-stats { justify-content: space-around; gap: 12px; }
  .hero-phone-wrap { order: -1; }

  .phone { width: 220px; height: 440px; }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-row { flex-direction: row; align-items: center; padding: 18px 16px; }
  .feature-emoji { width: 44px; height: 44px; font-size: 22px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .info-item { padding: 14px 12px; gap: 8px; }
  .info-item h4 { font-size: 13.5px; }
  .info-item p { font-size: 11.5px; line-height: 1.4; }
  .info-emoji { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .reviews-section, .install-section { padding: 24px 18px; }
  .reviews-header h2, .install-section h2, .info-section h2 { font-size: 20px; }

  .features { padding: 28px 0; }
  .cta-strip { padding: 20px 0; }
  .cta-inner { padding: 28px 20px; }

  .download-card { padding: 30px 20px; }
  .download-card h1 { font-size: 24px; }

  /* Backdrop fader — creates a solid dark zone behind the sticky button */
  body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to top,
      rgba(11, 14, 23, 1) 0%,
      rgba(11, 14, 23, 0.98) 55%,
      rgba(11, 14, 23, 0) 100%);
    z-index: 998;
    pointer-events: none;
  }
  /* Full-width sticky download bar on mobile */
  .float-download {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 26px rgba(34, 197, 94, 0.55),
                0 0 0 1px rgba(34, 197, 94, 0.25);
    z-index: 999;
  }
  .float-download svg { width: 22px; height: 22px; }
  .float-download:hover { transform: translateY(-2px); }
  .float-download.pulse::after {
    border-radius: 14px;
    animation: pulseBar 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
  }
  @keyframes pulseBar {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    100% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  }
}

/* Standard phones — 480 and below */
@media (max-width: 480px) {
  body { padding-bottom: 120px; }
  /* Keep 2-column dashboard on mobile — feels premium */
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .container { padding: 0 14px; }
  .nav-inner { height: 56px; }
  .brand { font-size: 16px; }
  .brand-icon { width: 30px; height: 30px; font-size: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }

  .hero-copy h1 { font-size: 30px; letter-spacing: -1px; }
  .tagline { font-size: 15px; }
  .quick-stats strong { font-size: 17px; }
  .quick-stats span { font-size: 11.5px; }

  .phone { width: 200px; height: 400px; padding: 10px; border-radius: 32px; }
  .phone-notch { width: 80px; height: 20px; top: 10px; }
  .phone-screen { padding: 34px 14px 18px; border-radius: 24px; }
  .app-logo-icon { width: 72px; height: 72px; font-size: 26px; border-radius: 18px; }
  .app-preview h3 { font-size: 18px; }

  .btn-lg { padding: 14px 22px; font-size: 15px; }

  .feature-row { padding: 18px 16px; }
  .feature-emoji { font-size: 24px; }
  .info-section { padding: 22px 16px; }
  .info-section h2 { font-size: 18px; }

  .download-card { padding: 26px 18px; }
  .download-card h1 { font-size: 22px; }
  .app-icon-big { width: 84px; height: 84px; font-size: 30px; border-radius: 20px; }

  .legal-card { padding: 26px 18px; }
  .legal-card h1 { font-size: 24px; }

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

/* Small phones — 380 and below (iPhone SE, older Androids) */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-copy h1 { font-size: 27px; }
  .tagline { font-size: 14px; }
  .btn { font-size: 14.5px; padding: 12px 20px; }
  .btn-lg { font-size: 15px; padding: 13px 20px; }
  .phone { width: 180px; height: 360px; }
  .app-logo-icon { width: 64px; height: 64px; font-size: 22px; }
  .app-preview h3 { font-size: 16px; }
  .quick-stats { gap: 8px; }
  .quick-stats strong { font-size: 15px; }
  .download-card h1 { font-size: 20px; }
  .app-icon-big { width: 76px; height: 76px; font-size: 26px; }
  .float-download { padding: 14px 18px; font-size: 15px; }
}

/* Very small — 340 (Galaxy Fold closed, etc.) */
@media (max-width: 340px) {
  .brand-text { display: none; }
  .hero-copy h1 { font-size: 24px; }
  .phone { width: 160px; height: 320px; padding: 8px; border-radius: 26px; }
  .phone-screen { padding: 28px 10px 14px; border-radius: 20px; }
  .app-logo-icon { width: 56px; height: 56px; font-size: 20px; }
}

/* Landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 20px 0; }
  .phone { width: 180px; height: 340px; }
  .float-download { padding: 10px 18px; font-size: 14px; }
}
