/* ================================================
   Hakuna TV – WM 2026 IPTV Landing Page
   /offer/style.css
   Premium Dark Luxury IPTV Brand — Orange + Blue + Black
   ================================================ */

/* ========= CSS VARIABLES ========= */
:root {
  --orange:        #FF6B00;
  --orange-light:  #FF8C35;
  --orange-glow:   rgba(255, 107, 0, 0.18);
  --blue:          #0EA5E9;
  --blue-dark:     #0072B5;
  --blue-glow:     rgba(14, 165, 233, 0.15);
  --green:         #22C55E;

  --bg-black:      #070709;
  --bg-dark:       #0D0D12;
  --bg-card:       #111118;
  --bg-card-hover: #16161F;
  --border:        rgba(255,255,255,0.07);
  --border-orange: rgba(255,107,0,0.35);
  --border-blue:   rgba(14,165,233,0.25);

  --text-white:    #FFFFFF;
  --text-light:    #E2E4ED;
  --text-muted:    #8B8FA8;
  --text-faint:    #4A4D5E;

  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;card
  --radius-xl:     32px;

  --shadow-orange: 0 0 40px rgba(255,107,0,0.22);
  --shadow-blue:   0 0 40px rgba(14,165,233,0.15);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.5);

  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========= CONTAINER ========= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========= SECTION BASE ========= */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========= GRADIENT TEXT ========= */
.gradient-text {
  background: linear-gradient(95deg, var(--orange) 20%, var(--orange-light) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,107,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-sm  { font-size: 0.85rem; padding: 9px 20px; }
.btn-lg  { font-size: 1rem;    padding: 15px 32px; }
.btn-xl  { font-size: 1.1rem;  padding: 18px 40px; }
.btn-full { width: 100%; }

/* ========= STICKY MOBILE BAR ========= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,18,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; max-width: 220px; }

/* ========= NAV BAR ========= */
.nav-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-white);
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
}
.logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--text-white); }

/* ========= HERO SECTION ========= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.glow-orange {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.25) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
  top: 0; right: -100px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 28px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub strong { color: var(--text-white); }
.hero-sub em { color: var(--orange-light); font-style: normal; font-weight: 600; }

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(255,107,0,0.08);
  border: 1.5px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
}
.old-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.new-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.price-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.saving-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: linear-gradient(135deg, var(--green), #16A34A);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.trust-badge:hover { border-color: var(--border-orange); color: var(--text-white); }
.trust-icon { font-size: 1rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-bottom: 60px;
}
.hero-img {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,107,0,0.1);
  object-fit: cover;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #1a1020 100%);
}
.hero-img-badge {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 5px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.05em;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

/* ========= STATS BAR ========= */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-plus { color: var(--orange); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ========= OFFER SECTION ========= */
.offer-section { background: var(--bg-dark); }

.offer-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

/* Price Card */
.price-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-orange), var(--shadow-card);
  transition: transform var(--transition);
}
.price-card:hover { transform: translateY(-4px); }

.price-card-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(255,107,0,0.5);
}

.price-card-header { text-align: center; margin-bottom: 32px; }
.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.price-old {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-top: 14px;
}
.price-current { display: flex; align-items: flex-start; line-height: 1; }
.price-amount {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-top: 8px;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 10px;
}
.price-saving {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.feat-icon { font-size: 1rem; flex-shrink: 0; }
.feat-check { color: var(--green); font-size: 0.9rem; }

.price-card-cta { display: flex; flex-direction: column; gap: 12px; }

/* Offer Info */
.offer-info { display: flex; flex-direction: column; gap: 32px; }
.offer-info-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}
.offer-info-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.offer-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.highlight-item:hover { border-color: var(--border-orange); }
.highlight-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.highlight-icon.orange { background: rgba(255,107,0,0.12); }
.highlight-icon.blue   { background: rgba(14,165,233,0.12); }
.highlight-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-white);
  display: block;
  margin-bottom: 4px;
}
.highlight-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.offer-img-wrap img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111118, #0d0d12);
}

/* ========= WM 2026 SECTION ========= */
.wm-section {
  position: relative;
  background: var(--bg-black);
  overflow: hidden;
}
.wm-bg { position: absolute; inset: 0; pointer-events: none; }
.wm-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.wm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.wm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.wm-card.in-view { opacity: 1; transform: translateY(0); }
.wm-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.wm-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.wm-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.wm-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

.wm-cta-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.wm-cta-text {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.wm-cta-text strong { color: var(--text-white); }

/* ========= WHY SECTION ========= */
.why-section { background: var(--bg-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.in-view { opacity: 1; transform: translateY(0); }
.why-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ========= DEVICES SECTION ========= */
.devices-section { background: var(--bg-black); }

.devices-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.device-card.in-view { opacity: 1; transform: translateY(0); }
.device-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.device-icon { font-size: 2rem; margin-bottom: 10px; }
.device-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.device-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.devices-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, #111118, #0a0a12);
}

/* ========= TESTIMONIALS SECTION ========= */
.testimonials-section { background: var(--bg-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.testimonial-card.in-view { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { border-color: var(--border-orange); }
.testimonial-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ========= HOW TO ORDER SECTION ========= */
.howto-section { background: var(--bg-black); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.step-card.in-view { opacity: 1; transform: translateY(0); }
.step-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.step-card strong { color: var(--orange-light); }

.step-connector {
  font-size: 1.8rem;
  color: var(--border-orange);
  padding: 0 16px;
  font-weight: 300;
}

.howto-cta { text-align: center; }

/* ========= PAYMENT SECTION ========= */
.payment-section { background: var(--bg-dark); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.payment-card.in-view { opacity: 1; transform: translateY(0); }
.payment-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}
.payment-icon { font-size: 2.2rem; margin-bottom: 16px; }
.payment-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.payment-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.payment-whatsapp-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.payment-whatsapp-cta p { color: var(--text-muted); font-size: 1rem; }

/* ========= FAQ SECTION ========= */
.faq-section { background: var(--bg-black); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  opacity: 0;
  transform: translateY(12px);
}
.faq-item.in-view { opacity: 1; transform: translateY(0); }
.faq-item.open { border-color: var(--border-orange); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange-light); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========= FINAL CTA SECTION ========= */
.final-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.final-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
  top: 50%; left: 20%;
  transform: translate(-50%,-50%);
  filter: blur(80px);
}
.final-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  top: 50%; right: 10%;
  transform: translateY(-50%);
  filter: blur(80px);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-badge {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 100px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 28px;
}
.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.final-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-disclaimer {
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-top: 10px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-light); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ========= RESPONSIVE ========= */

/* Tablet 1024px */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .nav-links a:not(.btn) { display: none; }
}

/* Tablet 768px */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }

  .nav-bar { padding: 20px 24px; }
  .nav-links { gap: 12px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 340px; }

  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.78rem; padding: 6px 12px; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 0 20px; }
  .stat-num { font-size: 1.5rem; }

  .wm-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }

  .devices-grid { grid-template-columns: repeat(3, 1fr); }

  .final-headline { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 340px; }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-price-tag { flex-wrap: wrap; justify-content: center; }
  .price-amount { font-size: 4rem; }

  .stats-inner { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }

  .devices-grid { grid-template-columns: repeat(2, 1fr); }

  .offer-grid { max-width: 100%; }
  .price-card { padding: 28px 20px; }

  .wm-cta-wrap .btn { width: 100%; }

  .faq-question { font-size: 0.9rem; }

  .sticky-bar .btn { font-size: 0.78rem; padding: 10px 14px; }

  .nav-cta { display: none; }
}