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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #0a0a0f;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Adjusted padding for smaller screens */
}

/* Simplified Top Banner */
.banner {
  background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  color: white;
  padding: 10px 0; /* Reduced padding */
  text-align: center;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Reduced gap */
  flex-wrap: wrap;
  position: relative;
  padding: 0 10px; /* Added horizontal padding */
}

.banner-content::before {
  content: "🔥";
  margin-right: 5px;
  animation: pulse 1.5s ease-in-out infinite;
  font-size: 1rem; /* Smaller icon */
}

.banner-content::after {
  content: "🚀";
  margin-left: 5px;
  animation: pulse 1.5s ease-in-out infinite reverse;
  font-size: 1rem; /* Smaller icon */
}

.banner-text {
  color: #ffffff;
  font-size: 0.85rem; /* Smaller font size */
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  line-height: 1.3;
}

.countdown {
  background: rgba(255,255,255,0.2);
  padding: 5px 10px; /* Reduced padding */
  border-radius: 15px; /* Smaller border-radius */
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 0.85rem; /* Smaller font size */
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  min-width: 80px; /* Ensure it doesn't get too small */
  text-align: center;
}

/* Navigation */
.nav {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0; /* Reduced padding */
  position: sticky;
  top: 40px; /* Adjusted to sit below the banner (approx banner height) */
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Adjusted padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  background: linear-gradient(135deg, #667eea, #764ba2, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem; /* Smaller font size */
  font-weight: 900;
  text-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
  margin: 0;
}

.nav-links {
  display: none; /* Hidden by default on mobile */
  flex-direction: column; /* Stack vertically on mobile */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 998;
  align-items: center;
  gap: 15px;
}

.nav-links.active {
  display: flex; /* Show when active */
}

.nav-links a {
  text-decoration: none;
  color: #f7fafc;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 8px 15px;
  width: 100%;
  text-align: center;
}

.nav-links a:hover {
  color: #667eea;
  text-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
  background: rgba(255,255,255,0.05);
}

.login-btn, .signup-btn {
  padding: 10px 20px; /* Adjusted padding */
  border: none;
  border-radius: 20px; /* Adjusted border-radius */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem; /* Adjusted font size */
  width: 80%; /* Make buttons wider in mobile menu */
  max-width: 200px;
}

.login-btn {
  background: transparent;
  color: #f7fafc;
  border: 2px solid #667eea;
}

.login-btn:hover {
  background: #667eea;
  color: white;
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
}

.signup-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.mobile-menu {
  display: flex; /* Always visible on mobile */
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #f7fafc;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0 50px; /* Adjusted padding for mobile */
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  position: relative;
  overflow: hidden;
  text-align: center; /* Center content on mobile */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.25) 0%, transparent 50%);
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Adjusted padding */
  display: flex; /* Changed to flex for stacking */
  flex-direction: column; /* Stack vertically */
  gap: 40px; /* Adjusted gap */
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 10px 20px; /* Adjusted padding */
  border-radius: 25px; /* Adjusted border-radius */
  font-weight: 800;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  font-size: 0.95rem; /* Adjusted font size */
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-size: 2.5rem; /* Adjusted font size for mobile */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description {
  font-size: 1.1rem; /* Adjusted font size */
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center; /* Center stats on mobile */
  gap: 25px; /* Adjusted gap */
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 90px; /* Ensure stats don't collapse too much */
}

.stat-number {
  display: block;
  font-size: 2rem; /* Adjusted font size */
  font-weight: 900;
  color: #667eea;
  text-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

.stat-label {
  font-size: 0.9rem; /* Adjusted font size */
  color: #cbd5e0;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on mobile */
  gap: 15px; /* Adjusted gap */
  margin-bottom: 25px;
  width: 100%;
  max-width: 300px; /* Limit button width */
}

.cta-btn {
  padding: 15px 25px; /* Adjusted padding */
  border: none;
  border-radius: 30px; /* Adjusted border-radius */
  font-weight: 700;
  font-size: 1rem; /* Adjusted font size */
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%; /* Full width on mobile */
}

.cta-btn.primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.cta-btn.secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-btn.secondary:hover {
  background: #667eea;
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-btn.large {
  padding: 18px 30px;
  font-size: 1.1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* Adjusted gap */
  font-size: 0.9rem; /* Adjusted font size */
}

.trust-badges span {
  color: #10b981;
  font-weight: 700;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px; /* Added margin */
  width: 100%;
  max-width: 350px; /* Limit visual width */
}

.money-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-money {
  position: absolute;
  font-size: 2.5rem; /* Adjusted font size */
  animation: float 3s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.floating-money:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
.floating-money:nth-child(2) { top: 15%; right: 5%; animation-delay: 1s; }
.floating-money:nth-child(3) { bottom: 20%; left: 5%; animation-delay: 2s; }
.floating-money:nth-child(4) { bottom: 5%; right: 10%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); } /* Reduced float distance */
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 260px; /* Adjusted width for mobile */
  height: 420px; /* Adjusted height for mobile */
  border-radius: 25px; /* Adjusted border-radius */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  margin: 0 auto;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 15, 0.95);
  padding: 20px; /* Adjusted padding */
  border-radius: 15px; /* Adjusted border-radius */
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  width: 90%;
}

