/* ================================================
   PRO EXTENDER - COMPLETE STYLES
   Fonts: Montserrat Bold (headings) + Open Sans (body)
   Design: Premium Dark Blue + Gold Accent
================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0a1628;
  --primary-mid: #112244;
  --accent: #d4a017;
  --accent-light: #f0c53a;
  --accent-glow: rgba(212,160,23,0.3);
  --red: #e03030;
  --red-dark: #b52020;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray-light: #e8ecf4;
  --gray-text: #5a6a85;
  --card-bg: #ffffff;
  --card-shadow: 0 8px 32px rgba(10,22,40,0.10);
  --transition: 0.3s ease;
  --border-radius: 16px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TYPOGRAPHY === */
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}

.body-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #334;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.body-text:last-of-type { margin-bottom: 0; }

.center-text { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }

.inline-link { color: var(--accent); font-weight: 700; }
.inline-link:hover { color: var(--accent-light); }

.section-header-block { text-align: center; padding: 60px 20px 20px; }
.section-divider {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
  margin: 16px auto 0;
}

.mt-btn { display: inline-block; margin-top: 24px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: 16px 32px;
  border-radius: 50px;
  min-height: 52px;
  min-width: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(224,48,48,0.35);
  letter-spacing: 0.02em;
  text-align: center;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(224,48,48,0.50);
}
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  min-height: 52px;
  min-width: 160px;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: scale(1.05);
}
.btn-ghost:active { transform: scale(0.98); }

.btn-large {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  padding: 18px 40px;
  min-height: 58px;
}

.btn-pulse {
  animation: pulseCta 2s infinite;
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 4px 20px rgba(224,48,48,0.35); }
  50% { box-shadow: 0 4px 32px rgba(224,48,48,0.70), 0 0 0 8px rgba(224,48,48,0.1); }
}

/* === NAVBAR === */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#main-nav.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.navbar { padding: 0; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text strong { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--accent); background: rgba(255,255,255,0.08); }

.nav-cta {
  flex-shrink: 0;
  min-width: auto;
  padding: 10px 20px;
  min-height: 44px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.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 {
  min-height: 100vh;
  background: linear-gradient(135deg, #060e1f 0%, #0a1628 50%, #0e1f40 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #d4a017, transparent);
  top: -100px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a4a9a, transparent);
  bottom: -100px; left: -80px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e03030, transparent);
  top: 40%; right: 30%;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.particle-field {
  position: absolute;
  inset: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  animation: slideDown 0.6s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-title-line1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  animation: slideUp 0.7s ease 0.1s forwards;
  opacity: 0;
}
.hero-title-accent {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--accent);
  line-height: 1.2;
  animation: slideUp 0.7s ease 0.2s forwards;
  opacity: 0;
}
.hero-title-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  animation: slideUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  animation: slideUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

/* Hero Timer */
.timer-wrapper {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  width: fit-content;
  animation: slideUp 0.7s ease 0.5s forwards;
  opacity: 0;
}
.timer-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.timer-display {
  display: flex;
  align-items: center;
  gap: 4px;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 18px;
  min-width: 65px;
}
.timer-unit span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}
.timer-unit small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.timer-sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  padding: 0 4px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: slideUp 0.7s ease 0.6s forwards;
  opacity: 0;
}

.hero-btn {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  padding: 18px 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: slideUp 0.7s ease 0.7s forwards;
  opacity: 0;
}
.hero-trust span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  animation: slideUp 0.9s ease 0.3s forwards;
  opacity: 0;
}

.hero-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-product-img {
  border-radius: var(--border-radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-star { font-size: 0.85rem; }
.badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
}

/* === FADE-IN ANIMATIONS (Intersection Observer) === */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in { transform: translateY(24px); }
.fade-in-up { transform: translateY(40px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }

.fade-in.visible, .fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* === CLAIM BANNER === */
.claim-banner {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 28px 20px;
  text-align: center;
}
.claim-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--white);
  line-height: 1.3;
}

