/* ═══════════════════════════════════════════════════
   LAKEAI COMING SOON PAGE - COMPLETE STYLES
   ═══════════════════════════════════════════════════ */

/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:       #1e293b;
  --navy-deep:  #0f172a;
  --navy-hero:  #1a2536;
  --red:        #b91c1c;
  --red-hover:  #991b1b;
  --red-soft:   rgba(185, 28, 28, 0.15);
  --green:      #22c55e;
  --green-bg:   rgba(34, 197, 94, 0.12);
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-50:    #f1f5f9;
  --gray-100:   #e2e8f0;
  --gray-200:   #cbd5e1;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --border-dark: rgba(255,255,255,0.08);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { 
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%; /* Ensure container respects viewport */
}

/* ─────────────── NAVBAR ─────────────── */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.05);
  transform: scale(1.1);
}

.lang-btn.active {
  background: rgba(185, 28, 28, 0.15);
  border-color: rgba(185, 28, 28, 0.3);
}

/* ─────────────── HERO ─────────────── */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a2536 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  width: 100%; /* Prevent overflow */
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,28,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%; /* Ensure container stays within viewport */
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-right {
  flex: 1;
  min-width: 0;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.launch-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--red);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Hero Form - Show it */
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-bottom: 14px;
}

.hero-form .waitlist-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.hero-form .waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form .waitlist-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.15);
  background: rgba(255,255,255,0.1);
}

.hero-form .btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.hero-form .btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.hero .form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.hero .form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  max-width: 460px;
}

.hero .form-success.show {
  display: block;
}

/* Hero Card - Show it */
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon img {
  height: 44px;
  width: auto;
}

.hero-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.hero-card-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
}

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

.hero-stat-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy-deep);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero-stat-value.red {
  color: var(--red);
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Remove any conflicting display:none */
.hero-actions,
.btn-primary,
.btn-secondary,
.trust-badge,
.hero-visual,
.dashboard-preview {
  display: none !important;
}

/* ─────────────── WAVE DIVIDER ─────────────── */
.wave-divider {
  margin-top: -1px;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ─────────────── WAITLIST SECTION ─────────────── */
.waitlist-section {
  background: var(--white);
  padding: 80px 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.waitlist-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px; /* Add padding for mobile */
}

.waitlist-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.waitlist-content > p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 16px;
  width: 100%; /* Ensure form respects container */
}

.waitlist-input {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--navy);
  outline: none;
  transition: all 0.3s ease;
  min-width: 0; /* Allow input to shrink below natural size */
}

.waitlist-input::placeholder {
  color: var(--gray-400);
}

.waitlist-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0; /* Prevent button from shrinking */
}

.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.form-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

.form-success {
  display: none;
  background: var(--green-bg);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.form-success.show {
  display: block;
  animation: slideUp 0.5s ease;
}

.form-success h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray-600);
}

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

/* ─────────────── COUNTDOWN ─────────────── */
.countdown-section {
  background: var(--gray-50);
  padding: 60px 0;
  text-align: center;
}

.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.countdown-box:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.12);
}

.countdown-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy-deep);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font);
}

.countdown-unit {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-family: var(--font);
}

/* ─────────────── PRODUCTS ─────────────── */
.products-section {
  background: #1a2332;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 12px;
}

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

.section-title.dark { 
  color: var(--navy-deep); 
}

.section-desc {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc.light { 
  color: rgba(255, 255, 255, 0.7); 
}

.section-desc.dark { 
  color: var(--gray-500); 
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(185,28,28,0.4);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-icon.red-bg { 
  background: rgba(185, 28, 28, 0.15); 
}

.product-icon.blue-bg { 
  background: rgba(59,130,246,0.15); 
}

.product-card-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.product-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.check-circle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.product-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

/* ─────────────── WHY SECTION ─────────────── */
.why-section {
  background: var(--white);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: var(--red-soft);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(185,28,28,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─────────────── LOCATIONS ─────────────── */
.locations-section {
  background: var(--off-white);
  padding: 80px 0 100px;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.loc-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: rgba(185,28,28,0.3);
  transform: translateY(-2px);
}

.loc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(185,28,28,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.loc-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.loc-card p {
  font-size: 12px;
  color: var(--gray-500);
}

/* ─────────────── CTA SECTION ─────────────── */
.cta-section {
  background: #1f2937;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-section > .container > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .waitlist-form {
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-section .waitlist-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.cta-section .waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-section .waitlist-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
}

.cta-section .form-note {
  color: rgba(255, 255, 255, 0.6);
}

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--navy-deep);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

footer p {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
}

footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ─────────────── REVEAL ANIMATION ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px; /* Reduce padding on mobile */
  }
  
  .hero-right {
    max-width: 400px;
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .loc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px; /* Further reduce padding on small screens */
  }

  .navbar .container {
    padding: 0 16px;
  }

  .hero {
    padding: 50px 0 70px;
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }

  .hero .container {
    padding: 0 16px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-form {
    flex-direction: column;
    width: 100%;
  }

  .hero-form .waitlist-input {
    width: 100%;
  }

  .hero-form .btn-red {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  .hero-card {
    max-width: 100%;
    margin: 0;
  }

  .hero-card-stats {
    gap: 20px;
  }

  .hero-stat-value {
    font-size: 20px;
  }
  
  .countdown-grid {
    gap: 12px;
  }
  
  .countdown-box {
    padding: 20px 16px; /* Reduce padding */
    min-width: 70px; /* Reduce min-width */
    flex: 1; /* Let boxes share space equally */
  }
  
  .countdown-value {
    font-size: 32px; /* Smaller on mobile */
  }
  
  .countdown-unit {
    font-size: 9px;
  }

  /* Products section */
  .products-section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  .products-section .container {
    padding: 0 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    padding: 28px 20px;
  }

  /* Why section */
  .why-section {
    overflow-x: hidden;
  }

  .why-section .container {
    padding: 0 16px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Locations section */
  .locations-section {
    overflow-x: hidden;
  }

  .locations-section .container {
    padding: 0 16px;
  }
  
  .loc-grid {
    grid-template-columns: 1fr;
  }

  /* CTA section */
  .cta-section {
    padding: 60px 0;
    overflow-x: hidden;
  }

  .cta-section .container {
    padding: 0 16px;
  }

  .cta-section .waitlist-form {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .cta-section .waitlist-input {
    width: 100%;
  }

  .cta-section .btn-red {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Footer */
  footer {
    overflow-x: hidden;
    padding: 30px 0;
  }

  footer .container {
    padding: 0 16px;
  }

  .footer-logo img {
    max-width: 160px;
  }
  
  .lang-switcher {
    gap: 4px;
  }

  .lang-btn {
    font-size: 18px;
    padding: 4px 6px;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .countdown-box {
    padding: 16px 12px;
    min-width: 60px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .countdown-unit {
    font-size: 8px;
  }
}
