@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.3);
  --accent-light: #ff8f5e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #222222;
  --gold: #ffd700;
  --gradient-accent: linear-gradient(135deg, #ff6b2b, #ff3d00);
  --gradient-premium: linear-gradient(135deg, #ffd700, #ff8c00);
  --shadow-glow: 0 0 40px rgba(255, 107, 43, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10, 10, 10, 0.95);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-cta {
  background: var(--gradient-accent);
  color: #ffffff !important;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  color: #ffffff !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 107, 43, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(255, 61, 0, 0.05) 0%, transparent 50%);
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 43, 0.1);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 107, 43, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  object-position: bottom;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}

.floating-card {
  position: absolute;
  background: rgba(22, 22, 22, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  bottom: 20%;
  right: -30px;
}

.floating-card.card-2 {
  top: 15%;
  left: -20px;
}

.floating-card .fc-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.floating-card .fc-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--gradient-accent);
  text-align: center;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.urgency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== LUCIDE ICONS ===== */
.lucide-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke-width: 1.8;
}

.lucide-sm {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.proof-icon .lucide-icon {
  width: 32px;
  height: 32px;
}

.af-icon .lucide-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.check .lucide-sm {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.disabled .check .lucide-sm {
  color: var(--text-muted);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--bg-secondary);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.proof-icon {
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 43, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* ===== ABOUT / RESULTS ===== */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: var(--accent);
}

.af-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 43, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.af-text h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.af-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== VIDEO ===== */
.video-section {
  background: var(--bg-secondary);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.video-container video {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 107, 43, 0.08) 0%, var(--bg-card) 40%);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 43, 0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-accent);
  padding: 0.4rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 20px 0 12px;
}

.price-card-top {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-card-body {
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-tier {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}

.price-amount .original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 500;
  order: 2;
}

.price-amount .current {
  display: flex;
  align-items: baseline;
  order: 1;
}

.price-amount .dollar {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-right: -4px;
}

.price-amount .amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-features li .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.price-features li.disabled {
  opacity: 0.4;
}

.price-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: auto;
}

.price-btn.primary {
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
}

.price-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(255, 107, 43, 0.3);
  transform: translateY(-2px);
}

.price-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--border);
}

.price-btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.save-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 215, 0, 1);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 0 20px 0 12px;
  font-size: 0.7rem;
  font-weight: 800;
  z-index: 10;
  text-transform: uppercase;
}

/* ===== GUARANTEE ===== */
.guarantee {
  text-align: center;
  background: var(--bg-secondary);
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.guarantee-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.guarantee-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 1.2rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  color: var(--accent);
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at center, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.before-after-section {
  padding: 2rem 1rem;
}

.ba-slider-container {
  max-width: 600px;
  margin: 3rem auto 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.ba-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.ba-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.3);
}

.ba-image-after {
  z-index: 1;
}

.ba-image-after img {
  object-position: 31px center;
}

.ba-image-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-image-before img {
  object-position: -70px center;
}

.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
  margin: 0;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.ba-slider-button {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ba-labels {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 4;
  pointer-events: none;
}

.ba-label-before,
.ba-label-after {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
  display: flex;
  height: 100%;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.item-large {
  grid-column: span 6;
  grid-row: span 2;
  aspect-ratio: 3/4;
}

.gallery-item:not(.item-large) {
  grid-column: span 6;
}

@media (min-width: 768px) {
  .item-large {
    grid-column: span 7;
  }

  .gallery-item:not(.item-large) {
    grid-column: span 5;
  }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.training-badge {
  background: var(--gradient-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 43, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text p {
    margin: 0 auto 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-image {
    order: 0;
  }

  .hero-image img {
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .floating-card {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  section {
    padding: 4rem 1rem;
  }

  .hero {
    padding: 5rem 1rem 3rem;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .proof-item {
    padding: 1.2rem;
  }

  .proof-number {
    font-size: 2rem;
  }

  .about-image-wrap img {
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .price-amount .amount {
    font-size: 3rem;
  }

  .price-amount .dollar {
    font-size: 1.6rem;
  }

  .guarantee-box {
    padding: 2rem 1.5rem;
  }

  .guarantee-box h3 {
    font-size: 1.4rem;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .urgency-bar {
    font-size: 0.8rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-image img {
    max-width: 280px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .price-card-top {
    padding: 1.5rem 1.2rem 1rem;
  }

  .price-card-body {
    padding: 1rem 1.2rem 1.5rem;
  }

  .price-name {
    margin-bottom: 0.5rem;
  }

  .price-features {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .price-features li {
    font-size: 0.85rem;
  }

  .price-amount .amount {
    font-size: 2.5rem;
  }

  .price-amount .original {
    font-size: 1.2rem;
  }

  .about-image-wrap img {
    max-width: 260px;
  }
}

/* ===== TRANSFORMATIONS ===== */
.transformations {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.transformations .section-header {
  padding: 0 2rem;
}

.transformations-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.transformations-grid::-webkit-scrollbar {
  display: none;
}

.transformation-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: calc((100% - 4rem) / 3);
  scroll-snap-align: center;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.transformation-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.transformation-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/4;
  background: #1a1a1a;
}

.transformation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.transformation-card:hover .transformation-img img {
  transform: scale(1.05);
}

.transformation-info {
  padding: 1.5rem;
  text-align: center;
}

.transformation-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.transformation-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.transformation-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.t-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-stat-val {
  font-weight: 800;
  color: var(--accent);
  font-size: 1rem;
}

.t-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .transformations {
    padding: 6rem 0;
  }

  .transformations-grid {
    gap: 1rem;
    padding-bottom: 1rem;
    padding-left: 7.5vw;
    padding-right: 7.5vw;
  }

  .transformations-grid::after {
    content: '';
    display: block;
    width: 1px;
    flex-shrink: 0;
  }

  .transformation-card {
    scroll-snap-align: center;
    width: 85vw;
    margin: 0;
    flex-shrink: 0;
  }

  /* PRICING CAROUSEL (MOBILE) */
  .pricing {
    padding: 6rem 0;
  }

  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 2rem;
    padding-left: 7.5vw;
    padding-right: 7.5vw;
    max-width: none;
    margin: 0;
  }

  .pricing-grid::after {
    content: '';
    display: block;
    width: 1px;
    flex-shrink: 0;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    scroll-snap-align: center;
    width: 85vw;
    margin: 0;
    flex-shrink: 0;
  }
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .carousel-controls {
    display: none;
  }
}

.carousel-arrow {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

#pricing-dots {
  display: none;
}

@media (max-width: 768px) {
  #pricing-dots {
    display: flex;
  }

  .carousel-arrow {
    display: none;
  }

  .transformation-card {
    scroll-snap-align: center;
  }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}