/* =============================================
   PROJECT APEX 90 — PREMIUM SALES PAGE CSS
   Dark · Cinematic · Elite · High-Conversion
   ============================================= */

/* ── 1. TOKENS ── */
:root {
  --red: #cc0000;
  --red-hot: #e8001a;
  --red-dim: rgba(200, 0, 0, 0.15);
  --red-glow: rgba(200, 0, 0, 0.35);

  --black: #000000;
  --near-black: #080808;
  --charcoal: #111111;
  --card-bg: #161616;
  --border: #2a2a2a;
  --border-hot: rgba(200, 0, 0, 0.4);

  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d0d0d0;
  --gray-400: #a0a0a0;
  --gray-600: #555555;

  --font-head: 'Bebas Neue', 'Rajdhani', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ── 2. RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--near-black);
  color: var(--gray-100);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

svg {
  flex-shrink: 0;
}

/* ── 3. UTILITIES ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.bg-near-black {
  background-color: var(--near-black);
}

.bg-charcoal {
  background-color: var(--charcoal);
}

.bg-black {
  background-color: var(--black);
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--red-hot);
}

.text-red-icon {
  color: #ef4444;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-section {
  margin-bottom: 3.5rem;
}

.font-rajdhani {
  font-family: var(--font-ui);
}

.text-uppercase {
  text-transform: uppercase;
}

.hidden-mobile {
  display: none;
}

.full-width {
  width: 100%;
  display: block;
}

/* ── 4. TYPOGRAPHY ── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  /* Bebas Neue is inherently bold */
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 2.5rem;
  height: 3px;
  background: var(--red-hot);
}

.section-title.centered {
  display: block;
  text-align: center;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 680px;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hot) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--red-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-hero {
  font-size: 1.6rem;
  padding: 1rem 3rem;
}

.btn-sm {
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
}

.btn-float {
  font-size: 1rem;
  padding: 0.55rem 1.5rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 0, 26, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(220, 0, 26, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 0, 26, 0);
  }
}

.btn-pulse {
  animation: pulseGlow 2.2s infinite;
}

/* ── 6. FLOATING CTA ── */
.floating-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-text {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* ── 7. LANG SWITCHER ── */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  gap: 0.4rem;
  background: rgba(0,0,0,0.75);
  padding: 0.4rem 0.6rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid transparent;
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.lang-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('assets/hero_bg.png') center / cover no-repeat;
  padding: 7rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(8, 0, 0, 0.75) 40%,
      rgba(8, 8, 8, 0.98) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.hero-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow-badge {
  display: inline-block;
  background: var(--red-dim);
  border: 1px solid var(--border-hot);
  color: var(--red-hot);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--gray-300);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.75;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 40px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-top: 1.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--red-hot);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 0.8;
  }
}

/* ── 9. SPLIT LAYOUT (Problem section) ── */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.align-center {
  align-items: center;
}

.highlight-box {
  background: rgba(200, 0, 0, 0.06);
  border-left: 3px solid var(--red-hot);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0 2rem;
}

.highlight-text {
  font-size: 1.05rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.highlight-accent {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--gray-300);
}

.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.problem-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ef4444;
}

.truth-conclusion {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Image Frame */
.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cinematic-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.15) grayscale(0.15);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 2rem 1rem 0.75rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ── 10. WHO IS FOR ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.who-card:hover,
.who-card.featured {
  border-color: var(--border-hot);
  box-shadow: 0 0 30px rgba(200, 0, 0, 0.1);
}

.who-img-wrap {
  position: relative;
  overflow: hidden;
}

.who-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.4) contrast(1.05);
  transition: var(--transition);
}

.who-card:hover .who-img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.03);
}

.who-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-bg) 0%, transparent 60%);
}

.who-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.who-body {
  padding: 1.5rem;
}

.who-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.who-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.who-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-300);
}

.who-benefits li svg {
  width: 16px;
  height: 16px;
  stroke: var(--red-hot);
  flex-shrink: 0;
}

/* ── 11. SYSTEM CARDS (What Is APEX) ── */
.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.system-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.system-card:hover {
  border-color: var(--border-hot);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-dim);
  color: var(--red-hot);
  margin-bottom: 1rem;
}

.system-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red-hot);
}

.system-card h3 {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.system-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.hero-image-section {
  margin-top: 2rem;
}

.section-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* ── 12. HOW IT WORKS (Steps) ── */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--border-hot);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--red-hot);
  line-height: 1;
  min-width: 3.5rem;
  text-align: center;
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.step-connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto 0 calc(3.5rem / 2 + 1.5rem - 1px);
}

.manifesto-block {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-block p {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

/* ── 13. MODULES ── */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.module-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.module-card:hover {
  border-left-color: var(--red-hot);
  background: rgba(255, 255, 255, 0.02);
}

.module-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--red-hot);
  min-width: 2.8rem;
  line-height: 1;
  padding-top: 2px;
}

.module-info h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.25rem;
}

.module-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.product-access-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(200, 0, 0, 0.08), rgba(200, 0, 0, 0.02));
  border: 1px solid var(--border-hot);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.access-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-dim);
}

.access-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red-hot);
}

.access-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.access-text strong {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.access-text span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ── 14. BONUSES ── */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--border-hot);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.bonus-img-wrap {
  position: relative;
}

.bonus-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bonus-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-bg) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.bbg-1 {
  background-image: url('https://images.unsplash.com/photo-1554284126-aa88f22d8b74?auto=format&fit=crop&q=80&w=600');
}

.bbg-2 {
  background-image: url('https://images.unsplash.com/photo-1434494878577-86c23bcb06b9?auto=format&fit=crop&q=80&w=600');
}

.bbg-3 {
  background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=600');
}

