/* ============================================
   SummitData TradLog — Landing Page Styles
   assets/css/style.css
   ============================================ */

:root {
  --midnight: #0f172a;
  --gold: #fcc900;
  --gold-dim: rgba(252,201,0,0.12);
  --slate: #1e293b;
  --card-bg: #111b2d;
  --border: rgba(255,255,255,0.07);
  --text: #f1f5f9;
  --muted: #64748b;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --font: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background: var(--midnight);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 3px; }

/* ===== GLOW ===== */
.glow-bg {
  position: fixed; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 700px;
  background: radial-gradient(circle at 50% 0%, rgba(252,201,0,0.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.glow-bg-2 {
  position: fixed; bottom: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 100% 100%, rgba(59,130,246,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(15,23,42,0.82);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(15,23,42,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.brand-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  margin-left: 4px;
}
.text-gold { color: var(--gold) !important; }
.navbar .nav-link {
  color: rgba(241,245,249,0.7) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar .nav-link:hover {
  color: var(--text) !important;
  background: rgba(255,255,255,0.06);
}
.btn-ghost-nav {
  background: transparent;
  color: rgba(241,245,249,0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost-nav:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-gold-nav {
  background: var(--gold);
  color: var(--midnight);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  text-decoration: none;
}
.btn-gold-nav:hover {
  background: #e6b800;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252,201,0,0.45);
  color: #000;
}

/* ===== HERO ===== */
.hero-section {
  padding: 160px 0 60px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(252,201,0,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.btn-main-gold {
  background: var(--gold);
  color: var(--midnight);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
  overflow: hidden;
}
.btn-main-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-main-gold:hover::after { left: 135%; }
.btn-main-gold:hover {
  background: #e6b800;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(252,201,0,0.45);
  color: #000;
}
.btn-main-outline {
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.btn-main-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 40px;
  margin: 50px auto 0;
  max-width: 700px;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.stat-lbl { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== MOCKUP ===== */
.mockup-container { margin-top: 60px; }
.mockup-browser {
  background: var(--slate);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 60px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(252,201,0,0.1);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.browser-bar {
  background: #0d1520;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #fcc900; }
.dot.green { background: #28c840; }
.browser-url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--muted);
  font-family: monospace;
  margin-left: 8px;
}
.mockup-img { width: 100%; display: block; }
.mockup-placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--card-bg);
}

/* ===== MARQUEE ===== */
.marquee-section { overflow: hidden; position: relative; z-index: 1; }
.marquee-label span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 380px;
  white-space: normal;
  min-width: 280px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(252,201,0,0.25); }
.testi-card strong { color: var(--gold); display: block; margin-top: 6px; font-size: 11px; }

/* ===== SECTIONS ===== */
.section-pad { padding: 90px 0; position: relative; z-index: 1; }
.section-alt { background: rgba(255,255,255,0.015); }
.section-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(252,201,0,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title-sm {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.section-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: linear-gradient(145deg, var(--slate), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.35s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252,201,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.feature-card.featured {
  border-color: rgba(252,201,0,0.4);
  background: linear-gradient(145deg, #1e2a3b, #13213a);
}
.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--midnight);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.feature-icon.gold { background: var(--gold-dim); color: var(--gold); }
.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  font-size: 12px;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li i { color: var(--green); font-size: 14px; flex-shrink: 0; }

/* ===== CHECK LIST ===== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.check-list li i { color: var(--green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ===== FEATURE MOCKUP ===== */
.feature-mockup {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.fm-screen {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
}
.fm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.fm-stat {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  position: relative;
  overflow: hidden;
}
.fm-stat::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
}
.fm-stat.green::before { background: var(--green); }
.fm-stat.blue::before { background: var(--blue); }
.fm-stat.gold::before { background: var(--gold); }
.fm-stat.neutral::before { background: var(--slate); }
.fm-label {
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.fm-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.fm-stat.green .fm-val { color: var(--green); }
.fm-stat.gold .fm-val { color: var(--gold); }
.fm-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.fm-bar > div { height: 100%; border-radius: 2px; }
.fm-chart {
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}
/* Emotion mockup */
.fm-emotion-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.fm-emotion-list { display: flex; flex-direction: column; gap: 10px; }
.fm-emo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.emo-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  min-width: 60px;
  text-align: right;
}
.emo-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.emo-bar { height: 100%; border-radius: 4px; transition: width 0.5s; }
.emo-val { font-size: 10px; font-weight: 800; min-width: 50px; text-align: right; }
.emo-val.green { color: var(--green); }
.emo-val.red { color: var(--red); }

/* ===== STEPS ===== */
.steps-connector {
  position: absolute;
  top: 60px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--gold-dim), var(--border));
  z-index: 0;
}
.step-card {
  background: linear-gradient(145deg, var(--slate), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
}
.step-card:hover, .step-card.active {
  border-color: rgba(252,201,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), rgba(252,201,0,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== PRICING ===== */
.price-card {
  background: linear-gradient(145deg, var(--slate), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.35s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.price-card.featured {
  border-color: rgba(252,201,0,0.45);
  background: linear-gradient(145deg, #1e2a3b, #13213a);
}
.price-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--midnight);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.price-val span { font-size: 14px; font-weight: 600; color: var(--muted); }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; }
.price-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li i.bi-check2 { color: var(--green); font-size: 15px; }
.price-list li.disabled { opacity: 0.4; }
.price-list li.disabled i.bi-x { color: var(--red); font-size: 15px; }
.btn-price-gold {
  background: var(--gold);
  color: var(--midnight);
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative;
  overflow: hidden;
}
.btn-price-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-price-gold:hover::after { left: 135%; }
.btn-price-gold:hover {
  background: #e6b800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(252,201,0,0.45);
  color: #000;
}
.btn-price-outline {
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s;
}
.btn-price-outline:hover { border-color: rgba(255,255,255,0.3); color: var(--text); background: rgba(255,255,255,0.05); }

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: linear-gradient(145deg, var(--slate), var(--card-bg)) !important;
  color: var(--text) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 22px;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(252,201,0,0.08) !important;
  color: var(--gold) !important;
}
.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(84%) sepia(61%) saturate(500%) hue-rotate(1deg);
}
.faq-accordion .accordion-body {
  background: var(--card-bg);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding: 16px 22px 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.cta-box {
  background: linear-gradient(145deg, var(--slate), var(--card-bg));
  border: 1px solid rgba(252,201,0,0.2);
  border-radius: 30px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(252,201,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-box p { font-size: 15px; color: var(--muted); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-socials a:hover { color: var(--gold); border-color: rgba(252,201,0,0.3); background: var(--gold-dim); }
.footer-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12) rotate(-5deg); color: white; }

/* ============================================================
   RESPONSIVE — Landing Page
   Breakpoints:
     ≤ 1024px  Tablet landscape
     ≤  900px  Tablet portrait
     ≤  768px  Large phone / small tablet
     ≤  576px  Phone
     ≤  400px  Small phone
     ≤  340px  Very small (SE 1st gen)
     landscape  Landscape orientation
   ============================================================ */

/* ---- Tablet landscape (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }

  .feature-card { padding: 32px 24px; }

  .price-card { padding: 28px 24px; }

  .cta-box { padding: 60px 32px; }
}

/* ---- Tablet portrait (≤ 900px) ---- */
@media (max-width: 900px) {
  /* Hero: tighter top padding (navbar is shorter) */
  .hero-section { padding: 130px 0 56px; }

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

  /* Stats bar: 2×2 grid */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    max-width: 600px;
  }
  .stat-item {
    padding: 20px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2) { border-right: none; }     /* top-right */
  .stat-item:nth-child(4) { border-right: none; }     /* bottom-right */
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }    /* bottom row */
  .stat-divider { display: none; }

  /* Section */
  .section-pad { padding: 72px 0; }

  /* Feature mockup: max-width on md */
  .feature-mockup { max-width: 480px; margin: 0 auto; }
}

/* ---- Large phone / small tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar { padding: 10px 0; }
  .brand-sub { display: none; } /* save space */
  #navMenu {
    margin-top: 10px;
    padding: 16px;
    background: rgba(15,23,42,0.98);
    border-radius: 16px;
    border: 1px solid var(--border);
  }
  #navMenu .navbar-nav { gap: 4px !important; }
  #navMenu .navbar-nav .nav-link { padding: 10px 14px !important; border-radius: 10px; }
  #navMenu .d-flex {
    flex-direction: column;
    gap: 8px !important;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  #navMenu .btn-ghost-nav,
  #navMenu .btn-gold-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    display: block;
  }

  /* HERO */
  .hero-section { padding: 110px 0 48px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }
  .hero-title { letter-spacing: -0.5px; margin-bottom: 1.2rem; }
  .hero-desc { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }

  /* Hero CTA buttons: stack on very narrow */
  .hero-section .d-flex.gap-3 {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }
  .btn-main-gold,
  .btn-main-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 13px 24px;
  }

  /* STATS BAR: single column on phone */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    margin: 36px auto 0;
  }
  .stat-num { font-size: 1.4rem; }

  /* MOCKUP */
  .mockup-container { margin-top: 40px; }
  .mockup-browser { border-radius: 16px; }
  .browser-bar { padding: 10px 12px; }
  .dot { width: 10px; height: 10px; }
  .browser-url { font-size: 10px; padding: 3px 10px; }

  /* MARQUEE: smaller cards */
  .testi-card { min-width: 240px; padding: 14px 18px; font-size: 12px; }

  /* SECTIONS */
  .section-pad { padding: 60px 0; }
  .section-sub { font-size: 14px; }
  .mb-5 { margin-bottom: 2.5rem !important; }

  /* FEATURE CARDS */
  .feature-card { padding: 28px 22px; border-radius: 20px; }
  .feature-icon { width: 48px; height: 48px; font-size: 1.4rem; margin-bottom: 16px; }
  .feature-card h4 { font-size: 1.05rem; }

  /* FEATURE DETAIL: reverse order on mobile so mockup shows below text */
  .flex-lg-row-reverse .col-lg-6:first-child { order: 2; }
  .flex-lg-row-reverse .col-lg-6:last-child  { order: 1; }

  /* STEPS */
  .steps-connector { display: none; }
  .step-card { padding: 28px 22px; border-radius: 20px; }
  .step-number { font-size: 2.5rem; margin-bottom: 12px; }
  .step-icon { width: 46px; height: 46px; font-size: 1.25rem; }

  /* PRICING */
  .price-card { padding: 28px 22px; border-radius: 20px; }
  .price-val { font-size: 1.8rem; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-box { padding: 44px 20px; border-radius: 24px; }
  .cta-box h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-box p { font-size: 14px; }
  .cta-box .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }
  .cta-box .btn-main-gold,
  .cta-box .btn-main-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* FOOTER */
  .site-footer { padding: 52px 0 24px; }
  .footer-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .footer-desc { font-size: 12px; }

  /* WA FLOAT: smaller on mobile */
  .wa-float { width: 50px; height: 50px; font-size: 22px; bottom: 20px; right: 16px; }
}

/* ---- Phone (≤ 576px) ---- */
@media (max-width: 576px) {
  .hero-section { padding: 100px 0 40px; }

  /* Hero note: center-align under stacked buttons */
  .hero-note { text-align: center; }

  /* Stats bar: single column */
  .stats-bar {
    grid-template-columns: 1fr;
    border-radius: 16px;
    overflow: hidden;
  }
  .stat-item {
    padding: 16px 20px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    min-height: 56px;  /* prevent content clipping on tight screens */
  }
  .stat-item:last-child { border-bottom: none !important; }
  .stat-num { font-size: 1.3rem; }
  .stat-lbl { font-size: 10px; }

  /* Hero buttons full-width */
  .btn-main-gold,
  .btn-main-outline { max-width: 100%; font-size: 13px; }

  /* Mockup: tighter */
  .browser-url { display: none; } /* save space */

  /* Feature mockup */
  .fm-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fm-val { font-size: 16px; }

  /* Sections */
  .section-pad { padding: 52px 0; }

  /* Section subtitle: slightly smaller and allow natural wrap */
  .section-sub { font-size: 13px; line-height: 1.7; }

  /* Feature cards */
  .feature-card { padding: 24px 18px; }

  /* Steps */
  .step-card { padding: 24px 18px; }

  /* Pricing */
  .price-card { padding: 24px 18px; }

  /* CTA */
  .cta-box { padding: 36px 16px; }

  /* Footer */
  .site-footer { padding: 44px 0 20px; }

  /* FAQ */
  .faq-accordion .accordion-button { font-size: 13px; padding: 14px 18px; }
  .faq-accordion .accordion-body { font-size: 13px; padding: 12px 18px 16px; }
}

/* ---- Small phone (≤ 400px) ---- */
@media (max-width: 400px) {
  .hero-section { padding: 90px 0 36px; }
  .hero-badge { font-size: 10px; }

  .brand-text { font-size: 15px; }

  .btn-main-gold, .btn-main-outline { font-size: 12px; padding: 12px 20px; }

  .section-pad { padding: 44px 0; }

  .feature-card { padding: 20px 16px; border-radius: 18px; }
  .feature-icon { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 12px; }
  .feature-card h4 { font-size: 1rem; }

  .step-card { padding: 20px 16px; border-radius: 18px; }

  .price-card { padding: 20px 16px; border-radius: 18px; }
  .price-val { font-size: 1.5rem; }

  .cta-box { padding: 30px 14px; border-radius: 20px; }

  .testi-card { min-width: 220px; padding: 12px 16px; font-size: 11px; }

  .wa-float { width: 46px; height: 46px; font-size: 20px; }
}

/* ---- Very small (≤ 340px, e.g. iPhone SE 1st gen) ---- */
@media (max-width: 340px) {
  .hero-title { letter-spacing: -0.3px; }
  .stats-bar { border-radius: 14px; }
  .feature-card, .step-card, .price-card { border-radius: 16px; padding: 18px 14px; }
  .cta-box { border-radius: 18px; padding: 26px 12px; }
}

/* ---- Landscape on phones: prevent huge padding ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section { padding: 80px 0 30px; }
  .stats-bar { margin-top: 24px; }
  .section-pad { padding: 40px 0; }
  .cta-section { padding: 40px 0; }
  .cta-box { padding: 32px 24px; }
  .site-footer { padding: 40px 0 20px; }
}

/* ---- Reduce motion ---- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .btn-main-gold, .btn-gold-nav, .btn-main-outline { transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* ===== FOOTER FULL-WIDTH FIX ===== */
.site-footer {
  width: 100%;
  left: 0;
  right: 0;
}
.site-footer .container {
  max-width: 1320px;
}