:root {
  --primary: #F97316;
  --primary-light: #FB923C;
  --primary-dark: #EA580C;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --background: #FFFBF5;
  --accent: #FED7AA;
  --dark-bg: #1a1a1a;
  --card-bg: #ffffff;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure all interactive elements are touch-friendly */
a,
button {
  -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
  touch-action: manipulation;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.nav-cta {
  background-color: var(--primary-dark);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
  background-color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 60px 5% 100px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

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

.hero-text-section {
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background-color: #FFF7ED;
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 540px;
}

.privacy-highlight {
  color: var(--primary-dark);
  font-weight: 600;
}

.trial-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #FFF7ED;
  padding: 20px 25px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 2px solid var(--accent);
}

.trial-icon {
  font-size: 2rem;
}

.trial-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

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

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.store-badge {
  height: 52px;
  transition: transform 0.2s;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
}

.float-card {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  z-index: 1;
  overflow: hidden;
}

.float-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.float-icon {
  font-size: 2.5rem;
}

.card-1 {
  top: 10%;
  left: 5%;
  width: 140px;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 10%;
  width: 120px;
  animation-delay: 0.5s;
}

.card-3 {
  bottom: 20%;
  left: 0%;
  width: 160px;
  animation-delay: 1s;
}

.card-4 {
  bottom: 15%;
  right: 5%;
  width: 140px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-phone {
  position: relative;
  z-index: 2;
  max-width: 320px;
  margin: 0 auto;
}

.hero-phone img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Feature Section */
.feature-section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

/* Desktop: Use direction for visual ordering */
.feature-content.reverse {
  direction: rtl;
}

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

.feature-text {
  max-width: 550px;
}

.feature-mascot {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.section-mascot {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  display: block;
}

.section-mascot.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-text h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.feature-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.light {
  font-weight: 300;
  color: var(--text-secondary);
}

.feature-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
  background-color: var(--primary-dark);
}

.feature-phone {
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.feature-phone img {
  max-width: 60%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s;
}

.feature-phone img:hover {
  transform: scale(1.02);
}

/* Dark Section */
.dark-section {
  background-color: var(--dark-bg);
  padding: 100px 5%;
  color: white;
  border-radius: 0;
  margin: 0;
}

.dark-section-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.dark-section h3 {
  color: var(--primary-light);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.dark-section h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3;
}

/* Grid Layouts */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.col-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.col-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.col-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  cursor: pointer;
}

.col-card h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.col-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.use-case-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s, background-color 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.use-case-card h4 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.use-case-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

/* Three Column Section */
.three-col-section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.three-col-section h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.three-col-section h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 5%;
  text-align: center;
}

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

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 40px;
}

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

.cta-buttons img {
  height: 52px;
  transition: transform 0.2s;
}

.cta-buttons a:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 5% 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 42px;
  transition: transform 0.2s;
}

