/* ============================================================
   SaleGun Landing Page – styles.css
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --orange:       #FF7A00;
  --orange-dark:  #E06800;
  --orange-light: #FFA84C;
  --orange-pale:  #FFF3E8;
  --bg:           #F2F5F7;
  --white:        #ffffff;
  --text:         #0F172A;
  --text-sec:     #475569;
  --text-light:   #94A3B8;
  --border:       rgba(15,23,42,0.11);
  --success:      #2a7c59;
  --danger:       #C05A50;
  --gold:         #a08a69;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --shadow:       0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg:    0 12px 40px rgba(15,23,42,0.12);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
  --nav-h:        64px;

  /* shortcuts */
  --teal:         #FF7A00;
  --teal-dark:    #E06800;
  --teal-mid:     #FF9120;
  --teal-light:   #FFA84C;
  --teal-pale:    #FFF3E8;
  --navy-rgb:     15,23,42;
  --primary-rgb:  255,122,0;
  --primary-subtle:   rgba(255,122,0,0.10);
  --primary-glow-xs:  rgba(255,122,0,0.20);
  --primary-glow-sm:  rgba(255,122,0,0.30);
  --primary-glow-md:  rgba(255,122,0,0.40);
}

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

/* ---------- Layout helpers ---------- */
.section-container { max-width:1200px; margin:0 auto; padding:0 24px; width:100%; }
.hero,.features,.hiw,.stats,.download,.faq,.contact { scroll-margin-top:var(--nav-h); }

.text-gradient {
  background:linear-gradient(135deg,var(--orange),var(--orange-light));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ---------- Section tag + header ---------- */
.section-tag {
  display:inline-block;
  padding:5px 14px;
  background:var(--orange);
  color:var(--white);
  border-radius:8px;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.6px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-header { text-align:center; margin-bottom:32px; }
.section-header h2 {
  font-size:clamp(1.6rem,3.5vw,2.4rem);
  font-weight:700;
  line-height:1.2;
  color:var(--text);
  margin-bottom:10px;
}
.section-header p { font-size:1rem; color:var(--text-sec); max-width:560px; margin:0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 28px;
  border-radius:var(--radius-sm);
  font-family:inherit;
  font-size:0.95rem;
  font-weight:700;
  cursor:pointer;
  transition:var(--transition);
}
.btn-primary {
  background:var(--orange);
  color:var(--white);
  box-shadow:0 4px 16px var(--primary-glow-sm);
}
.btn-primary:hover {
  background:var(--orange-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 24px var(--primary-glow-md);
}
.btn-outline {
  background:transparent;
  color:var(--orange);
  border:2px solid var(--orange);
}
.btn-outline:hover { background:var(--orange); color:var(--white); transform:translateY(-2px); }

/* ---------- Scroll animations ---------- */
[data-aos="fade-up"]    { opacity:0; transform:translateY(28px); }
[data-aos="fade-right"] { opacity:0; transform:translateX(-28px); }
[data-aos="fade-left"]  { opacity:0; transform:translateX(28px); }
[data-aos] { transition:opacity .65s cubic-bezier(.16,1,.3,1),transform .65s cubic-bezier(.16,1,.3,1); }
[data-aos].aos-animate { opacity:1; transform:translate(0,0); }

/* ---------- Wave dividers ---------- */
.wave-divider { line-height:0; margin-bottom:-2px; }
.wave-divider svg { display:block; width:100%; height:60px; }
.wave-divider--flip svg { transform:scaleY(-1); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:14px 0;
  transition:var(--transition);
}
.nav.scrolled {
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 2px 20px rgba(15,23,42,0.08);
  padding:10px 0;
}
.nav-container {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:24px;
}
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo-img { height:36px; width:auto; display:block; object-fit:contain; }
.nav-logo-img--light { display:none; }
.nav.scrolled .nav-logo-img--dark  { display:none; }
.nav.scrolled .nav-logo-img--light { display:block; }

.nav-links { display:flex; align-items:center; gap:4px; margin-left:auto; }
.nav-link {
  padding:7px 14px;
  border-radius:8px;
  font-size:0.9rem; font-weight:600;
  color:rgba(255,255,255,0.82);
  transition:var(--transition);
}
.nav-link:hover { color:var(--white); background:rgba(255,255,255,0.12); }
.nav.scrolled .nav-link { color:var(--text-sec); }
.nav.scrolled .nav-link:hover { color:var(--orange); background:var(--orange-pale); }

.nav-actions { display:flex; align-items:center; gap:12px; }
.nav-cta { padding:9px 22px; font-size:0.88rem; }

/* Lang picker */
.lang-picker { position:relative; }
.lang-current {
  display:flex; align-items:center; gap:6px;
  padding:7px 12px;
  border-radius:8px;
  font-size:0.85rem; font-weight:600;
  color:rgba(255,255,255,0.82);
  border:1.5px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.1);
  cursor:pointer;
  transition:var(--transition);
}
.lang-current:hover { border-color:rgba(255,255,255,0.6); color:var(--white); }
.nav.scrolled .lang-current { color:var(--text-sec); border-color:var(--border); background:var(--white); }
.nav.scrolled .lang-current:hover { border-color:var(--orange); color:var(--orange); }
.lang-dropdown {
  display:none;
  position:absolute;
  top:calc(100% + 8px); right:0;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-lg);
  min-width:180px;
  z-index:100;
  overflow:hidden;
  max-height:320px;
  overflow-y:auto;
}
.lang-dropdown.open { display:block; }
.lang-option {
  display:block; width:100%; text-align:left;
  padding:10px 16px;
  font-size:0.88rem; font-weight:600; color:var(--text);
  background:none; border:none; cursor:pointer;
  transition:background var(--transition);
}
.lang-option:hover,.lang-option.active { background:var(--orange-pale); color:var(--orange); }

/* Hamburger */
.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:6px; margin-left:auto; cursor:pointer;
}
.nav-hamburger span {
  display:block; width:22px; height:2.5px;
  background:rgba(255,255,255,0.9);
  border-radius:2px; transition:var(--transition);
}
.nav.scrolled .nav-hamburger span { background:var(--orange-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position:relative; }
.hero-scroll-track { position:relative; min-height:350vh; }

.hero-sticky-content {
  position:sticky;
  top:0;
  height:100vh;
  background:#07101d;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  overflow:hidden;
  padding-top:80px;
}

/* Scroll dots */
.hero-scroll-dots {
  position:absolute;
  right:28px; top:50%;
  transform:translateY(-50%);
  display:flex; flex-direction:column; gap:10px;
  z-index:20;
}
.hero-scroll-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,0.25);
  transition:background var(--transition),transform var(--transition);
}
.hero-scroll-dot.active { background:var(--orange); transform:scale(1.4); }