.bbg-4 {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=600');
}

.bonus-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 1;
}

.bonus-body {
  padding: 1.5rem;
}

.bonus-badge {
  display: inline-block;
  background: var(--red-dim);
  color: var(--red-hot);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.bonus-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.bonus-body p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.value-banner {
  text-align: center;
  padding: 2rem;
  background: rgba(200, 0, 0, 0.05);
  border: 1px solid var(--border-hot);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.value-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.value-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--white);
}

.value-cross {
  text-decoration: line-through;
  color: var(--gray-600);
}

/* ── 15. TRANSFORMATION ── */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.t-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.t-card:hover {
  border-color: var(--border-hot);
}

.t-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.05);
  transition: var(--transition);
  display: block;
}

.t-card:hover img {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.04);
}

.t-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 100%);
  padding: 2.5rem 1rem 1rem;
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
}

.benefit-chip:hover {
  border-color: var(--border-hot);
  color: var(--white);
}

.benefit-chip svg {
  width: 15px;
  height: 15px;
  stroke: var(--red-hot);
  flex-shrink: 0;
}

/* ── 16. AUTHORITY ── */
.authority-text {
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  max-width: 760px;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

.elite-img-wrap {
  position: relative;
  max-width: 820px;
  margin: 3rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.elite-img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.elite-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(17, 17, 17, 0.8) 100%);
}

/* ── 17. DARK CTA (Micro commitment) ── */
.section-dark-cta {
  background: linear-gradient(135deg, #0a0000 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(200, 0, 0, 0.2);
  border-bottom: 1px solid rgba(200, 0, 0, 0.2);
}

.dark-cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 1rem;
}

.dark-cta-sub {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 600;
}

/* ── 18. GUARANTEE ── */
.guarantee-section {
  background-color: var(--near-black);
  background-image: radial-gradient(ellipse at center, rgba(200, 0, 0, 0.05) 0%, transparent 70%);
}

.guarantee-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(200, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.guarantee-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.guarantee-badge-outer {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--red-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--red-glow);
  animation: guaranteePulse 3s ease-in-out infinite;
}

@keyframes guaranteePulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--red-glow);
  }

  50% {
    box-shadow: 0 0 45px var(--red-glow);
  }
}

.guarantee-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guarantee-shield {
  width: 0;
  height: 0;
  display: none;
}

.guarantee-days {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--red-hot);
  line-height: 1;
}

.guarantee-text-sm {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 700;
}

.guarantee-card .section-title {
  display: block;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.guarantee-card .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.guarantee-desc {
  font-size: 1rem;
  color: var(--gray-300);
  max-width: 500px;
  margin: 1.25rem auto 0.75rem;
  line-height: 1.7;
}

.guarantee-bold {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* ── 19. PRICING ── */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 0, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--card-bg) 0%, rgba(10, 0, 0, 0.8) 100%);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: 0 0 60px rgba(200, 0, 0, 0.2), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.price-tag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.price-was-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.price-old {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--gray-600);
  text-decoration: line-through;
  font-weight: 600;
}

.price-new-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-currency {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--red-hot);
  margin-top: 0.8rem;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 7rem;
  color: var(--white);
  letter-spacing: -2px;
}

.price-cents {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gray-300);
  margin-top: 1.2rem;
}

.price-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ef4444;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.price-urgency svg {
  width: 16px;
  height: 16px;
  stroke: #ef4444;
}

.inline-icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.price-includes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  text-align: left;
}

.price-include-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-300);
}

.price-include-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--red-hot);
  flex-shrink: 0;
}

.secure-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.secure-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-600);
}

/* ── 20. FAQ ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--red-hot);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--red-hot);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ── 21. FINAL DECISION ── */
.final-section {
  position: relative;
  background: url('assets/hero_bg.png') center / cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(8, 0, 0, 0.92));
  z-index: 1;
}

.final-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.final-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.decision-duality {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  max-width: 600px;
}

.decision-negative,
.decision-positive {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  width: 100%;
}

.decision-negative {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.decision-negative p {
  color: var(--gray-400);
  font-size: 1rem;
  font-weight: 600;
}

.decision-positive {
  background: rgba(200, 0, 0, 0.08);
  border: 1px solid var(--border-hot);
}

.decision-positive p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.decision-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.decision-negative .decision-icon {
  stroke: #ef4444;
}

.decision-positive .decision-icon {
  stroke: var(--red-hot);
}

.decision-vs {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gray-600);
  letter-spacing: 4px;
}

.final-sub {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
}

.final-sub strong {
  color: var(--white);
}

.final-reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.final-reassurance span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.final-reassurance svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-600);
}

/* ── 22. FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.footer-links a:hover {
  color: var(--gray-400);
}

.sep {
  color: var(--border);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 23. BLINK ANIMATION ── */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.blink-animation {
  animation: blink 1.8s ease-in-out infinite;
}

/* ── 24. FEATHER ICON GLOBAL ── */
[data-feather] {
  display: inline-block;
}

/* ── 25. TABLET BREAKPOINT (≥ 640px) ── */
@media (min-width: 640px) {
  .hidden-mobile {
    display: block;
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-card img {
    height: 360px;
  }
}

/* ── 26. DESKTOP BREAKPOINT (≥ 960px) ── */
@media (min-width: 960px) {
  .section {
    padding: 6.5rem 0;
  }

  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .system-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-layout {
    flex-direction: row;
    gap: 4rem;
  }

  .split-content {
    flex: 1;
  }

  .split-image {
    flex: 1;
    max-width: 500px;
  }

  .steps-container {
    gap: 0;
  }

  .decision-duality {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .decision-negative,
  .decision-positive {
    flex: 1;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .price-amount {
    font-size: 8rem;
  }
}