/* ============================================
   WAFFI LANDING PAGE - MODERN REDESIGN
   ============================================ */

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

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

/* ============================================
   COLOR VARIABLES
   ============================================ */

:root {
  --primary-blue: #3d5a99;
  --primary-orange: #f5a623;
  --dark-blue: #1a365d;
  --light-blue: #e8f4fd;
  --light-orange: #fff8ed;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --gradient-blue: linear-gradient(135deg, #3d5a99 0%, #5a7fc4 100%);
  --gradient-orange: linear-gradient(135deg, #f5a623 0%, #ff8c42 100%);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61, 90, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 90, 153, 0.4);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-orange {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 600;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark-blue);
}

.hero-content h1 .highlight {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
}

.hero-slideshow .slide:first-child {
  position: relative;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slideshow .slide:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

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

.slideshow-dot:hover {
  background: var(--primary);
  transform: scale(1.2);
}

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

.portal-screenshot {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease, opacity 0.8s ease-in-out;
}

.portal-screenshot:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-it-works h2,
.for-businesses h2,
.for-advertisers h2,
.social-proof h2,
.faq h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 2px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(61, 90, 153, 0.1);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-blue);
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FOR BUSINESSES SECTION
   ============================================ */

.for-businesses {
  padding: 100px 0;
  background: var(--light-blue);
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-content.reverse {
  direction: rtl;
}

.split-content.reverse > * {
  direction: ltr;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-tag.orange {
  background: var(--gradient-orange);
}

.content-text h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 36px;
}

.content-text .lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.feature-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gradient-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon.orange {
  background: var(--gradient-orange);
}

.feature-list li strong {
  display: block;
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.feature-list li p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Dashboard Mock */
.image-frame {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.frame-header {
  background: #f5f5f5;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.frame-content {
  padding: 32px;
}

.mock-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mock-stat {
  background: var(--light-blue);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.mock-label {
  font-size: 14px;
  color: var(--text-muted);
}

.mock-chart {
  height: 120px;
  background: linear-gradient(180deg, var(--light-blue) 0%, transparent 100%);
  border-radius: 12px;
  position: relative;
}

.mock-chart::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q100 20 200 50 T400 30' stroke='%233d5a99' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* ============================================
   ADVERTISER STATS SECTION
   ============================================ */

.advertiser-stats-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0;
}

.stats-header .lead {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(247, 148, 29, 0.2);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

/* Ad Demo Section */
.ad-demo-section {
  margin-bottom: 80px;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.demo-text p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.demo-features li {
  font-size: 1rem;
  color: var(--dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-features li::before {
  content: none;
}

/* Tablet Mockup */
.demo-visual {
  display: flex;
  justify-content: center;
}

.tablet-mockup {
  background: #1a1a2e;
  padding: 20px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.tablet-screen {
  background: white;
  width: 320px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-header {
  background: var(--primary-blue);
  color: white;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.875rem;
}

.screen-ad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F7941D 0%, #EA580C 100%);
}

.ad-placeholder {
  text-align: center;
  color: white;
}

.ad-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 12px 24px;
  border: 3px dashed rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.ad-placeholder p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.screen-footer {
  background: #f5f5f5;
  padding: 12px 16px;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}

/* Comparison Section */
.comparison-section {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-section h3 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.comparison-chart {
  overflow-x: auto;
}

.chart-row {
  display: grid;
  grid-template-columns: 150px repeat(3, 1fr);
  gap: 2px;
}

.chart-row.header {
  background: var(--dark);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.chart-row.header .chart-cell {
  color: white;
  font-weight: 600;
  padding: 16px;
  text-align: center;
}

.chart-row.header .chart-cell:first-child {
  background: transparent;
}

.chart-cell {
  padding: 16px;
  text-align: center;
  background: #f9fafb;
  font-size: 0.95rem;
}

.chart-cell.label {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  background: white;
}

.chart-cell.highlight {
  background: #FFF7ED;
  color: var(--primary-orange);
  font-weight: 700;
}

.chart-row:last-child .chart-cell {
  border-radius: 0 0 4px 4px;
}

.chart-row:last-child .chart-cell:first-child {
  border-radius: 0 0 0 12px;
}

.chart-row:last-child .chart-cell:last-child {
  border-radius: 0 0 12px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .demo-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .advertiser-stats-section {
    padding: 60px 0;
  }
  
  .stats-header h2 {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 24px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .comparison-section {
    padding: 24px;
  }
  
  .chart-row {
    grid-template-columns: 100px repeat(3, 1fr);
  }
  
  .chart-cell {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
}

/* ============================================
   FOR ADVERTISERS SECTION
   ============================================ */

.for-advertisers {
  padding: 100px 0;
  background: var(--light-orange);
}

/* Ad Placement Demo */
.ad-placement-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.demo-tablet {
  background: #1a1a2e;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.demo-screen {
  background: var(--white);
  width: 320px;
  height: 420px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.demo-ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.demo-ad-slot.main {
  flex: 1;
  background: var(--gradient-orange);
}

.demo-ad-slot.banner {
  height: 80px;
  background: var(--gradient-blue);
}

.demo-ad-slot small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}

.demo-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.1);
}

.testimonial-stars {
  color: var(--primary-orange);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--dark-blue);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 100px 0;
  background: var(--light-blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 100px 0;
  background: var(--gradient-blue);
}

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

.cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

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

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

  .hero-image {
    display: flex;
    justify-content: center;
  }

  .portal-screenshot {
    max-width: 480px;
    transform: none;
  }

  .split-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-content.reverse {
    direction: ltr;
  }

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

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

  .content-text .btn {
    display: block;
    text-align: center;
  }

  .content-image {
    display: flex;
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-buttons {
    display: none;
  }

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

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .how-it-works h2,
  .for-businesses h2,
  .for-advertisers h2,
  .social-proof h2,
  .faq h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