.survey-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem; /* Adjusted font size */
}

.survey-card p {
  color: #10b981;
  font-weight: 800;
  font-size: 1.3rem; /* Adjusted font size */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  width: 70%;
  animation: progressFill 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes progressFill {
  0% { width: 30%; }
  50% { width: 85%; }
  100% { width: 30%; }
}

/* Features Section */
.features {
  padding: 80px 0; /* Adjusted padding */
  background: rgba(10, 10, 15, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 50px; /* Adjusted margin */
}

.section-header h2 {
  font-size: 2.2rem; /* Adjusted font size */
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-header p {
  font-size: 1.1rem; /* Adjusted font size */
  color: #e2e8f0;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 30px; /* Adjusted gap */
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px; /* Adjusted padding */
  border-radius: 20px; /* Adjusted border-radius */
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px); /* Reduced hover effect */
  box-shadow: 0 18px 35px rgba(0,0,0,0.4);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  font-size: 2.8rem; /* Adjusted font size */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
  font-size: 1.2rem; /* Adjusted font size */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card p {
  color: #cbd5e0;
  line-height: 1.6;
  font-size: 0.95rem; /* Adjusted font size */
}

/* How It Works */
.how-it-works {
  padding: 80px 0; /* Adjusted padding */
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
}

.steps {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 40px; /* Adjusted gap */
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* Adjusted gap */
}

.step-number {
  width: 55px; /* Adjusted size */
  height: 55px; /* Adjusted size */
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; /* Adjusted font size */
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
  font-size: 1.2rem; /* Adjusted font size */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-content p {
  color: #e2e8f0;
  line-height: 1.6;
  font-size: 0.95rem; /* Adjusted font size */
}

/* Testimonials */
.testimonials {
  padding: 80px 0; /* Adjusted padding */
  background: rgba(10, 10, 15, 0.9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 30px; /* Adjusted gap */
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px; /* Adjusted padding */
  border-radius: 20px; /* Adjusted border-radius */
  border-left: 4px solid #667eea; /* Adjusted border size */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.stars {
  font-size: 1.1rem; /* Adjusted font size */
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem; /* Adjusted font size */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px; /* Adjusted gap */
}

.testimonial-author img {
  width: 45px; /* Adjusted size */
  height: 45px; /* Adjusted size */
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  font-size: 1rem; /* Adjusted font size */
}

.testimonial-author span {
  color: #cbd5e0;
  font-size: 0.85rem; /* Adjusted font size */
}

/* CTA Section */
.cta-section {
  padding: 80px 0; /* Adjusted padding */
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem; /* Adjusted font size */
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem; /* Adjusted font size */
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-timer {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  align-items: center;
  justify-content: center;
  gap: 15px; /* Adjusted gap */
  margin-bottom: 35px;
  font-size: 1rem; /* Adjusted font size */
  font-weight: 600;
}

.inline-countdown {
  background: rgba(255,255,255,0.25);
  padding: 10px 20px; /* Adjusted padding */
  border-radius: 25px; /* Adjusted border-radius */
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1em;
}

.cta-note {
  margin-top: 20px;
  opacity: 0.9;
  font-size: 0.9rem; /* Adjusted font size */
}

/* Footer */
.footer {
  background: #050508;
  color: white;
  padding: 60px 0 20px; /* Adjusted padding */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 40px; /* Adjusted gap */
  margin-bottom: 40px;
  text-align: center; /* Center footer content */
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 20px;
  color: #667eea;
  font-weight: 800;
  font-size: 1.3rem; /* Adjusted font size */
}

.footer-section a {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem; /* Adjusted font size */
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #cbd5e0;
  line-height: 1.6;
  font-size: 0.95rem; /* Adjusted font size */
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #cbd5e0;
  font-size: 0.9rem; /* Adjusted font size */
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  overflow-y: auto; /* Allow scrolling within modal */
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(15, 15, 35, 0.95));
  margin: 5% auto;
  padding: 0;
  width: 95%; /* Wider on mobile */
  max-width: 450px; /* Adjusted max-width */
  border-radius: 20px; /* Adjusted border-radius */
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: modalSlideIn 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-40px); } /* Reduced animation distance */
  to { opacity: 1; transform: translateY(0); }
}

.close {
  position: absolute;
  right: 15px; /* Adjusted position */
  top: 10px; /* Adjusted position */
  color: #cbd5e0;
  font-size: 28px; /* Adjusted font size */
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ffffff;
}

.form-container {
  padding: 30px; /* Adjusted padding */
  text-align: center;
}

.form-container h2 {
  font-size: 1.8rem; /* Adjusted font size */
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.form-container p {
  color: #e2e8f0;
  margin-bottom: 25px;
  font-size: 1rem; /* Adjusted font size */
}

.form-container input {
  width: 100%;
  padding: 15px; /* Adjusted padding */
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; /* Adjusted border-radius */
  font-size: 1rem; /* Adjusted font size */
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  backdrop-filter: blur(5px);
}

.form-container input::placeholder {
  color: #cbd5e0;
}

.form-container input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 15px; /* Adjusted padding */
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px; /* Adjusted border-radius */
  font-size: 1rem; /* Adjusted font size */
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-footer {
  margin-top: 20px;
  color: #e2e8f0;
  font-size: 0.9rem; /* Adjusted font size */
}

.form-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive Design - General adjustments for smaller screens */
@media (min-width: 769px) {
  .nav-links {
    display: flex; /* Show nav links on larger screens */
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    gap: 35px;
  }

  .nav-links a {
    width: auto;
    padding: 0;
    text-align: left;
  }

  .login-btn, .signup-btn {
    width: auto;
    max-width: none;
  }

  .mobile-menu {
    display: none; /* Hide hamburger menu on larger screens */
  }

  .hero-container {
    flex-direction: row; /* Revert to row layout for hero on larger screens */
    grid-template-columns: 1fr 1fr; /* Original grid layout */
    gap: 70px;
    text-align: left; /* Revert text alignment */
  }

  .hero-actions {
    flex-direction: row; /* Revert buttons to row layout */
    width: auto;
    max-width: none;
  }

  .hero-title {
    font-size: 3.8rem;
    text-align: left;
  }

  .hero-description {
    font-size: 1.3rem;
    text-align: left;
  }

  .hero-stats {
    justify-content: flex-start;
    gap: 45px;
  }

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

  .stat-label {
    font-size: 1rem;
  }

  .features-grid, .steps, .testimonials-grid, .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Revert to multi-column */
    text-align: left;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 45px;
  }

  .steps {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 45px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
  }

  .cta-timer {
    flex-direction: row;
    gap: 20px;
  }

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

  .section-header p {
    font-size: 1.3rem;
  }

  .cta-content h2 {
    font-size: 3.2rem;
  }

  .cta-content p {
    font-size: 1.4rem;
  }

  .footer-section h3, .footer-section h4 {
    font-size: 1.5rem;
  }
}

/* Specific adjustments for very small screens */
@media (max-width: 480px) {
  .banner-text {
    font-size: 0.8rem;
  }
  .countdown {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  .nav {
    top: 36px; /* Adjust nav sticky position if banner height changes */
  }
  .logo h2 {
    font-size: 1.4rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .cta-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .cta-btn.large {
    font-size: 1rem;
    padding: 15px 25px;
  }
  .phone-mockup {
    width: 220px;
    height: 360px;
  }
  .survey-card h3 {
    font-size: 0.9rem;
  }
  .survey-card p {
    font-size: 1.1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .feature-card h3 {
    font-size: 1.1rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .step-content h3 {
    font-size: 1.1rem;
  }
  .step-content p {
    font-size: 0.9rem;
  }
  .testimonial-content p {
    font-size: 0.9rem;
  }
  .testimonial-author h4 {
    font-size: 0.95rem;
  }
  .testimonial-author span {
    font-size: 0.8rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
  .inline-countdown {
    font-size: 0.9em;
  }
  .form-container h2 {
    font-size: 1.6rem;
  }
  .form-container p {
    font-size: 0.9rem;
  }
  .form-container input {
    padding: 12px;
    font-size: 0.9rem;
  }
  .submit-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}