/* ==========================================================================
   iPioneer Landing Page - Mobile-First & Responsive Light Theme
   ========================================================================== */

:root {
  --bg-light: #F8FAFC;
  --bg-section: #EEF2FF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  
  --border-color: rgba(99, 102, 241, 0.15);
  --border-glow: rgba(99, 102, 241, 0.4);
  
  --primary: #4F46E5;
  --primary-light: #6366F1;
  --primary-hover: #4338CA;
  --accent: #7C3AED;
  --cyan: #0284C7;
  --emerald: #10B981;
  --amber: #F59E0B;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(79, 70, 229, 0.05);
  --shadow-card: 0 12px 32px -8px rgba(79, 70, 229, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 40px -10px rgba(79, 70, 229, 0.18), 0 8px 20px rgba(15, 23, 42, 0.06);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
}

/* Bright Animated Radial Glow Backgrounds */
.bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 650px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(124, 58, 237, 0.08) 40%, rgba(248, 250, 252, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-bottom {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 100%;
  max-width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  z-index: 102;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.25));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: #EEF2FF;
  border: 1px solid var(--border-color);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 102;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: #E0E7FF;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher Dropdown */
.lang-switcher-wrap {
  position: relative;
}

.lang-switcher-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.lang-switcher-btn:hover {
  border-color: var(--primary);
  background: #F4F3FF;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 120%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 120;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.lang-option:hover {
  background: #EEF2FF;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 48px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, var(--primary-hover), #6D28D9);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--primary);
  border: 2px solid rgba(79, 70, 229, 0.2);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: #F4F3FF;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Badge "Em Breve" */
.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: #EEF2FF;
  border: 1px solid rgba(79, 70, 229, 0.25);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
}

.hero-logo-center {
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.25);
  animation: float 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 450;
  line-height: 1.7;
}

/* Waitlist Card Target Container */
.waitlist-card-wrapper {
  scroll-margin-top: 110px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Waitlist Form Card */
.waitlist-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.waitlist-card.highlight-pulse {
  animation: glowPulse 1.2s ease-in-out 2;
  border-color: var(--primary);
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
  50% { box-shadow: 0 0 35px 8px rgba(79, 70, 229, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.waitlist-card:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 35px rgba(79, 70, 229, 0.25);
}

.waitlist-form {
  display: flex;
  gap: 10px;
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--text-main);
  font-size: 1.05rem;
  font-family: var(--font-body);
  min-height: 48px;
}

.waitlist-input::placeholder {
  color: var(--text-dim);
}

.waitlist-feedback {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  padding: 8px 12px;
  border-radius: 8px;
}

.waitlist-feedback.success {
  display: block;
  color: #15803D;
  background: #DCFCE7;
}

.waitlist-feedback.error {
  display: block;
  color: #B91C1C;
  background: #FEE2E2;
}

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.hero-highlight-item i {
  color: var(--primary);
}

/* Section Common */
.section {
  padding: 90px 0;
  scroll-margin-top: 80px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--primary);
  background: #EEF2FF;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.12rem;
}

/* Interactive App Showcase */
.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase-tab {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #F8FAFC;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.showcase-tab:hover {
  background: #EEF2FF;
  transform: translateX(4px);
}

.showcase-tab.active {
  background: #EEF2FF;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.showcase-tab h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-tab p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Phone Frame Mockup */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.phone-mockup {
  width: 310px;
  height: 620px;
  background: #0F172A;
  border-radius: 44px;
  border: 12px solid #1E293B;
  box-shadow: 0 25px 60px rgba(79, 70, 229, 0.25), 0 10px 25px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.phone-notch {
  width: 110px;
  height: 24px;
  background: #1E293B;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: #F8FAFC;
  padding: 42px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-main);
}

/* Mockup Screens */
.mock-screen {
  display: none;
  animation: fadeIn 0.4s ease;
}

.mock-screen.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.mock-logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.mock-user-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.mock-card {
  background: #FFFFFF;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.06);
}

.mock-timer-display {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0;
}

.mock-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.mock-progress-bar {
  height: 10px;
  background: #EEF2FF;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}

.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  width: 76%;
  border-radius: 5px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feature-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Status / Timeline Section */
.status-section {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-card);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.timeline-step {
  background: #F8FAFC;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.timeline-step.completed {
  border-color: var(--emerald);
  background: #F0FDF4;
}

.timeline-step.in-progress {
  border-color: var(--primary);
  background: #EEF2FF;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.timeline-badge.green { background: #DCFCE7; color: #15803D; }
.timeline-badge.purple { background: #E0E7FF; color: var(--primary); }
.timeline-badge.gray { background: #E2E8F0; color: var(--text-dim); }

.timeline-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  user-select: none;
  min-height: 60px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  color: white;
  margin-bottom: 80px;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner-logo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.12rem;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  background: #F4F3FF;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 35px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.footer-domain {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  background: #EEF2FF;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #E2E8F0;
  padding-top: 24px;
  color: var(--text-dim);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE RULES (< 992px & < 768px)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .showcase-container { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .status-section { padding: 36px 24px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  
  /* Mobile Header Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 90px 24px 30px;
    gap: 28px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 101;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .lang-switcher-wrap {
    width: 100%;
  }

  .lang-switcher-btn {
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown {
    width: 100%;
    right: 0;
    left: 0;
  }

  .nav-vip-btn {
    width: 100%;
  }

  /* Hero Section Mobile */
  .hero { padding: 40px 0 60px; }
  .hero-logo-img { width: 75px; height: 75px; border-radius: 18px; }
  .badge-coming-soon { font-size: 0.8rem; padding: 6px 16px; margin-bottom: 20px; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; margin-bottom: 18px; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 30px; }
  
  /* Form Mobile */
  .waitlist-card { padding: 12px; border-radius: 20px; }
  .waitlist-form { flex-direction: column; gap: 12px; }
  .waitlist-input { width: 100%; font-size: 1rem; padding: 12px 16px; }
  .waitlist-form .btn-primary { width: 100%; }

  .hero-highlights { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 32px; }
  .hero-highlight-item { justify-content: center; font-size: 0.9rem; }

  /* Showcase Section Mobile */
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .section-desc { font-size: 1rem; }
  .showcase-container { padding: 24px 16px; border-radius: 20px; }
  .showcase-tab { padding: 16px; }
  .showcase-tab h3 { font-size: 1.1rem; }
  .showcase-tab p { font-size: 0.9rem; }

  /* Scale phone mockup down nicely on mobile */
  .phone-mockup {
    transform: scale(0.92);
    transform-origin: center top;
    margin-bottom: -40px;
  }

  /* Features Grid Mobile */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; border-radius: 16px; }
  .feature-card h3 { font-size: 1.15rem; }

  /* Timeline Mobile */
  .status-section { padding: 28px 18px; border-radius: 20px; }
  .timeline-step { padding: 20px; }

  /* FAQ Mobile */
  .faq-question { padding: 18px 20px; font-size: 1rem; }
  .faq-answer { padding: 0 20px; font-size: 0.92rem; }
  .faq-item.active .faq-answer { padding: 0 20px 18px; }

  /* CTA Banner Mobile */
  .cta-banner { padding: 40px 20px; border-radius: 20px; margin-bottom: 50px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner p { font-size: 1rem; }
  .cta-banner .btn-primary { width: 100%; }

  /* Footer Mobile */
  .footer { padding: 40px 0 25px; }
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