/* Animated background blobs */
.hero-bg-shapes { position:absolute; inset:0; overflow:hidden; pointer-events:none; }

@keyframes blobDrift1 {
  0%,100% { transform:translate(0,0) scale(1); opacity:.22; }
  50%      { transform:translate(-50px,70px) scale(1.18); opacity:.32; }
}
@keyframes blobDrift2 {
  0%,100% { transform:translate(0,0) scale(1); opacity:.18; }
  50%      { transform:translate(60px,-50px) scale(1.12); opacity:.26; }
}
@keyframes blobDrift3 {
  0%,100% { transform:translate(0,0) scale(1); opacity:.12; }
  33%      { transform:translate(-40px,-70px) scale(1.15); opacity:.18; }
  66%      { transform:translate(50px,40px) scale(0.9); opacity:.1; }
}
.shape { position:absolute; border-radius:50%; filter:blur(90px); }
.shape-1 {
  width:680px; height:560px;
  background:radial-gradient(circle,rgba(255,100,0,.65) 0%,transparent 70%);
  top:-160px; right:-100px;
  animation:blobDrift1 16s ease-in-out infinite;
}
.shape-2 {
  width:560px; height:480px;
  background:radial-gradient(circle,rgba(20,184,166,.55) 0%,transparent 70%);
  bottom:-100px; left:-80px;
  animation:blobDrift2 19s ease-in-out infinite 2.5s;
}
.shape-3 {
  width:380px; height:380px;
  background:radial-gradient(circle,rgba(59,130,246,.35) 0%,transparent 70%);
  top:25%; left:33%;
  animation:blobDrift3 24s ease-in-out infinite 5s;
}
.hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:radial-gradient(ellipse 85% 85% at 50% 40%,black 10%,transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 85% 85% at 50% 40%,black 10%,transparent 75%);
  pointer-events:none;
}

