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

/* Reset & Base Styles */
:root {
  --primary-color: #DC143C; /* Crimson Red */
  --primary-hover: #BC1334; /* Darker Crimson */
  --secondary-color: #DC143C;
  --dark-bg: #000000; /* Pure Black */
  --light-bg: #f8fafc;
  --text-main: #000000;
  --text-muted: #666666;
  --white: #ffffff;
  --container-width: 1200px;
  --font-sans: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

h1 { 
  font-size: 3.125rem; /* 50px */
  line-height: 3.125rem; /* 50px */
  font-weight: 800;
}
h2 { 
  font-size: 2.5rem; 
  font-weight: 800;
}
h3 { 
  font-size: 1.75rem;
  font-weight: 800;
}

p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 800;
}

.section-title .highlight {
  color: var(--primary-color);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: -1rem auto 3rem auto;
  color: var(--text-main);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 4rem 0;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #9a0f27 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.btn-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.btn-block {
  width: 100%;
  padding: 1rem;
}

.btn-gradient {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 50%, var(--primary-color) 100%);
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.btn-tilt {
  transition: all 0.3s ease;
}

.btn-tilt:hover {
  transform: translateY(-2px) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
}

.nav-links {
  display: none; /* Mobile first hidden */
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
}

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

.nav-btn {
  padding: 0.5rem 1rem;
}

.mobile-menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--white);
  padding: 1rem;
  border-top: 1px solid #eee;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}

/* Hero Section */
#hero {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.headline {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
  font-weight: 800;
}

.subheadline {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--secondary-color);
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  font-style: italic;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-details {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.event-details strong {
  color: var(--primary-color);
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
  font-size: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.time-box span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Problems Section */
#problems {
  background-color: var(--white);
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.problem-item {
  background: var(--light-bg);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.problem-item:hover {
  background: #e8f5e9;
  transform: translateX(10px);
}

.problem-item i {
  font-size: 1.5rem;
  color: #10b981;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.problem-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-outro {
  text-align: center;
  margin: 2.5rem auto 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  max-width: 800px;
}

.section-outro i {
  color: #FFA500;
  margin-right: 0.5rem;
}

/* You Learn Section */
.learning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.learn-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.learn-card h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
}

.learn-card h3::first-letter {
  color: var(--primary-color);
}

.learn-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.learn-card ul li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* System Section */
#system {
  background-color: var(--dark-bg);
  color: var(--white);
}

#system .section-title {
  color: var(--white);
}

.system-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.step-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.step-card ul li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Workflow Showcase */
.workflow-showcase {
  margin: 4rem 0 3rem;
  text-align: center;
}

.workflow-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
}

.workflow-image-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.workflow-image-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.4);
  border-color: var(--primary-color);
}

.workflow-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.workflow-image-container:hover .workflow-image {
  transform: scale(1.01);
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-list {
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.stats-list li {
  margin-bottom: 0.5rem;
}

.about-highlight {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--text-main);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Social Proof */
#social-proof {
    padding: 2rem 0;
    background-color: var(--light-bg);
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.metric-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.metric-card p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}

.quote {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-style: italic;
}

.author strong {
  display: block;
  color: var(--primary-color);
}

.author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonial Screenshots */
.testimonial-screenshots {
  margin-top: 4rem;
  text-align: center;
}

.screenshots-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--dark-bg);
  font-weight: 700;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
  align-items: center;
  justify-items: center;
}

.screenshot-card {
  position: relative;
  transition: transform 0.3s ease, z-index 0.3s ease;
  perspective: 1000px;
  max-width: 400px;
  width: 100%;
}

.screenshot-card:hover {
  transform: scale(1.08) !important;
  z-index: 10;
}

.screenshot-frame {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.screenshot-card:hover .screenshot-frame {
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.6);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: white;
}

.tilt-left {
  transform: rotate(-4deg);
}

.tilt-right {
  transform: rotate(4deg);
}

.screenshot-card:nth-child(1) .screenshot-frame {
  background: linear-gradient(135deg, #DC143C, #e91e63);
}

.screenshot-card:nth-child(2) .screenshot-frame {
  background: linear-gradient(135deg, #BC1334, #8b0000);
}

.screenshot-card:nth-child(3) .screenshot-frame {
  background: linear-gradient(135deg, #DC143C, #c2185b);
}

.screenshot-card:nth-child(4) .screenshot-frame {
  background: linear-gradient(135deg, #BC1334, #9c1331);
}

.screenshot-card:nth-child(5) .screenshot-frame {
  background: linear-gradient(135deg, #e91e63, #DC143C);
}

/* FOMO Section */
#fomo {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
}

#fomo .section-title {
  color: var(--white);
}

.fomo-content {
  max-width: 800px;
  margin: 0 auto;
}

.jensen-quote {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0;
}

.neon-highlight {
  color: #00ff41;
  text-shadow: 
    0 0 5px #00ff41,
    0 0 10px #00ff41,
    0 0 20px #00ff41,
    0 0 40px #00ff41;
  animation: neon-flicker 2s infinite alternate;
  font-weight: 700;
  display: inline-block;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 5px #00ff41,
      0 0 10px #00ff41,
      0 0 20px #00ff41,
      0 0 40px #00ff41,
      0 0 80px #00ff41;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.fomo-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.fomo-col {
  padding: 2rem;
  border-radius: 12px;
}

.old-way {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.old-way h3 { color: #f87171; }
.old-way ul li i { color: #f87171; margin-right: 0.5rem; }

.new-way {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.new-way h3 { color: #34d399; }
.new-way ul li i { color: #34d399; margin-right: 0.5rem; }

/* Community */
#community {
    background-color: var(--white);
}
.community-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.community-img {
    border-radius: 12px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* YouTube Section */
#youtube {
  background-color: var(--light-bg);
}

.youtube-header {
  text-align: center;
  margin-bottom: 3rem;
}

.youtube-loading {
  text-align: center;
  padding: 4rem 0;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.youtube-error {
  text-align: center;
  padding: 3rem 0;
}

.youtube-error .error-message {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.video-content {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

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

.watch-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.watch-btn:hover {
  color: var(--primary-hover);
}

.watch-btn i {
  font-size: 1rem;
}

/* Form Section */
.form-container {
  max-width: 600px;
}

.form-sub {
  text-align: center;
  margin-bottom: 2rem;
}

.form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.faq-item {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--dark-bg);
  color: var(--white);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--white);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-disclaimer {
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
  h1 { 
    font-size: 4rem; 
    line-height: 4rem;
  }
  h2 { font-size: 3rem; }
  
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-container {
    flex-direction: row;
    text-align: left;
  }
  
  .hero-content {
    flex: 1;
    text-align: left;
  }
  
  .hero-image {
    flex: 1;
    max-width: 500px;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
  
  .countdown {
    justify-content: flex-start;
  }
  
  .cta-group {
    flex-direction: row;
  }
  
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .learn-card.full-width {
    grid-column: span 2;
  }
  
  .system-steps {
    flex-direction: row;
  }
  
  .about-container {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .fomo-comparison {
    grid-template-columns: 1fr 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
