/* ================================
   SHORT DRAMA — PROMOTIONAL WEBSITE
   Primary: #FF7700 | BG: #1A1A1A
================================= */

:root {
  --primary: #FF7700;
  --primary-light: #FF9933;
  --primary-dark: #E06600;
  --bg: #1A1A1A;
  --bg-card: #242424;
  --bg-card-2: #2E2E2E;
  --text: #FFFFFF;
  --text-muted: #AAAAAA;
  --text-dim: #777777;
  --border: rgba(255,119,0,0.15);
  --glow: rgba(255,119,0,0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,119,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,119,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(255,119,0,0.1);
  transform: translateY(-2px);
}

/* ---- SECTION COMMON ---- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: rgba(255,119,0,0.12);
  color: var(--primary);
  border: 1px solid rgba(255,119,0,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   NAVBAR
================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 4px 12px var(--glow);
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================
   HERO
================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(255,119,0,0.12);
  top: -200px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255,80,0,0.08);
  bottom: -100px;
  left: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,119,0,0.12);
  color: var(--primary);
  border: 1px solid rgba(255,119,0,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats-mini {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-mini {
  display: flex;
  flex-direction: column;
}
.stat-mini strong {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.stat-mini span {
  font-size: 12px;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-float-wrapper {
  position: relative;
  display: inline-block;
}
.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.hero-phone {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 24px;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 12px;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ================================
   STATS BAR
================================= */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================================
   FEATURES
================================= */
.features { background: var(--bg); }

.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-card);
  padding: 8px;
  border-radius: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--glow);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.tab-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.tab-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.check {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* Feature Tab Visuals */
.tab-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  margin: 0 auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.tab-visual { display: flex; justify-content: center; }

/* Drama cards */
.feature-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.drama-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  position: relative;
  transition: var(--transition);
}
.drama-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}
.drama-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.drama-thumb-1 { background: linear-gradient(135deg, #FF6B6B, #ee0979); }
.drama-thumb-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.drama-thumb-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.drama-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drama-title { font-size: 14px; font-weight: 600; }
.drama-meta { font-size: 12px; color: var(--text-dim); }
.drama-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.drama-badge.hot { background: rgba(255,119,0,0.2); color: var(--primary); }
.drama-badge.new { background: rgba(0,255,100,0.15); color: #00e676; }
.drama-badge.trending { background: rgba(100,150,255,0.15); color: #7B9FFF; }

/* Coin widget */
.coin-widget { width: 100%; max-width: 320px; }
.coin-balance-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.coin-icon-large { font-size: 40px; }
.coin-balance-text { display: flex; flex-direction: column; }
.coin-label { font-size: 12px; opacity: 0.8; }
.coin-amount { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 900; }
.coin-packages { display: flex; flex-direction: column; gap: 8px; }
.coin-pkg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}
.coin-pkg.popular {
  border-color: var(--primary);
  background: rgba(255,119,0,0.08);
}
.coin-pkg:hover { border-color: var(--primary); }
.pkg-price { font-weight: 700; font-size: 13px; }
.pkg-price small {
  font-size: 10px;
  background: var(--primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Wallet widget */
.wallet-widget { width: 100%; max-width: 320px; }
.wallet-header {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
}
.wallet-transactions {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px;
}
.txn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 13px;
  transition: var(--transition);
}
.txn:hover { background: rgba(255,255,255,0.04); }
.green { color: #00C853; font-weight: 700; }
.red { color: #FF5252; font-weight: 700; }

/* Watchlist widget */
.watchlist-widget { width: 100%; max-width: 320px; }
.watchlist-header {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
}
.watchlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 18px;
  transition: var(--transition);
}
.watchlist-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.watchlist-item:hover { background: rgba(255,119,0,0.06); }
.wl-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.wl-thumb-1 { background: linear-gradient(135deg, #FF6B6B, #ee0979); }
.wl-thumb-2 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.wl-thumb-3 { background: linear-gradient(135deg, #fa709a, #fee140); }
.wl-info { display: flex; flex-direction: column; flex: 1; }
.wl-info strong { font-size: 14px; font-weight: 600; }
.wl-info span { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.wl-arrow { color: var(--primary); font-size: 18px; }

/* ================================
   HOW IT WORKS
================================= */
.how-it-works {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg) 100%);
}
.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,119,0,0.15);
}
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,119,0,0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
  flex-shrink: 0;
}
.step-connector:nth-of-type(3) {
  background: linear-gradient(to right, transparent, var(--primary));
}

/* ================================
   APP SCREENS
================================= */
.app-screens { background: var(--bg); }
.screens-showcase {
  text-align: center;
  margin-bottom: 32px;
}
.screens-img {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  display: inline-block;
}
.screens-labels {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.screen-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--glow);
}

/* ================================
   WHY US
================================= */
.why-us { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,119,0,0.1);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ================================
   TESTIMONIALS
================================= */
.testimonials { background: var(--bg); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  white-space: normal;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(255,119,0,0.1);
}
.stars { font-size: 18px; margin-bottom: 16px; }
.testimonial-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #FF6B6B, #ee0979); }
.av-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.av-4 { background: linear-gradient(135deg, #fa709a, #fee140); }
.av-5 { background: linear-gradient(135deg, #FF7700, #ff4500); }
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 14px; font-weight: 700; }
.author-info span { font-size: 12px; color: var(--text-dim); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,119,0,0.1);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
  border-color: var(--primary);
}

/* ================================
   FAQ
================================= */
.faq { background: var(--bg-card); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-answer p {
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================
   DOWNLOAD CTA
================================= */
.download-cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255,119,0,0.15);
  top: -200px;
  left: -100px;
}
.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255,50,0,0.1);
  bottom: -150px;
  right: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,119,0,0.3);
  border-radius: 24px;
  padding: 64px 48px;
  box-shadow: 0 0 60px rgba(255,119,0,0.1);
}
.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-inner > div > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.store-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.store-badge {
  text-decoration: none;
  transition: var(--transition);
}
.store-badge:hover { transform: translateY(-4px); }
.store-badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 14px 28px;
  min-width: 200px;
  transition: var(--transition);
}
.store-badge:hover .store-badge-inner {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(255,119,0,0.2);
}
.badge-text { display: flex; flex-direction: column; }
.badge-sub { font-size: 11px; color: var(--text-muted); }
.badge-main { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: #fff; }
.cta-guarantee {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.cta-guarantee span::before { content: ''; }

/* ================================
   FOOTER
================================= */
.footer {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 260px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,119,0,0.1);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ================================
   AOS ANIMATIONS
================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 20px;
  }
  .hamburger { display: flex; z-index: 1001; }
  .nav-cta { display: none; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats-mini { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-phone { max-width: 260px; }

  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }

  .tab-panel-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .tab-visual { order: -1; }
  .tabs-nav { border-radius: 16px; }
  .tab-btn { font-size: 12px; padding: 8px 14px; }

  .steps-container { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--primary), transparent); }

  .testimonials-track { flex-direction: column; }
  .testimonial-card { min-width: 100%; }

  .why-grid { grid-template-columns: 1fr; }
  .screens-labels { gap: 24px; flex-wrap: wrap; }
  .cta-inner { padding: 40px 24px; }
  .store-badge-inner { min-width: 170px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .cta-guarantee { gap: 16px; }
}

@media (max-width: 480px) {
  .stats-container { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .store-badges { flex-direction: column; align-items: center; }
}