/* Hero layout grid */
.hero-container {
  max-width:1200px;
  margin:0 auto;
  padding:0 40px 0 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  width:100%;
  height:calc(100vh - 80px);
}

/* Left column */
.hero-content {
  color:var(--white);
  display:flex;
  flex-direction:column;
  gap:20px;
}
.hero-flow { display:none; }

/* Entrance animations */
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Headline */
.hero-content h1 {
  font-size:clamp(2.8rem,4.2vw,5.2rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0;
  animation:heroFadeUp .6s cubic-bezier(.16,1,.3,1) .05s both;
}
.hero-highlight { display:block; color:rgba(255,255,255,.5); font-weight:800; }
.hero-everyday {
  display:block;
  background:linear-gradient(105deg,#ffffff 0%,#ffcf86 55%,#ff8c00 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* Subtitle */
.hero-subtitle {
  font-size:clamp(1.1rem,1.6vw,1.5rem);
  line-height:1.55;
  color:rgba(255,255,255,.5);
  margin:0;
  animation:heroFadeUp .6s cubic-bezier(.16,1,.3,1) .15s both;
}

/* Download badges */
.hero-buttons {
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
  margin:0; flex-shrink:0;
  animation:heroFadeUp .55s cubic-bezier(.16,1,.3,1) .25s both;
}
.store-badge { display:inline-block; transition:transform .35s cubic-bezier(.34,1.56,.64,1),filter .35s ease; }
.store-badge img { display:block; border-radius:8px; height:52px; }
.store-badge:hover img { transform:scale(1.06) translateY(-3px); filter:drop-shadow(0 10px 20px rgba(0,0,0,.28)); }

.hero-how-link {
  display:inline-flex; align-items:center; gap:5px;
  color:rgba(255,255,255,.35); font-size:0.88rem; font-weight:600;
  transition:var(--transition); flex-shrink:0;
  animation:heroFadeUp .5s cubic-bezier(.16,1,.3,1) .32s both;
}
.hero-how-link:hover { color:rgba(255,255,255,.75); }
.hero-how-link svg { transition:transform var(--transition); }
.hero-how-link:hover svg { transform:translateY(3px); }

/* Trust strip */
.hero-trust {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  animation:heroFadeUp .5s cubic-bezier(.16,1,.3,1) .38s both;
}
.hero-trust-item {
  display:flex; align-items:center; gap:5px;
  color:rgba(255,255,255,.32); font-size:0.82rem; font-weight:600; letter-spacing:.02em;
}
.hero-trust-item svg { stroke:var(--orange); flex-shrink:0; }
.hero-trust-dot { color:rgba(255,255,255,.14); font-size:0.82rem; }

/* Right column — phone */
.hero-phones {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:visible;
}
.hero-phones::before {
  content:'';
  position:absolute;
  width:360px; height:360px;
  background:radial-gradient(circle,rgba(255,122,0,.14) 0%,rgba(20,184,166,.07) 45%,transparent 70%);
  border-radius:50%;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none; z-index:0;
}
.hero-phone-center {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Pulse rings */
@keyframes pulseRing {
  0%   { transform:translate(-50%,-50%) scale(.8);  opacity:.55; }
  100% { transform:translate(-50%,-50%) scale(1.65); opacity:0; }
}
.phone-pulse-ring {
  position:absolute;
  width:270px; height:270px;
  border-radius:50%;
  border:1.5px solid rgba(255,122,0,.35);
  top:48%; left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none; z-index:0;
  animation:pulseRing 3.8s ease-out infinite;
}
.phone-pulse-ring--2 { border-color:rgba(20,184,166,.25); animation-delay:1.9s; }

/* Floating chips */
@keyframes chipFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }
@keyframes chipSlideRight { from { opacity:0; transform:translateX(22px) scale(.88); } to { opacity:1; transform:translateX(0) scale(1); } }
@keyframes chipSlideLeft  { from { opacity:0; transform:translateX(-22px) scale(.88); } to { opacity:1; transform:translateX(0) scale(1); } }
.hero-chip {
  position:absolute;
  display:flex; align-items:center; gap:7px;
  padding:8px 14px 8px 10px;
  border-radius:100px;
  font-size:0.7rem; font-weight:700; white-space:nowrap;
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  z-index:10; pointer-events:none;
}
.hero-chip--deal {
  background:rgba(20,184,166,.14); border:1px solid rgba(20,184,166,.38); color:#5eead4;
  top:11%; right:10px;
  animation:chipSlideRight .7s cubic-bezier(.16,1,.3,1) 1s both,
             chipFloat 4.2s ease-in-out 1.7s infinite;
}
.hero-chip--calls {
  background:rgba(255,122,0,.12); border:1px solid rgba(255,122,0,.36); color:#fdba74;
  bottom:20%; left:10px;
  animation:chipSlideLeft .7s cubic-bezier(.16,1,.3,1) 1.2s both,
             chipFloat 4.8s ease-in-out 1.9s infinite;
}
.hero-chip svg { flex-shrink:0; }

/* ============================================================
   PHONE FRAME SYSTEM
   ============================================================ */
@keyframes phoneFloat {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-14px); }
}

.phone-wrap { position:relative; flex-shrink:0; transition:transform .4s cubic-bezier(.22,1,.36,1); }

.phone-wrap .phone-frame {
  width:375px; height:812px;
  border-radius:52px;
  overflow:hidden;
  background:linear-gradient(145deg,#2a2a2a 0%,#1a1a1a 50%,#111 100%);
  box-shadow:
    0 25px 80px rgba(0,0,0,.3),
    0 4px 20px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1.5px #3a3a3a;
  padding:6px;
  position:absolute;
  top:0; left:0;
  transform-origin:top left;
}
/* Power button */
.phone-wrap .phone-frame::before {
  content:''; position:absolute;
  right:-3px; top:180px; width:4px; height:60px;
  background:linear-gradient(180deg,#3a3a3a,#222,#3a3a3a);
  border-radius:0 3px 3px 0;
}
/* Volume buttons */
.phone-wrap .phone-frame::after {
  content:''; position:absolute;
  left:-3px; top:160px; width:4px; height:36px;
  background:linear-gradient(180deg,#3a3a3a,#222,#3a3a3a);
  border-radius:3px 0 0 3px;
  box-shadow:0 50px 0 0 #2a2a2a;
}
/* Dynamic Island */
.phone-wrap .phone-di {
  position:absolute; top:6px; left:50%; transform:translateX(-50%);
  width:126px; height:36px; background:#000; border-radius:20px; z-index:10;
}
/* Home bar */
.phone-wrap .phone-home-bar {
  position:absolute; bottom:8px; left:50%; transform:translateX(-50%);
  width:134px; height:5px; border-radius:3px;
  background:rgba(255,255,255,.25); z-index:10;
}
/* Screen */
.phone-wrap .phone-screen {
  position:absolute;
  top:6px; left:6px; right:6px; bottom:6px;
  border-radius:46px; overflow:hidden;
  -webkit-backface-visibility:hidden; backface-visibility:hidden;
}
/* Screenshot placeholder */
.phone-wrap .phone-screen--screenshot {
  background:linear-gradient(145deg,#f0f5f7 0%,#e6f0f3 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
}
.screenshot-placeholder {
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--orange); opacity:.35;
}
.screenshot-placeholder span { font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.6px; }

/* phone-float: position:relative so phone-frame (absolute) anchors here */
.phone-float { position:relative; width:100%; height:100%; }

/* Phone size variants */
/* Hero main — scale 0.76: 375×.76=285px, 812×.76=617px */
.phone-wrap--hero-main { width:285px; height:617px; z-index:3; }
.phone-wrap--hero-main .phone-frame { transform:scale(0.76); }
.phone-wrap--hero-main .phone-float { animation:phoneFloat 4s ease-in-out infinite; }
.phone-wrap--hero-main:hover { transform:scale(1.03); }

/* HIW small — scale 0.48: 375×.48=180px, 812×.48=390px */
.phone-wrap--hiw-sm { width:150px; height:325px; }
.phone-wrap--hiw-sm .phone-frame { transform:scale(0.40); }

/* Download — scale 0.56: 375×.56=210px, 812×.56=455px */
.phone-wrap--dl { width:210px; height:455px; z-index:1; }
.phone-wrap--dl .phone-frame { transform:scale(0.56); }
.phone-wrap--dl .phone-float { animation:phoneFloat 4.3s ease-in-out infinite .5s; }
.phone-wrap--dl:hover { transform:scale(1.04); }
.phone-wrap--dl:hover .phone-float { animation-play-state:paused; }

/* ============================================================
   PHONE SCREEN PANELS (carousel inside hero phone)
   ============================================================ */
.qc-panels {
  position:absolute;
  top:6px; left:6px; right:6px; bottom:6px;
  border-radius:46px;
  overflow:hidden;
}
.qc-panels-strip {
  display:flex;
  flex-direction:column;
  width:100%; height:100%;
  will-change:transform;
  transition:transform .52s cubic-bezier(.22,1,.36,1);
}
.qc-panel {
  flex:0 0 100%;
  min-height:100%;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:60px 16px 16px;
  background:var(--white);
  overflow:hidden;
}
.qc-panel--list { padding:0; align-items:stretch; text-align:left; }
.qc-panel--splash { background:linear-gradient(155deg,#0c1623 0%,#192340 100%); justify-content:center; padding:0; }

/* Splash content */
.qc-splash { display:flex; flex-direction:column; align-items:center; gap:14px; }
.qc-app-icon {
  width:76px; height:76px;
  background:linear-gradient(135deg,#FF7A00,#ff9f00);
  border-radius:22px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 40px rgba(255,122,0,.45),0 0 0 1px rgba(255,255,255,.08);
  margin-bottom:4px;
}
.qc-app-name { font-size:1.35rem; font-weight:800; color:var(--white); letter-spacing:-.02em; }
.qc-app-name span { color:#FF7A00; }
.qc-app-tagline { font-size:.6rem; font-weight:700; color:rgba(255,255,255,.3); letter-spacing:.12em; text-transform:uppercase; }
.qc-splash-bar {
  width:44px; height:4px; background:rgba(255,255,255,.1); border-radius:2px;
  margin-top:24px; position:relative; overflow:hidden;
}
.qc-splash-bar::after {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width:60%; background:#FF7A00; border-radius:2px;
  animation:splashLoad 1.8s cubic-bezier(.4,0,.6,1) .5s both;
}
@keyframes splashLoad { from { width:0; } to { width:100%; } }

/* Contact list panel */
.ph-top-bar {
  display:flex; align-items:center; justify-content:space-between;
  padding:0 12px 8px; border-bottom:1px solid rgba(15,23,42,.07); margin-bottom:4px;
}
.ph-top-title { font-size:.7rem; font-weight:800; color:var(--text); }
.ph-top-count { font-size:.6rem; font-weight:700; color:var(--text-light); }
.ph-list-item {
  display:flex; align-items:center; gap:7px;
  padding:7px 12px; border-bottom:1px solid rgba(15,23,42,.05);
}
.ph-item-active { background:rgba(255,122,0,.06); }
.ph-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.ph-dot--green  { background:#22C55E; }
.ph-dot--orange { background:var(--orange); }
.ph-dot--grey   { background:#94A3B8; }
.ph-item-name { font-size:.58rem; font-weight:700; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ph-list-fade { height:32px; background:linear-gradient(to bottom,transparent,#F8FAFC); margin-top:-8px; }

/* Call panel content */
.ms-call-header { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--text-light); margin-bottom:2px; }
.ms-call-counter { font-size:.6rem; color:var(--text-light); margin-bottom:14px; }
.ms-call-avatar {
  width:54px; height:54px; border-radius:50%;
  background:var(--orange); color:var(--white);
  font-size:1rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 10px;
  box-shadow:0 4px 16px var(--primary-glow-sm);
}
.ms-call-name { font-size:.85rem; font-weight:700; color:var(--text); margin-bottom:3px; }
.ms-call-phone { font-size:.6rem; color:var(--text-sec); margin-bottom:2px; }
.ms-call-company { font-size:.58rem; color:var(--text-light); margin-bottom:14px; }
.ms-call-btn {
  display:flex; align-items:center; justify-content:center; gap:6px;
  width:100%; padding:10px;
  background:var(--orange); color:var(--white);
  border-radius:10px; border:none; cursor:pointer;
  font-size:.75rem; font-weight:700;
  margin-bottom:10px;
  box-shadow:0 4px 12px var(--primary-glow-sm);
}
.ms-call-results { display:flex; gap:5px; }
.ms-results-dim { opacity:.3; }
.ms-result {
  flex:1; padding:5px 4px;
  border-radius:7px;
  font-size:.55rem; font-weight:700;
  text-align:center; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:3px;
}
.ms-result--green  { background:rgba(42,124,89,.1); color:var(--success); }
.ms-result--yellow { background:rgba(160,138,105,.12); color:var(--gold); }
.ms-result--red    { background:rgba(192,90,80,.1); color:var(--danger); }
.ms-result svg { flex-shrink:0; }

/* Calling panel */
.qc-calling-hdr { color:var(--orange) !important; }
.qc-ring-wrap { position:relative; width:70px; height:70px; margin:8px auto 14px; flex-shrink:0; }
@keyframes qcRingPulse { 0% { transform:scale(1); opacity:.45; } 100% { transform:scale(2.6); opacity:0; } }
.qc-ring { position:absolute; inset:0; border-radius:50%; background:var(--orange); animation:qcRingPulse 1.8s ease-out infinite; }
.qc-ring--2 { animation-delay:.55s; }
.qc-ring--3 { animation-delay:1.1s; }
.qc-avatar-center {
  position:absolute; inset:0; margin:0; width:100%; height:100%;
  font-size:1rem; z-index:1;
  box-shadow:0 0 0 3px rgba(255,255,255,.9);
}
.qc-calling-hint { font-size:.52rem; color:var(--text-light); margin-top:8px; font-weight:600; }

/* Outcome / note panel */
.qc-result-active {
  transform:scale(1.06);
  border:2px solid rgba(42,124,89,.35) !important;
  box-shadow:0 3px 10px rgba(42,124,89,.18);
}
.qc-note-row {
  display:flex; align-items:center; gap:6px;
  background:rgba(15,23,42,.05);
  border:1px solid var(--border);
  border-radius:8px; padding:7px 10px;
  margin-top:10px; width:100%; text-align:left;
}
.qc-note-mic { font-size:.9rem; flex-shrink:0; }
.qc-note-text { font-size:.6rem; color:var(--text); font-weight:600; line-height:1.4; }
@keyframes qcCursorBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.qc-cursor { animation:qcCursorBlink 1s step-end infinite; color:var(--orange); }

/* Session done panel */
.qc-saved-hdr { color:#22C55E !important; }
.qc-saved-list { display:flex; flex-direction:column; gap:5px; width:100%; margin-bottom:10px; }
.qc-saved-item {
  display:flex; align-items:center; gap:5px;
  font-size:.6rem; font-weight:700; color:var(--text-sec);
  background:rgba(15,23,42,.04);
  border-radius:6px; padding:5px 10px; text-align:left;
}
.qc-tadam {
  display:flex; align-items:center; gap:6px;
  width:100%;
  background:rgba(34,197,94,.1); border:1.5px solid rgba(34,197,94,.3);
  border-radius:6px; padding:5px 10px; margin-bottom:4px;
}
.qc-tadam-check { font-size:.7rem; font-weight:800; color:#22c55e; display:flex; align-items:center; justify-content:center; }
.qc-tadam-label { font-size:.58rem; font-weight:600; color:#22c55e; }

/* Inline icon */
.ic { display:inline-block; vertical-align:middle; flex-shrink:0; }

/* Hero wave */
.hero-wave-bottom { position:absolute; bottom:0; left:0; right:0; line-height:0; pointer-events:none; }
.hero-wave-bottom svg { display:block; width:100%; height:70px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { height:100vh; padding:0; background:var(--white); display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.feature-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-lg); padding:20px 18px;
  transition:var(--transition); position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--accent,var(--orange)),transparent);
  opacity:0; transition:var(--transition);
}
.feature-card:hover { border-color:var(--orange); transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.feature-card:hover::before { opacity:1; }
.feature-icon-wrap {
  width:38px; height:38px;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px; color:var(--accent,var(--orange)); flex-shrink:0;
}
.feature-card h3 { font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:6px; }
.feature-card p { font-size:.82rem; color:var(--text-sec); line-height:1.5; margin-bottom:12px; }
.feature-tag { display:inline-block; padding:4px 12px; background:var(--primary-subtle); color:var(--orange); border-radius:8px; font-size:.76rem; font-weight:700; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { height:100vh; padding:calc(var(--nav-h) + 24px) 0 0; background:var(--white); display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.hiw-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.hiw-step { text-align:center; display:flex; flex-direction:column; align-items:center; }
.hiw-step-phone-wrap { position:relative; margin-bottom:10px; }
.hiw-step-num {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%); z-index:10;
  width:30px; height:30px; border-radius:50%;
  background:var(--orange); color:var(--white);
  font-size:.85rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px var(--primary-glow-md);
}
.hiw-step h3 { font-size:1rem; font-weight:700; color:var(--text); margin-bottom:6px; }
.hiw-step p  { font-size:.88rem; color:var(--text-sec); line-height:1.55; max-width:260px; }
.hiw-cta { text-align:center; margin-top:16px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { height:100vh; padding:0; background:var(--white); display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-card {
  background:linear-gradient(135deg,var(--orange-dark),var(--orange));
  border-radius:var(--radius-lg); padding:24px 20px;
  text-align:center; color:var(--white);
  box-shadow:0 8px 32px var(--primary-glow-xs);
  transition:var(--transition);
}
.stat-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px var(--primary-glow-sm); }
.stat-value { font-size:2.2rem; font-weight:700; line-height:1; margin-bottom:6px; }
.stat-label { font-size:.85rem; opacity:.85; font-weight:600; }

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download { height:100vh; padding:0; background:var(--bg); display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.download-layout { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.download-content h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:700; color:var(--text); margin-bottom:12px; line-height:1.2; }
.download-content p  { font-size:.95rem; color:var(--text-sec); margin-bottom:20px; line-height:1.6; }
.download-badges { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
.download-free  { font-size:.9rem; color:var(--text-sec); font-weight:600; display:flex; align-items:center; gap:8px; }
.check-icon { color:var(--success); font-size:1rem; }
.download-visual { display:flex; justify-content:center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { height:100vh; padding:0; background:var(--white); display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { border-bottom:1.5px solid var(--border); }
.faq-question {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  width:100%; padding:20px 0;
  background:none; border:none; cursor:pointer; font-family:inherit;
  font-size:1rem; font-weight:700; color:var(--text); text-align:left;
  transition:color var(--transition);
}
.faq-question:hover { color:var(--orange); }
.faq-chevron { flex-shrink:0; color:var(--text-light); transition:transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-chevron { transform:rotate(180deg); }
.faq-question[aria-expanded="true"] { color:var(--orange); }
.faq-answer { display:none; padding-bottom:18px; }
.faq-answer.open { display:block; }
.faq-answer p { font-size:.95rem; color:var(--text-sec); line-height:1.7; }

/* ============================================================
   CONTACT + FOOTER BLOCK
   ============================================================ */
.contact-footer-block {
  height:100vh;
  display:flex;
  flex-direction:column;
}
.contact {
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px 0 32px;
  background:var(--bg);
}
.contact-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:40px; align-items:flex-start; }
.contact-info h2 { font-size:clamp(1.6rem,3vw,2.1rem); font-weight:700; color:var(--text); margin-bottom:10px; line-height:1.2; }
.contact-info p  { font-size:.95rem; color:var(--text-sec); line-height:1.6; margin-bottom:20px; }
.contact-item { display:flex; align-items:center; gap:12px; font-size:.95rem; color:var(--text-sec); }
.contact-item a  { color:var(--orange); font-weight:600; }
.contact-item a:hover { text-decoration:underline; }
.contact-icon {
  width:38px; height:38px; border-radius:10px;
  background:var(--white); border:1.5px solid var(--border); color:var(--orange);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-form { display:flex; flex-direction:column; gap:12px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:.88rem; font-weight:700; color:var(--text); }
.form-group input,.form-group textarea {
  padding:12px 16px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-family:inherit;
  font-size:.95rem; color:var(--text); background:var(--white);
  transition:border-color var(--transition); outline:none;
}
.form-group input:focus,.form-group textarea:focus { border-color:var(--orange); }
.form-group textarea { resize:vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background:var(--text); color:rgba(255,255,255,.75); padding:32px 0 0; flex-shrink:0; }
.footer-container {
  max-width:1200px; margin:0 auto; padding:0 24px 24px;
  display:grid; grid-template-columns:1.5fr 1fr; gap:32px;
}
.footer-brand .nav-logo-text { color:var(--white); }
.footer-brand .nav-logo-icon { background:var(--teal-mid); }
.footer-tagline { font-size:.9rem; color:rgba(255,255,255,.55); margin-top:12px; max-width:240px; }
.footer-links { display:flex; gap:40px; }
.footer-col { display:flex; flex-direction:column; gap:10px; }
.footer-col h4 { font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; color:rgba(255,255,255,.4); margin-bottom:4px; }
.footer-col a  { font-size:.9rem; color:rgba(255,255,255,.65); transition:color var(--transition); }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:16px 24px; text-align:center; font-size:.82rem; color:rgba(255,255,255,.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .features-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .hero-phones { transform:scale(0.78); transform-origin:center center; }
  .hero-container { gap:16px; padding:0 32px; }
  .hero-chip { display:none; }
}

@media (max-width:960px) {
  .hero-phones { transform:scale(0.72); }
  .hero-content h1 { font-size:clamp(2.2rem,4vw,3.5rem); }
  .section-header h2 { font-size:clamp(1.7rem,4vw,2.4rem); }
}

@media (max-width:768px) {
  .nav-links { display:none; flex-direction:column; gap:4px; }
  .nav-links.open {
    display:flex; position:fixed;
    top:64px; left:0; right:0;
    background:var(--white);
    padding:16px 24px 24px;
    box-shadow:0 8px 32px rgba(15,23,42,.12);
    border-radius:0 0 16px 16px; z-index:999;
  }
  .nav-links.open .nav-link { padding:10px 16px; font-size:1rem; border-radius:8px; }
  .nav-hamburger { display:flex; }
  .nav-cta { display:none; }
  .nav-actions { gap:8px; }

  .hero-scroll-track { min-height:unset; }
  .hero-sticky-content { position:relative; height:auto; min-height:100svh; padding-top:72px; }
  .hero-scroll-dots { display:none; }
  .hero-container { grid-template-columns:1fr; padding:40px 20px 60px; gap:32px; height:auto; }
  .hero-phones { order:-1; transform:scale(0.78); transform-origin:center top; }
  .hero-content h1 { font-size:clamp(2rem,6vw,2.8rem); }
  .hero-subtitle { font-size:1rem; }
  .hero-content { gap:16px; }
  .hero-buttons { flex-direction:column; align-items:flex-start; }
  .store-badge img { height:46px; }

  .features,.hiw,.stats,.download,.faq { height:auto; padding:64px 0 48px; }
  .features-grid { grid-template-columns:1fr; gap:14px; }
  .hiw-steps { grid-template-columns:1fr; gap:40px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:14px; }
  .download-layout { grid-template-columns:1fr; }
  .download-visual { display:none; }
  .contact-layout { grid-template-columns:1fr; gap:32px; }
  .footer-container { grid-template-columns:1fr; gap:28px; }
  .footer-links { flex-direction:column; gap:20px; }
  .section-header { margin-bottom:32px; }
  .section-header h2 { font-size:clamp(1.6rem,5vw,2.2rem); }
}

@media (max-width:480px) {
  .hero-sticky-content { padding-top:64px; }
  .hero-container { padding:32px 16px 48px; }
  .hero-content h1 { font-size:clamp(1.9rem,7.5vw,2.6rem); }
  .hero-subtitle { font-size:.92rem; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-value { font-size:2rem; }
  .section-header h2 { font-size:1.6rem; }
  .section-container { padding:0 16px; }
}

@media (max-height:820px) and (min-width:769px) {
  .hero-sticky-content { padding-top:66px; }
  .hero-container { padding:0 40px; gap:20px; height:calc(100vh - 66px); }
  .hero-content h1 { font-size:clamp(2rem,3.2vw,3rem); }
  .hero-subtitle { font-size:.9rem; }
  .hero-content { gap:14px; }
  .hero-buttons { gap:8px; }
  .hero-buttons img,.store-badge img { height:40px; }
  .hero-trust { margin-top:12px; gap:8px; }
  .hero-phones { transform:scale(0.78); }
}

@media (max-height:700px) and (min-width:769px) {
  .hero-container { padding:0 36px; gap:16px; height:calc(100vh - 66px); }
  .hero-content h1 { font-size:clamp(1.6rem,2.6vw,2.2rem); }
  .hero-subtitle { font-size:.82rem; }
  .hero-content { gap:10px; }
  .hero-buttons img,.store-badge img { height:34px; }
  .hero-trust { display:none; }
  .hero-phones { transform:scale(0.68); }
}
