/* ==========================================
   IMPACTA DIGITAL - Premium Landing Page Styles
   ========================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg-deep: #0e0000;
  --color-bg-dark: #120202;
  --color-brand-maroon: #3c0606;
  --color-brand-crimson: #510102;
  --color-brand-red: #740108;
  --color-brand-bright-red: #9e0c14;
  --color-accent-gold: #c5a880; /* Subtle gold/bronze for luxury accent */
  --color-text-white: #ffffff;
  --color-text-light: #e5e5e5;
  --color-text-muted: #a3a3a3;
  --color-glass-bg: rgba(18, 2, 2, 0.65);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glow: rgba(116, 1, 8, 0.4);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1200px;
}

/* --- Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-deep);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-brand-maroon);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-red);
}

/* --- Background Noise & Particles --- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.ambient-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--color-glow) 0%, rgba(14,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(80px);
}

/* --- Layout Containers --- */
main {
  position: relative;
  z-index: 2;
}

section {
  padding: 8rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-text-white);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 3rem;
  font-family: var(--font-sans);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.highlight-gold {
  color: var(--color-accent-gold);
  font-family: var(--font-serif);
  font-style: italic;
}

.highlight-red {
  color: #ff3333;
}

/* --- Buttons & CTAs --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-bright-red) 100%);
  color: var(--color-text-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(116, 1, 8, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, #ecd7b7 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.4);
  color: #0e0000;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-text-white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(116, 1, 8, 0.15);
}

/* ==========================================
   SECTION 1 - HERO
   ========================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-tagline {
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 550px;
}

/* Bullets */
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.bullet-item {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--color-text-white);
  font-weight: 500;
}

.bullet-icon {
  color: var(--color-accent-gold);
  margin-right: 12px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

/* Media (Right Side) */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Video Container */
.video-container {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(116, 1, 8, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(14,0,0,0.8) 0%, rgba(14,0,0,0.2) 100%);
  z-index: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* When video is playing, hide the dark overlay */
.video-container.playing::before {
  opacity: 0;
}

/* HTML5 Video element */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}

.video-container:hover .hero-video {
  transform: scale(1.02);
}

/* When playing, remove hover zoom to avoid jankiness */
.video-container.playing .hero-video {
  transform: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--color-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
  color: var(--color-brand-red);
  pointer-events: none;
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transform: translateX(2px);
}

.video-container:hover .video-play-btn {
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.6);
}

/* Hide play button when video is playing */
.video-container.playing .video-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}

/* Glow ring */
.media-glow-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 35px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  z-index: -1;
  pointer-events: none;
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { transform: rotate(360deg); opacity: 0.5; }
}

/* Trust Indicators */
.trust-indicators {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-glass-border);
  padding-top: 2.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 0.2rem;
}

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

/* Video Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(116, 1, 8, 0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.modal-close svg {
  margin-left: 5px;
}

.modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   SECTION 2 - WHY MOST BUSINESSES FAIL
   ========================================== */
.fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fail-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-brand-red);
  transition: var(--transition-smooth);
}

.fail-card:hover::before {
  background: var(--color-accent-gold);
}

.fail-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(116, 1, 8, 0.15);
  border: 1px solid rgba(116, 1, 8, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #ff4d4d;
  transition: var(--transition-smooth);
}

