/* ═══════════════════════════════════════════════════
   OTT Bot — Dark Theme + Neon Green
   Landing + Auth + Pricing Styles
   ═══════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────── */
:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #0a0e14;
  --border: #30363d;
  --border2: #21262d;
  --accent: #00ff88;
  --accent2: #00cc6a;
  --text: #e6edf3;
  --text2: #8b949e;
  --text3: #6e7681;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-accent: 0 0 24px rgba(0,255,136,.15);
  --transition: .2s ease;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

/* ─── Accent ──────────────────────────────────────── */
.accent { color: var(--accent); }

/* ─── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,255,136,.3);
}
.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-svg { width: 36px; height: 36px; }
.logo-text {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -.2px;
}
.logo-text strong { color: var(--accent); font-weight: 800; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { background: var(--accent2) !important; box-shadow: 0 0 16px rgba(0,255,136,.3) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 90px 20px 80px;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(0,255,136,.07) 0%, rgba(0,255,136,.02) 40%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(48,54,61,.6) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  color: var(--text2);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(22,27,34,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
}
.h-stat { text-align: center; padding: 0 24px; }
.h-stat-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.h-stat-lbl { color: var(--text3); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.h-stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ─── Trust Bar ──────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label { color: var(--text3); font-size: 12px; white-space: nowrap; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.trust-pills span {
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Sections ───────────────────────────────────── */
.section { padding: 80px 20px; }
.section-alt { background: var(--bg2); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text2);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Features ───────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feat-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(0,255,136,.1);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(0,255,136,.15), rgba(0,255,136,.05));
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { color: var(--text2); font-size: 13.5px; line-height: 1.6; }

/* ─── How It Works ───────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  counter-reset: step;
}
.step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 99px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text2); font-size: 13.5px; line-height: 1.6; }
.step-arrow {
  font-size: 22px;
  color: var(--accent);
  opacity: .4;
  padding-top: 44px;
  flex-shrink: 0;
}

/* ─── Testimonials ───────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.testi-featured {
  border-color: rgba(0,255,136,.3);
  background: linear-gradient(135deg, rgba(0,255,136,.04), var(--bg2));
  box-shadow: 0 0 0 1px rgba(0,255,136,.1);
}
.testi-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.testi-card > p { color: var(--text2); font-size: 14px; line-height: 1.65; flex: 1; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { color: var(--text3); font-size: 12px; margin-top: 2px; }

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.price-popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0,255,136,.1);
}
.price-popular:hover { box-shadow: 0 12px 40px rgba(0,255,136,.15); }
.popular-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 4px 18px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.price-top { margin-bottom: 24px; }
.price-top h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.price-val { font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.price-val span { font-size: 15px; font-weight: 400; color: var(--text2); }
.price-caption { color: var(--text3); font-size: 12px; }
.price-feats {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}
.price-feats li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text2);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.price-feats li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; font-size: 12px; }
.feat-no::before { content: '✗' !important; color: var(--text3) !important; }
.feat-no { color: var(--text3) !important; }
.price-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0 14px;
  transition: opacity var(--transition);
}
.price-more-btn:hover { opacity: .75; }
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}

/* ─── CTA ────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,255,136,.07), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; }
.cta-inner p { color: var(--text2); font-size: 16px; margin-bottom: 32px; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border2);
  padding: 40px 20px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.footer-brand .logo-svg { width: 32px; height: 32px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--text2); font-size: 13px; font-weight: 500; transition: color var(--transition); }
.footer-nav a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 20px; }
.footer-bottom p { color: var(--text3); font-size: 12px; text-align: center; }

/* ─── WhatsApp Float ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}

/* ─── Animations ─────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { opacity: .6; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.05); }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animations */
.anim-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.anim-up.visible { opacity: 1; transform: translateY(0); }
.feat-grid .anim-up:nth-child(2) { transition-delay: .08s; }
.feat-grid .anim-up:nth-child(3) { transition-delay: .16s; }
.feat-grid .anim-up:nth-child(4) { transition-delay: .06s; }
.feat-grid .anim-up:nth-child(5) { transition-delay: .12s; }
.feat-grid .anim-up:nth-child(6) { transition-delay: .18s; }
.testi-grid .anim-up:nth-child(2) { transition-delay: .1s; }
.testi-grid .anim-up:nth-child(3) { transition-delay: .2s; }
.pricing-grid .anim-up:nth-child(2) { transition-delay: .1s; }
.pricing-grid .anim-up:nth-child(3) { transition-delay: .2s; }

/* ─── Auth Forms ─────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--bg); }
.auth-box { background: var(--bg2); padding: 40px; border-radius: var(--radius-lg); width: 100%; max-width: 420px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.auth-box h1 { text-align: center; font-size: 26px; margin-bottom: 6px; color: var(--text); }
.auth-box h1 span { color: var(--accent); }
.auth-sub { text-align: center; color: var(--text2); margin-bottom: 28px; font-size: 13px; }
.auth-fg { margin-bottom: 16px; }
.auth-fg label { display: block; margin-bottom: 5px; font-size: 13px; color: var(--text2); font-weight: 600; }
.auth-fg input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; transition: border-color .2s, box-shadow .2s; background: var(--bg); color: var(--text); }
.auth-fg input::placeholder { color: var(--text3); }
.auth-fg input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,255,136,.15); }
.auth-btn { width: 100%; padding: 14px; background: var(--accent); color: var(--bg); border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s, box-shadow .2s; }
.auth-btn:hover { background: var(--accent2); box-shadow: 0 0 16px rgba(0,255,136,.3); }
.auth-err { color: #f85149; text-align: center; margin-top: 10px; font-size: 13px; display: none; }
.auth-link { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text2); }
.auth-link a { color: var(--accent); font-weight: 600; }

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }
::selection { background: rgba(0,255,136,.25); color: var(--text); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-row { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .step-arrow { transform: rotate(90deg); padding: 0 0 4px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 15px; color: var(--text2); border-bottom: 1px solid var(--border2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin: 8px 16px 4px; border-radius: 8px; text-align: center; padding: 12px 20px !important; }
  .hero { padding: 60px 16px 60px; min-height: auto; }
  .hero-stats { flex-direction: row; padding: 16px 20px; gap: 0; }
  .h-stat { padding: 0 16px; }
  .h-stat-num { font-size: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto 40px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; justify-content: center; }
  .section { padding: 56px 16px; }
  .section-head { margin-bottom: 40px; }
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 12px; padding: 16px; }
  .h-stat-sep { display: none; }
  .h-stat { padding: 4px 12px; }
  .trust-bar { padding: 12px 16px; }
  .feat-card { padding: 22px; }
  .testi-card { padding: 22px; }
  .price-card { padding: 24px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .section-head h2 { font-size: 24px; }
}
