/* =============================================
   NANDO VIDEOMAKER — SALES PAGE STYLESHEET
   Dark Neon Theme · Futuristic · Professional
   ============================================= */

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

:root {
  --orange:    #FF6B00;
  --orange-lt: #FF8C00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --neon-blue: #00D4FF;
  --neon-purple: #8B5CF6;
  --bg-dark:   #080810;
  --bg-card:   #0F0F1A;
  --bg-card2:  #131325;
  --border:    rgba(255,107,0,0.18);
  --border-b:  rgba(0,212,255,0.15);
  --text:      #E8E8F0;
  --text-muted:#9090B0;
  --white:     #FFFFFF;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Orbitron', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --trans:     0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
.neon-orange  { color: var(--orange); }
.txt-white    { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}
.section-title.left { text-align: left; margin-bottom: 24px; }

/* ── BUTTONS ── */
.btn-primary {
  position: relative;
  display: inline-flex;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
  padding: 3px;
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px var(--orange-glow); }

.btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.btn-primary:hover .btn-glow { opacity: 0.6; }

.btn-text {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, #cc5500 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 18px 40px;
  border-radius: 100px;
  gap: 4px;
}
.btn-text small { font-size: 0.7rem; font-weight: 400; opacity: 0.9; letter-spacing: 0; }

.btn-nav {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--orange-lt); box-shadow: 0 0 20px var(--orange-glow); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 16, 0.85);
  border-bottom: 1px solid var(--border);
  transition: all var(--trans);
}
.navbar.scrolled { padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.logo-accent { color: var(--orange); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(255,107,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(139,92,246,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A16 0%, #080810 100%);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 24px;
}

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

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.hero-subtitle strong { color: var(--text); }

.hero-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pillar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.pillar-icon { font-size: 1rem; }

.hero-security {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.sep { opacity: 0.4; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px;
  gap: 2px;
}
.stat-item small { font-size: 0.68rem; color: var(--text-muted); }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-sfx { font-family: var(--font-head); font-size: 1.2rem; color: var(--orange); margin-left: 1px; }
.stat-sep { width: 1px; height: 40px; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100%{opacity:0.6;} 50%{opacity:1;} }

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,107,0,0.3);
  box-shadow: 0 0 60px rgba(255,107,0,0.2), 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img { width: 100%; display: block; }

.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,15,26,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.top-left { top: 16px; left: -30px; animation-delay: 0s; }
.hero-float-card.bottom-right { bottom: 24px; right: -30px; animation-delay: 1.5s; }
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-size: 0.82rem; color: var(--white); }
.hero-float-card small { font-size: 0.65rem; color: var(--text-muted); }
.fc-icon { font-size: 1.4rem; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.68rem; letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce { 0%,100%{opacity:0.4;transform:scaleY(1);} 50%{opacity:1;transform:scaleY(1.3);} }

/* ── SECTIONS ── */
section { padding: 100px 0; }
.section-dark { background: #050508; }

/* ── PROBLEM ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,107,0,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  transition: border-color var(--trans), transform var(--trans);
}
.problem-card:hover { border-color: rgba(255,107,0,0.35); transform: translateY(-4px); }
.p-icon { font-size: 2.2rem; }
.problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.problem-card strong { color: var(--text); }

.problem-arrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
}
.arrow-dash { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--orange), transparent); max-width: 200px; }

/* ── ABOUT ── */
.section-about { position: relative; overflow: hidden; }
.about-glow-bg {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.about-visual { position: relative; }
.about-img-ring {
  position: absolute; inset: -12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), transparent 60%, var(--neon-purple) 100%);
  opacity: 0.4;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,107,0,0.25);
}
.about-img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: top; }

.about-tools-card {
  position: absolute; bottom: -20px; right: -30px;
  background: rgba(13,13,22,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  min-width: 200px;
}
.tools-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; }
.tool-line { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text); margin-bottom: 8px; }
.tool-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tool-dot.orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.tool-dot.blue { background: var(--neon-blue); box-shadow: 0 0 6px var(--neon-blue); }
.tool-dot.purple { background: var(--neon-purple); box-shadow: 0 0 6px var(--neon-purple); }
.tool-dot.pink { background: #EC4899; box-shadow: 0 0 6px #EC4899; }

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.about-text strong, .about-text em { color: var(--text); font-style: normal; }
.about-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.ab-badge { font-size: 0.88rem; color: var(--text); display: flex; align-items: center; gap: 8px; }

/* ── CURRICULUM ── */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.curr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.curr-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.curr-card:hover { border-color: rgba(255,107,0,0.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255,107,0,0.12); }
.curr-card:hover::before { opacity: 1; }

.curr-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,107,0,0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.curr-icon { font-size: 2rem; margin-bottom: 12px; }
.curr-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.curr-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.section-testimonials { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform var(--trans);
}
.test-card:hover { transform: translateY(-4px); }
.test-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255,107,0,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
}
.stars { color: #FFB800; font-size: 1rem; letter-spacing: 2px; }
.test-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.test-card p strong { color: var(--text); }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #cc5500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: #fff;
  flex-shrink: 0;
}
.test-author strong { font-size: 0.9rem; color: var(--white); display: block; }
.test-author small { font-size: 0.72rem; color: var(--text-muted); }