.store-buttons a:hover img {
  transform: scale(1.05);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* Responsive Design */

/* Medium screens (tablets) - Better spacing for floating cards */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: 2;
    height: 500px;
    padding: 0 80px;
  }

  .hero-text-section {
    order: 1;
    text-align: center;
  }

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

  .card-1 {
    right: -10%;
    left: auto;
  }

  .card-3 {
    right: -8%;
    left: auto;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Tablet: Always show image first, text second */
  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text {
    order: 2;
  }

  .feature-phone {
    order: 1;
  }

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

  /* Improve footer readability on tablets - 2 columns instead of 4 */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile screens - Cards overlay on phone */
@media (max-width: 768px) {
  nav {
    padding: 16px 5%;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 5% 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text-section {
    text-align: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    height: 500px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .trial-badge {
    padding: 14px 20px;
    gap: 10px;
  }

  .trial-icon {
    font-size: 24px;
  }

  .trial-text strong {
    font-size: 1rem;
  }

  .trial-text span {
    font-size: 0.8rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 14px;
  }

  .store-badge {
    height: 50px;
    width: auto;
  }

  .hero-phone {
    width: 220px;
    margin: 0 auto;
  }

  .hero-blob {
    width: 400px;
    height: 400px;
  }

  /* Floating cards - specific positioning and sizing for mobile */
  .float-card {
    padding: 6px;
  }

  .card-1 {
    width: 100px;
    right: 5%;
    left: auto;
    top: 10%;
    z-index: 10;
  }

  .card-2 {
    width: 85px;
    left: 5%;
    right: auto;
    top: 5%;
    z-index: 10;
  }

  .card-3 {
    width: 120px;
    right: 8%;
    left: auto;
    bottom: 15%;
    z-index: 10;
  }

  .card-4 {
    width: 100px;
    left: 8%;
    right: auto;
    bottom: 10%;
    z-index: 10;
  }

  .feature-section {
    padding: 60px 5%;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Mobile: Always show image first, text second */
  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }

  .feature-mascot {
    display: block;
    text-align: center;
  }

  .feature-phone {
    order: 1;
  }

  .feature-phone img {
    max-width: 70%;
  }

  .cta-button {
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .dark-section {
    padding: 60px 5%;
    margin: 0 10px;
    border-radius: 24px;
  }

  .section-mascot {
    width: 60px;
    height: 60px;
  }

  .three-col-grid {
    grid-template-columns: 1fr;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .three-col-section {
    padding: 60px 5%;
  }

  .col-card {
    padding: 30px;
  }

  .col-card img {
    max-width: 60%;
    width: auto;
    margin: 0 auto;
  }

  .cta-section {
    padding: 60px 5%;
  }

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

  .cta-buttons img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }

  .store-badge {
    height: 48px;
  }

  .store-buttons img {
    height: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero-visual {
    height: 380px;
  }

  .hero-phone {
    width: 200px;
  }

  .hero-blob {
    width: 350px;
    height: 350px;
  }

  /* Adjust floating cards for very small screens */
  .card-1 {
    width: 85px;
    top: 5%;
  }

  .card-2 {
    width: 75px;
    top: 5%;
  }

  .card-3 {
    width: 100px;
    bottom: 8%;
  }

  .card-4 {
    width: 85px;
    bottom: 8%;
  }

  .col-card {
    padding: 20px;
  }

  .col-card img {
    max-width: 70%;
  }

  .use-case-card {
    padding: 25px;
  }

  .section-mascot {
    width: 50px;
    height: 50px;
  }

  .feature-phone img {
    max-width: 80%;
  }
}

/* Large screens and ultra-wide monitors (min-width: 2560px) */
@media (min-width: 2560px) {
  nav,
  .hero,
  .feature-section,
  .dark-section-content,
  .three-col-section,
  .footer-content {
    max-width: 2000px;
  }

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

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .feature-text h2 {
    font-size: 3.2rem;
  }

  .dark-section h2,
  .three-col-section h2 {
    font-size: 3.5rem;
  }
}

/* Reduce motion for users with vestibular disorders */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===================================
   Waitlist Styles
   =================================== */

.waitlist-container {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.waitlist-header h3 {
  color: white;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  margin: 0 0 12px 0;
  text-align: center;
  line-height: 1.3;
}

.waitlist-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 3vw, 16px);
  margin: 0 0 28px 0;
  text-align: center;
  line-height: 1.7;
}

.waitlist-header p strong {
  color: white;
  font-weight: 700;
}

.waitlist-form .form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.waitlist-input {
  flex: 1;
  padding: 15px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  min-height: 52px;
  transition: all 0.2s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.waitlist-input:focus {
  outline: none;
  border-color: white;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.waitlist-input::placeholder {
  color: #94a3b8;
}

.waitlist-button {
  padding: 15px 32px;
  background: white;
  color: #F97316;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  min-height: 52px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.waitlist-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.waitlist-button:active:not(:disabled) {
  transform: translateY(0);
}

.waitlist-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-loader {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.waitlist-privacy {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.waitlist-privacy a {
  color: white;
  text-decoration: underline;
}

.waitlist-privacy a:hover {
  text-decoration: none;
}

.waitlist-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin: 0 auto 20px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.waitlist-success h4 {
  color: white;
  font-size: 24px;
  margin: 0 0 12px 0;
}

.waitlist-success p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.waitlist-error {
  background: rgba(220, 38, 38, 0.2);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

.waitlist-error p {
  color: white;
  margin: 0;
  font-size: 14px;
}

.waitlist-error a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================
   Coming Soon Badge Styles
   =================================== */

.coming-soon-badge {
  position: relative;
  display: inline-block;
  cursor: not-allowed;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.coming-soon-badge:hover {
  opacity: 0.9;
}

.coming-soon-badge .store-badge {
  filter: grayscale(70%) brightness(1.1);
  pointer-events: none;
}

.badge-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #F97316;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  white-space: nowrap;
  pointer-events: none;
}

/* ===================================
   Waitlist Mobile Responsive
   =================================== */

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .waitlist-container {
    max-width: 550px;
    padding: 36px 28px;
  }

  .waitlist-form .form-group {
    gap: 14px;
  }
}

/* Mobile/Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .waitlist-container {
    padding: 32px 24px;
    border-radius: 20px;
    max-width: 100%;
    margin: 0 10px;
  }

  .waitlist-header h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .waitlist-header p {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .waitlist-form .form-group {
    flex-direction: column;
    gap: 16px;
  }

  .waitlist-input,
  .waitlist-button {
    width: 100%;
  }

  .waitlist-input {
    min-height: 50px;
    padding: 14px 16px;
  }

  .waitlist-button {
    min-height: 50px;
    padding: 14px 24px;
  }

  .waitlist-privacy {
    font-size: 12px;
  }

  .success-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .waitlist-success {
    padding: 32px 16px;
  }

  .waitlist-success h4 {
    font-size: 20px;
  }

  .waitlist-success p {
    font-size: 14px;
  }

  .waitlist-error {
    padding: 16px;
    font-size: 13px;
  }

  .badge-overlay {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .waitlist-container {
    padding: 28px 20px;
    border-radius: 18px;
    margin: 0 5px;
  }

  .waitlist-header h3 {
    font-size: 18px;
  }

  .waitlist-header p {
    font-size: 14px;
    line-height: 1.5;
  }

  .waitlist-form .form-group {
    gap: 14px;
  }

  .waitlist-input {
    min-height: 48px;
    padding: 13px 15px;
    font-size: 16px;
  }

  .waitlist-button {
    min-height: 48px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .waitlist-privacy {
    font-size: 11px;
    line-height: 1.5;
  }

  .success-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .waitlist-success {
    padding: 28px 12px;
  }

  .waitlist-success h4 {
    font-size: 18px;
  }

  .waitlist-success p {
    font-size: 13px;
  }

  .waitlist-error {
    padding: 14px;
    font-size: 12px;
  }

  .waitlist-error p {
    font-size: 12px;
  }

  .badge-overlay {
    font-size: 10px;
    padding: 3px 8px;
  }
}
