/* ============================================
   FRESHRX — Black / Red / Blue Brand Scheme
   ============================================ */

:root {
  --bg: #08080C;
  --bg-elevated: #0E0E14;
  --bg-card: rgba(18,18,28,.65);
  --bg-card-solid: #12121C;
  --red: #E52D3A;
  --red-bright: #FF3845;
  --red-dim: #B8222D;
  --blue: #2B6EE6;
  --blue-bright: #4A8BFF;
  --blue-dim: #1C4FA8;
  --gradient: linear-gradient(135deg, #E52D3A 0%, #2B6EE6 100%);
  --gradient-h: linear-gradient(90deg, #E52D3A 0%, #2B6EE6 100%);
  --gradient-red: linear-gradient(135deg, #E52D3A 0%, #FF5C5C 100%);
  --gradient-blue: linear-gradient(135deg, #2B6EE6 0%, #4A8BFF 100%);
  --text: #F0F0F5;
  --text-muted: #8585A0;
  --text-dim: #4A4A60;
  --border: rgba(255,255,255,.06);
  --border-red: rgba(229,45,58,.2);
  --border-blue: rgba(43,110,230,.2);
  --glow-red: 0 0 60px rgba(229,45,58,.2);
  --glow-blue: 0 0 60px rgba(43,110,230,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --transition: .35s var(--ease);
}

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

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

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 44px; background: var(--red); color: #fff;
  font-weight: 700; font-size: 15px; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 60px; border: none; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 30px rgba(229,45,58,.35); text-wrap: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(229,45,58,.5); background: var(--red-bright); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 1.5px solid var(--red); color: var(--red);
  font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 60px; transition: all var(--transition);
}
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-blue {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; background: var(--blue); color: #fff;
  font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 60px; border: none; transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(43,110,230,.3);
}
.btn-blue:hover { background: var(--blue-bright); transform: translateY(-2px); }

/* ---- Sections ---- */
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.section-label.blue { color: var(--blue); }
.section-label.blue::before { background: var(--blue); }
.section-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .1s; }
.reveal-delay-3 { transition-delay: .15s; }
.reveal-delay-4 { transition-delay: .2s; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(8,8,12,.9); backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4); box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo { font-size: 28px; font-weight: 900; letter-spacing: .02em; display: flex; align-items: baseline; }
.logo-fresh { color: #fff; }
.logo-and { color: var(--red); font-weight: 900; }
.logo-rx { color: var(--blue); font-weight: 900; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color var(--transition); letter-spacing: .02em; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 28px !important; font-size: 13px !important; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; }
.mobile-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0 40px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .orb {
  position: absolute; border-radius: 50%; filter: blur(140px); opacity: .3;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-bg .orb-red { width: 600px; height: 600px; background: var(--red); top: -10%; right: 10%; opacity: .1; }
.hero-bg .orb-blue { width: 500px; height: 500px; background: var(--blue); bottom: -15%; left: 0; opacity: .08; animation-delay: -5s; }

/* Subtle grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 50%, black 20%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}

.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: rgba(229,45,58,.08); border: 1px solid rgba(229,45,58,.2);
  border-radius: 60px; font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) .2s both;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.6); } }

.hero h1 {
  font-size: clamp(42px, 6.5vw, 72px); font-weight: 900; line-height: 1.04;
  letter-spacing: -.03em; margin-bottom: 24px;
  animation: fadeUp .8s var(--ease) .35s both;
}
.hero h1 .text-red { color: var(--red); }
.hero h1 .text-blue { color: var(--blue); }

.hero-sub {
  font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-bottom: 40px;
  animation: fadeUp .8s var(--ease) .5s both;
}

.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp .8s var(--ease) .65s both;
}

.hero-trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .8s both;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-item svg { color: var(--blue); flex-shrink: 0; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbFloat { to { transform: translate(30px, -20px) scale(1.08); } }

/* ---- Hero Video ---- */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp .8s var(--ease) .6s both;
  position: relative;
}
.hero-video-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.as-seen-on {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.as-seen-on-curved {
  width: 460px; height: 110px;
}
.as-seen-on-curved text {
  font-family: 'Permanent Marker', cursive;
  font-size: 46px;
  fill: #fff;
  letter-spacing: 4px;
}
.as-seen-on-arrow {
  animation: bounce-arrow 1.5s ease-in-out infinite;
  opacity: .8;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.video-container {
  position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(229,45,58,.1);
}
.video-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* Phone floating badges (legacy) */
.float-badge {
  position: absolute; padding: 10px 16px; background: rgba(18,18,28,.9);
  backdrop-filter: blur(12px); border: 1px solid var(--border);
  border-radius: 12px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite alternate;
}
.float-badge-1 { top: 15%; left: -40px; animation-delay: 0s; }
.float-badge-2 { bottom: 20%; right: -30px; animation-delay: -2s; }
.float-badge svg { flex-shrink: 0; }
@keyframes floatBadge { to { transform: translateY(-10px); } }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase;
}
.trust-badge .icon-circle {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.03);
}
.trust-badge svg { color: var(--blue); }
@media (max-width: 600px) {
  .trust-bar { padding: 28px 0; }
  .trust-bar-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px;
    justify-items: start; max-width: 340px; margin: 0 auto;
  }
  .trust-badge { gap: 10px; }
  .trust-badge .icon-circle { width: 34px; height: 34px; }
  .trust-badge .icon-circle svg { width: 15px; height: 15px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.step-card {
  background: var(--bg-card); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; position: relative; transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-red); transform: translateY(-4px); box-shadow: var(--glow-red); }
.step-num {
  font-size: 64px; font-weight: 900; line-height: 1; margin-bottom: 20px; opacity: .12;
  background: var(--gradient-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(229,45,58,.08); border: 1px solid rgba(229,45,58,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.step-icon svg { color: var(--red); }
.step-icon.blue-icon { background: rgba(43,110,230,.08); border-color: rgba(43,110,230,.12); }
.step-icon.blue-icon svg { color: var(--blue); }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   WHY FRESHRX
   ============================================ */
.why-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.why-card {
  padding: 36px; border-radius: var(--radius); border: 1px solid var(--border);
  background: rgba(255,255,255,.02); transition: all var(--transition);
  display: flex; gap: 20px; align-items: flex-start;
}
.why-card:hover { border-color: var(--border-red); background: rgba(229,45,58,.03); }
.why-card .icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(229,45,58,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-card .icon-box svg { color: var(--red); }
.why-card .icon-box.blue-box { background: rgba(43,110,230,.08); }
.why-card .icon-box.blue-box svg { color: var(--blue); }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   STATS
   ============================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item {
  text-align: center; padding: 32px 20px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-card); backdrop-filter: blur(12px);
}
.stat-num {
  font-size: clamp(36px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 8px;
}
.stat-num.red-num { color: var(--red); }
.stat-num.blue-num { color: var(--blue); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ============================================
   TREATMENTS
   ============================================ */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.treatment-card {
  background: var(--bg-card); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; text-align: center; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.treatment-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-h); opacity: 0; transition: opacity var(--transition);
}
.treatment-card:hover { border-color: var(--border-red); transform: translateY(-4px); box-shadow: var(--glow-red); }
.treatment-card:hover::before { opacity: 1; }
.treatment-card.featured { border-color: var(--border-red); background: linear-gradient(180deg, rgba(229,45,58,.05) 0%, var(--bg-card) 50%); }
.treatment-card.featured::before { opacity: 1; }
.popular-tag {
  display: inline-block; padding: 5px 14px; background: var(--red);
  border-radius: 30px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.treatment-pill {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(229,45,58,.08); border: 1px solid rgba(229,45,58,.12);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.treatment-pill svg { color: var(--red); }
.treatment-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.treatment-generic { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.treatment-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.treatment-price { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.treatment-price strong { font-size: 32px; font-weight: 800; color: var(--text); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  padding: 36px; border-radius: var(--radius); border: 1px solid var(--border);
  background: rgba(255,255,255,.02); transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-blue); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; color: #FFB800; }
.testimonial-card blockquote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
}
.author-info .name { font-size: 14px; font-weight: 600; }
.author-info .verified { font-size: 12px; color: var(--blue); display: flex; align-items: center; gap: 4px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 740px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02); overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-red); }
.faq-question {
  width: 100%; padding: 22px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 600;
  text-align: left; transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--red); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 24px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta .section-title { max-width: 600px; margin: 0 auto 16px; }
.final-cta .section-subtitle { margin: 0 auto 40px; text-align: center; }
.cta-glow {
  position: absolute; width: 500px; height: 500px; background: var(--red);
  border-radius: 50%; filter: blur(200px); opacity: .06;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.footer-links-group h4 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links-group a:hover { color: var(--red); }

.footer-disclaimers { border-top: 1px solid var(--border); padding-top: 32px; }
.disclaimer-text { font-size: 11px; color: var(--text-dim); line-height: 1.8; max-width: 900px; }
.disclaimer-text + .disclaimer-text { margin-top: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-dim); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(8,8,12,.97);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 24px; font-weight: 700; color: var(--text); transition: color .3s; }
.mobile-menu a:hover { color: var(--red); }

/* ============================================
   AS SEEN ON
   ============================================ */
.as-seen {
  padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border);
}
.as-seen-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 32px; font-weight: 600; }
.as-seen-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: .4; }
.as-seen-logo {
  font-size: 14px; font-weight: 700; letter-spacing: .06em; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.as-seen-logo svg { opacity: .7; }

/* ============================================
   CTA FORM
   ============================================ */
.cta-form { margin-top: 32px; }
.cta-form-row {
  display: flex; gap: 12px; justify-content: center; align-items: stretch;
  max-width: 520px; margin: 0 auto; flex-wrap: wrap;
}
.cta-input {
  flex: 1; min-width: 220px; padding: 16px 24px;
  background: rgba(255,255,255,.04); border: 1.5px solid var(--border);
  border-radius: 60px; font-family: var(--font); font-size: 15px;
  color: var(--text); outline: none; transition: border-color var(--transition);
}
.cta-input::placeholder { color: var(--text-dim); }
.cta-input:focus { border-color: var(--red); }
.cta-form-note {
  font-size: 13px; color: var(--text-dim); margin-top: 16px; text-align: center;
}
@media (max-width: 600px) {
  .cta-form-row { flex-direction: column; }
  .cta-form-row .btn-primary { width: 100%; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .hero-visual { margin-top: 40px; }
  .hero-video-wrap { width: 100%; }
  .video-container { width: 100%; max-width: 100%; }
  .as-seen-on-curved { width: 90vw; max-width: 460px; height: 100px; }
  .as-seen-on-curved text { font-size: 42px; }
  .hero-content { max-width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .social-proof-ticker { margin-left: auto; margin-right: auto; }
  .float-badge { display: none; }
  .steps-grid, .treatments-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .hero-bg { display: none; }
  .step-card, .why-card, .treatment-card, .stat-item, .testimonial-card {
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8,8,12,.97); }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero {
    min-height: 100svh; padding-top: 110px; padding-bottom: 40px;
    display: flex; align-items: center;
  }
  .nav { padding: 18px 0; }
  .hero h1 { font-size: 38px; line-height: 1.08; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; margin-bottom: 32px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .btn-primary { padding: 18px 32px; font-size: 14px; }
  .hero-trust { gap: 16px; font-size: 12px; }
  .hero-bg .orb-red { width: 350px; height: 350px; top: 10%; right: -20%; opacity: .15; }
  .hero-bg .orb-blue { width: 300px; height: 300px; bottom: 5%; left: -20%; opacity: .12; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 24px 16px; }
  .section-title { font-size: 28px; }
  .as-seen-logos { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding-bottom: 100px; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 20px; background: rgba(8,8,12,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: none; transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-primary { width: 100%; padding: 16px; font-size: 14px; }
@media (max-width: 960px) {
  .sticky-cta { display: block; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card-solid); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .3s, color .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 960px) {
  .back-to-top { bottom: 80px; }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(43,110,230,.06); border: 1px solid rgba(43,110,230,.15);
  border-radius: 60px; font-size: 13px; color: var(--text-muted); font-weight: 500;
  margin-top: 20px; animation: fadeUp .8s var(--ease) .95s both;
}
.social-proof-ticker .ticker-dot {
  width: 8px; height: 8px; background: #34D399; border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero h1, .hero-sub, .hero-ctas, .hero-trust, .hero-visual, .social-proof-ticker {
    animation: none; opacity: 1; transform: none;
  }
}

/* ============================================
   TESTIMONIAL CAROUSEL (Mobile)
   ============================================ */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: none;
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; padding-bottom: 12px; -webkit-overflow-scrolling: touch;
  }
  .testimonial-card {
    min-width: 85vw; scroll-snap-align: start; flex-shrink: 0;
  }
}