/* ── BONUS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform var(--trans), border-color var(--trans);
}
.bonus-card:hover { transform: translateY(-5px); border-color: rgba(255,107,0,0.4); }
.bonus-tag {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  color: var(--orange);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.3);
  align-self: flex-start;
}
.bonus-icon { font-size: 2.4rem; }
.bonus-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); }
.bonus-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.bonus-price { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.strike-val { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.free-val { font-size: 1rem; font-weight: 800; color: var(--orange); }

/* ── GUARANTEE ── */
.section-guarantee {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0A0A16 0%, #100818 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.08) 0%, transparent 70%);
}
.guarantee-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}
.guarantee-shield {
  display: flex; align-items: center; justify-content: center;
}
.shield-inner {
  width: 160px; height: 190px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
  border: 2px solid var(--orange);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(255,107,0,0.25);
  animation: shield-pulse 3s ease-in-out infinite;
}
@keyframes shield-pulse { 0%,100%{box-shadow:0 0 30px rgba(255,107,0,0.2);} 50%{box-shadow:0 0 60px rgba(255,107,0,0.4);} }
.shield-num { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.shield-dias { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; }
.shield-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; color: var(--text-muted); }
.guarantee-content { display: flex; flex-direction: column; gap: 16px; }
.guarantee-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.guarantee-text strong { color: var(--text); }

/* ── CTA ── */
.section-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #050508 0%, #0A050A 100%);
  text-align: center;
}
.cta-glow-bg {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at top, rgba(255,107,0,0.14) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px;
}

.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: inline-flex; flex-direction: column; align-items: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.price-de { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.strike-price { text-decoration: line-through; color: var(--text-muted); }
.price-main { display: flex; align-items: flex-start; gap: 4px; line-height: 1; margin-bottom: 10px; }
.price-rs { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--orange); padding-top: 10px; }
.price-val { font-family: var(--font-head); font-size: 5rem; font-weight: 900; color: var(--orange); text-shadow: 0 0 40px rgba(255,107,0,0.5); }
.price-detail { font-size: 0.78rem; color: var(--text-muted); }

.cta-list {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.cta-item { font-size: 0.92rem; color: var(--text); }
.cta-item em { color: var(--orange); font-style: normal; font-size: 0.8rem; }

.cta-btn { font-size: 1.1rem; }
.cta-btn .btn-text { padding: 22px 48px; }

.cta-security-row {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
}
.sec-item { font-size: 0.78rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; 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(--trans);
}
.faq-item.open { border-color: rgba(255,107,0,0.35); }
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  color: var(--white); font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-body);
  text-align: left; gap: 16px;
}
.faq-ico { color: var(--orange); font-size: 1.4rem; flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── FOOTER ── */
.footer {
  background: #030305;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; align-items: center; gap: 8px; }
.footer-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--orange); }
.flink-sep { color: var(--border); }

/* ── INSTAGRAM SECTION ── */
.section-instagram { padding: 80px 0; }

.insta-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.insta-profile-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.insta-avatar-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.insta-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--bg-card);
}

.insta-handle {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.insta-name {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.insta-bio {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.insta-follow-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: opacity var(--trans), transform var(--trans);
  text-decoration: none;
}
.insta-follow-btn:hover { opacity: 0.85; transform: scale(1.03); }

.insta-reels-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.insta-reels-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.reel-icon {
  color: var(--orange);
  font-size: 1.1rem;
}
.insta-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.reel-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  display: block;
  border: 1px solid rgba(255,107,0,0.2);
  transition: transform var(--trans), border-color var(--trans);
}
.reel-thumb:hover { transform: scale(1.04); border-color: var(--orange); }
.reel-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.reel-thumb:hover .reel-overlay { background: rgba(255,107,0,0.3); }
.reel-play-ico {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.insta-see-more {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity var(--trans);
}
.insta-see-more:hover { opacity: 0.75; }

/* ── MODULES THUMBNAIL SECTION ── */
.section-modules { padding: 90px 0; }

.modules-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: -16px auto 48px;
  line-height: 1.7;
}

.modules-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.module-thumb-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.module-thumb-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.18);
}

.module-thumb-img-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.module-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.module-thumb-card:hover .module-thumb-img { transform: scale(1.04); }

.module-thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-head);
}

.module-thumb-info {
  padding: 20px 18px 22px;
}

.module-thumb-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.module-thumb-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modules-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.modules-more-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.modules-cta-btn { max-width: 480px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 40px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-float-card.top-left { left: 0; }
  .hero-float-card.bottom-right { right: 0; }
  .hero-content { align-items: center; text-align: center; }
  .hero-subtitle { margin: 0 auto; }
  .hero-security { justify-content: center; }
  .hero-pillars { justify-content: center; }
  .section-title.left { text-align: center; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .about-content { align-items: center; text-align: center; }
  .ab-badge { justify-content: center; }
  .insta-wrapper { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .insta-reels-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }

  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .modules-thumbs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .problems-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .modules-thumbs-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .hero-stats { flex-direction: column; }
  .stat-sep { width: 80%; height: 1px; }
  .price-val { font-size: 3.8rem; }
  .cta-list { padding: 20px; }
  .cta-security-row { flex-direction: column; gap: 8px; }
  .btn-text { padding: 16px 28px; font-size: 0.95rem; }
  nav .btn-nav { display: none; }
  .about-tools-card { position: static; margin-top: 16px; }
}