.fail-card:hover .fail-icon-container {
  background: var(--color-brand-red);
  color: var(--color-text-white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(116, 1, 8, 0.4);
}

.fail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ==========================================
   SECTION 3 - WHAT YOU WILL LEARN
   ========================================== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.learn-card {
  display: flex;
  flex-direction: column;
}

.learn-icon-container {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.learn-card:hover .learn-icon-container {
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}

.learn-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.learn-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ==========================================
   SECTION 4 - TRANSFORMATION
   ========================================== */
.transform-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.transform-panel {
  display: flex;
  flex-direction: column;
  padding: 3.5rem;
}

.transform-panel.before {
  border-left: 4px solid var(--color-brand-red);
}

.transform-panel.after {
  border-left: 4px solid var(--color-accent-gold);
}

.panel-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.panel-icon {
  margin-right: 15px;
  width: 32px;
  height: 32px;
}

.before .panel-icon { color: var(--color-brand-red); }
.after .panel-icon { color: var(--color-accent-gold); }

.transform-panel h3 {
  font-size: 1.8rem;
}

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.transform-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
}

.transform-list li svg {
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.before .transform-list li svg { color: var(--color-brand-red); }
.after .transform-list li svg { color: var(--color-accent-gold); }

/* ==========================================
   SECTION 5 - ABOUT NORLIS COA
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8);
  border: 1px solid var(--color-glass-border);
}

.about-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.about-story {
  display: flex;
  flex-direction: column;
}

.about-story h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.story-para {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.achievement-card {
  padding: 1.5rem;
  border-left: 2px solid var(--color-accent-gold);
  background: rgba(255, 255, 255, 0.02);
}

.achievement-card h4 {
  font-size: 1.2rem;
  color: var(--color-text-white);
  margin-bottom: 0.5rem;
}

.achievement-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ==========================================
   SECTION 6 - TESTIMONIALS
   ========================================== */
.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 2rem;
}

.testimonial-card {
  min-width: calc(50% - 1rem); /* 2 per view on desktop */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-right: 4px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-text-white);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-brand-red);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  border: 1px solid var(--color-accent-gold);
  font-family: var(--font-sans);
}

.author-info h4 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--color-accent-gold);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  border-color: var(--color-accent-gold);
}

/* ==========================================
   SECTION 7 - REGISTRATION FORM
   ========================================== */
.form-section-container {
  display: flex;
  justify-content: center;
}

.form-wrapper {
  width: 100%;
  max-width: 600px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(116, 1, 8, 0.2);
}

.form-wrapper h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-wrapper p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: rgba(14, 0, 0, 0.5);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  padding: 1.1rem;
  font-size: 1rem;
  color: var(--color-text-white);
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-security svg {
  color: #22c55e;
  width: 16px;
  height: 16px;
}

/* Success screen */
.success-screen {
  display: none;
  text-align: center;
  padding: 2rem 0;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.success-screen h3 {
  color: #22c55e;
  margin-bottom: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SECTION 8 - FINAL CTA
   ========================================== */
#final-cta {
  padding-bottom: 10rem;
}

.final-cta-card {
  text-align: center;
  padding: 5rem 3rem;
  background: linear-gradient(180deg, rgba(60, 6, 6, 0.4) 0%, rgba(14, 0, 0, 0.8) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 1, 8, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.final-cta-card h2 {
  font-size: 3.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.timer-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1;
  text-shadow: 0 0 15px var(--color-brand-red);
}

.timer-label {
  font-size: 0.8rem;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ==========================================
   SECTION 9 - FOOTER
   ========================================== */
footer {
  border-top: 1px solid var(--color-glass-border);
  background: #070000;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-text-white);
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
}

/* ==========================================
   STICKY MOBILE CTA
   ========================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(14, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-glass-border);
  padding: 1rem;
  z-index: 900;
  display: none; /* Controlled by CSS media + JS */
  justify-content: center;
  animation: slideUp 0.4s ease forwards;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta .btn-primary {
  width: 100%;
  max-width: 400px;
  padding: 0.9rem 2rem;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet (Large) and Mobile (Medium) Adjustments */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-bullets {
    margin-left: auto;
    margin-right: auto;
  }
  
  .fail-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .transform-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
}

/* Mobile Portrait */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 5rem 1.5rem;
  }
  
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
  
  .learn-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .transform-panel {
    padding: 2rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .countdown-container {
    gap: 1rem;
  }
  
  .timer-block {
    min-width: 70px;
  }
  
  .timer-number {
    font-size: 2.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  /* Show sticky mobile CTA */
  .sticky-cta.show {
    display: flex;
  }
  
  #final-cta {
    padding-bottom: 12rem; /* Add extra spacing so sticky doesn't overlap content */
  }
}