/* === PRICE SECTION === */
.price-section {
  padding: 50px 0;
  background: var(--off-white);
}
.price-img-wrap { text-align: center; }
.price-img {
  max-width: 860px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin: 0 auto 24px;
}
.price-cta-below { text-align: center; }

/* === ABOUT SECTION === */
.about-section {
  padding-bottom: 70px;
  background: var(--white);
}
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.col-image .img-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.15);
}
.col-image .img-frame img { width: 100%; }
.img-overlay-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 8px;
}

/* === HOW IT WORKS SECTION === */
.how-works-section {
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f4f6f9 0%, #edf0f7 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--accent);
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,22,40,0.15); }
.step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--gray-text); }

/* === REVIEWS SECTION === */
.reviews-section {
  padding-bottom: 70px;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.review-card {
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border-left: 5px solid var(--accent);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.review-header img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.reviewer-loc { font-size: 0.82rem; color: var(--gray-text); }
.stars { font-size: 1rem; }
.review-text { font-size: 0.92rem; color: #334; line-height: 1.7; }

/* === INSIDE SECTION === */
.inside-section {
  padding-bottom: 70px;
  background: linear-gradient(180deg, #edf0f7 0%, #f4f6f9 100%);
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.inside-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.inside-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,22,40,0.12); }
.inside-icon { font-size: 2.4rem; margin-bottom: 14px; }
.inside-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.inside-desc { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; }

/* === HOW TO USE SECTION === */
.howto-section {
  padding-bottom: 70px;
  background: var(--white);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.step-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}
.step-list-item:hover { transform: translateX(6px); }
.step-list-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
}
.step-list-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.step-list-desc { font-size: 0.9rem; color: var(--gray-text); line-height: 1.65; }

/* === GUARANTEE SECTION === */
.guarantee-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.guarantee-card {
  display: flex;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
}
.guarantee-img-wrap { flex-shrink: 0; text-align: center; }
.guarantee-img-wrap img {
  max-width: 180px;
  filter: drop-shadow(0 8px 24px rgba(212,160,23,0.3));
}
.guarantee-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.guarantee-section .body-text { color: rgba(255,255,255,0.80); }

/* === BENEFITS SECTION === */
.benefits-section {
  padding-bottom: 70px;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: 22px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,22,40,0.1); }
.benefit-icon { font-size: 2rem; flex-shrink: 0; }
.benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.benefit-desc { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; }

/* === BONUSES SECTION === */
.bonuses-section {
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f0f3fa 0%, #edf0f7 100%);
}
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.bonus-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-img-wrap { flex-shrink: 0; }
.bonus-img-wrap img {
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.bonus-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.bonus-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.bonus-desc { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }

/* === FAQ SECTION === */
.faq-section {
  padding-bottom: 70px;
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item { }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--primary);
  text-align: left;
  min-height: 56px;
  transition: all var(--transition);
}
.faq-question:hover { border-color: var(--accent); background: #fff; }
.faq-question[aria-expanded="true"] {
  border-color: var(--accent);
  background: #fffbf0;
  border-radius: 12px 12px 0 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: #fffbf0;
  border: 2px solid var(--accent);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 18px 22px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-answer:not([hidden]) {
  max-height: 400px;
  opacity: 1;
}
.faq-answer[hidden] { display: block !important; padding: 0 22px; }
.faq-answer p { font-size: 0.92rem; color: #334; line-height: 1.7; }

/* === ORDER SECTION === */
.order-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #060e1f 0%, #0a1628 100%);
  text-align: center;
}
.order-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}
.order-img-wrap { margin-bottom: 36px; }
.order-img {
  max-width: 900px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  margin: 0 auto;
}
.order-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* === QUICK LINKS === */
.quicklinks-section {
  background: var(--primary-mid);
  padding: 40px 0;
}
.quicklinks-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.quicklink-item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  transition: all var(--transition);
}
.quicklink-item:hover { color: var(--accent); border-color: var(--accent); }
.quicklink-item.highlight-link {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.quicklink-item.highlight-link:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

/* === FOOTER === */
footer {
  background: var(--primary);
  padding: 50px 0 30px;
  color: rgba(255,255,255,0.65);
}
.footer-content { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-logo strong { color: var(--accent); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer {
  font-size: 0.82rem;
  max-width: 700px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 900;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.scroll-top:not([hidden]) { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); }
.scroll-top:active { transform: scale(0.95); }

/* === PURCHASE NOTIFICATION === */
.purchase-notify {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 1100;
  max-width: 320px;
  width: calc(100% - 48px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-left: 5px solid #22a855;
  padding: 14px 16px;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.purchase-notify.show {
  transform: translateX(0);
  pointer-events: all;
}
.notify-inner { display: flex; align-items: center; gap: 12px; }
.notify-img { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; }
.notify-text { font-size: 0.85rem; color: #334; flex: 1; line-height: 1.4; }
.notify-close {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #999;
  font-size: 0.75rem;
  border-radius: 50%;
  transition: all var(--transition);
}
.notify-close:hover { background: #f0f0f0; color: #333; }

/* === EXIT POPUP === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,14,31,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.popup-overlay[hidden] { display: none; }
.popup-box {
  background: var(--white);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  animation: popupIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.8) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-box::before {
  content: '';
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--accent), var(--red));
}
.popup-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  font-size: 1rem;
  color: #666;
  transition: all var(--transition);
  z-index: 1;
}
.popup-close:hover { background: #e0e0e0; color: #333; }
.popup-content { padding: 32px; text-align: center; }
.popup-badge {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.popup-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.popup-desc { font-size: 0.95rem; color: #334; margin-bottom: 20px; line-height: 1.65; }
.popup-timer {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.popup-btn {
  width: 100%;
  max-width: none;
  min-width: 0;
  font-size: 1.05rem;
  padding: 18px 24px;
}
.popup-guarantee { font-size: 0.8rem; color: #666; margin: 14px 0; }
.popup-skip {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: underline;
  transition: color var(--transition);
}
.popup-skip:hover { color: #666; }

/* ================================================
   RESPONSIVE STYLES
================================================ */

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
  .nav-menu.active { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { display: none; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-badge { margin: 0 auto; }
  .hero-title { align-items: center; }
  .timer-wrapper { width: auto; align-self: center; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { order: -1; }
  .hero-img-badge { bottom: -10px; right: 10px; }

  /* Two Col */
  .two-col-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Inside */
  .inside-grid { grid-template-columns: 1fr 1fr; }

  /* Steps List */
  .step-list-item { gap: 16px; }

  /* Guarantee */
  .guarantee-card {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
    text-align: center;
  }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Bonus */
  .bonus-card { flex-direction: column; gap: 20px; text-align: center; }
  .bonus-img-wrap img { margin: 0 auto; }

  /* Timer display */
  .timer-unit span { font-size: 2.4rem; }

  /* Scroll top */
  .scroll-top { width: 56px; height: 56px; bottom: 20px; right: 16px; }

  /* Notify */
  .purchase-notify { bottom: 16px; left: 16px; right: 16px; max-width: none; width: auto; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 320px; }
  .btn-ghost { width: 100%; max-width: 320px; }
  .order-cta-wrap { flex-direction: column; align-items: center; }
  .order-cta-wrap .btn-primary { width: 100%; max-width: 340px; }
  .quicklinks-grid { flex-direction: column; align-items: center; }
  .quicklink-item { width: 100%; text-align: center; max-width: 300px; }
  .faq-question { font-size: 0.9rem; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-title-line1, .hero-title-accent, .hero-title-sub,
  .hero-desc, .timer-wrapper, .hero-cta-group, .hero-trust,
  .hero-img-wrapper {
    opacity: 1 !important;
    transform: none !important;
  }
}
