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

:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --secondary: #06b6d4;
  --dark: #18181b;
  --darker: #09090b;
  --light: #fafafa;
  --gray: #a1a1aa;
  --success: #22c55e;
  --warning: #f59e0b;
  --glass: rgba(24, 24, 27, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.25);
}

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

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

/* ===================== */
/* HERO — Centered       */
/* ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.08;
  top: -300px;
  right: -200px;
  animation: pulse 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.06;
  bottom: -150px;
  left: -150px;
  animation: pulse 6s ease-in-out infinite 3s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.12;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: center;
  max-width: 720px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Floating stat pills */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 40px 0;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light);
  backdrop-filter: blur(8px);
  animation: floatPill 4s ease-in-out infinite;
}

.stat-pill:nth-child(2) { animation-delay: 0.5s; }
.stat-pill:nth-child(3) { animation-delay: 1s; }
.stat-pill:nth-child(4) { animation-delay: 1.5s; }

.stat-pill svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

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

/* Chat window — centered below hero */
.hero-visual {
  width: 100%;
  max-width: 600px;
}

/* Main Chat Window on Hero */
.main-chat-window {
  background: var(--glass);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 500px;
  overflow: hidden;
}

.main-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-bottom: 1px solid var(--glass-border);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-main {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar-main svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.chat-header-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.chat-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.main-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.main-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.main-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* Welcome Screen */
.chat-welcome {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.welcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 18px;
  margin-bottom: 20px;
}

.welcome-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.chat-welcome h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.chat-welcome p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.6;
}

.welcome-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  justify-content: center;
}

.suggestion-btn {
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 24px;
  color: var(--light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.suggestion-btn:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Chat Messages */
.main-chat-message {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: messageSlide 0.3s ease;
}

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

.main-chat-message.user {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

.main-chat-message.bot {
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  border: 1px solid var(--glass-border);
}

.main-chat-message .msg-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 8px;
  display: block;
}

.main-chat-message.bot.typing-indicator {
  display: flex;
  gap: 6px;
  padding: 18px 22px;
}

.main-chat-message.bot.typing-indicator span {
  width: 10px;
  height: 10px;
  background: var(--gray);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.main-chat-message.bot.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.main-chat-message.bot.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Chat Input */
.main-chat-input {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--glass-border);
}

.main-chat-input input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: var(--darker);
  color: var(--light);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.main-chat-input input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.main-chat-input input::placeholder {
  color: var(--gray);
}

.main-chat-send {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}

.main-chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.main-chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.main-chat-send svg {
  width: 22px;
  height: 22px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===================== */
/* FEATURES — Bento Grid */
/* ===================== */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
}

.features-grid.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.feature-card.bento-wide {
  grid-column: span 2;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
}

/* ========================= */
/* HOW IT WORKS — Timeline   */
/* ========================= */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
}

.steps-timeline {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0.4;
  z-index: 1;
}

.step:last-child .step-connector {
  display: none;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 220px;
  margin: 0 auto;
}

/* ========================= */
/* PRICING CARDS (shared)    */
/* ========================= */
.pricing {
  padding: 100px 0;
  background: var(--dark);
}

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

.pricing-card {
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.9), rgba(9, 9, 11, 0.95));
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Gradient accent line at top */
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0.4;
  transition: opacity 0.4s;
}

/* Subtle glow on hover */
.pricing-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(34, 197, 94, 0.06);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover::after {
  opacity: 1;
}

/* Popular card — glow border */
.pricing-card.popular {
  border-color: rgba(34, 197, 94, 0.4);
  transform: scale(1.04);
  background: linear-gradient(165deg, rgba(34, 197, 94, 0.08), rgba(9, 9, 11, 0.95));
  box-shadow:
    0 0 50px rgba(34, 197, 94, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular::before {
  opacity: 1;
  height: 4px;
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow:
    0 0 60px rgba(34, 197, 94, 0.15),
    0 30px 70px rgba(0, 0, 0, 0.35);
}

/* "Best Value" badge */
.pricing-card.popular .pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.pricing-badge {
  display: none;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.pricing-card > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 24px 0;
  background: linear-gradient(to right, var(--light), rgba(250, 250, 250, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.popular .price {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--gray);
}

/* Divider line */
.pricing-features {
  list-style: none;
  margin: 0 0 30px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.pricing-card:hover .pricing-features li {
  color: rgba(250, 250, 250, 0.7);
}

.pricing-features li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.pricing-card.popular .btn {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

/* ========================= */
/* PRICING CTA               */
/* ========================= */
.pricing-cta {
  padding: 80px 0;
}

.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px 60px;
  backdrop-filter: blur(8px);
}

.pricing-cta-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-cta-text h2 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-cta-text p {
  color: var(--gray);
  font-size: 1.1rem;
}

.pricing-cta .btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================ */
/* COMING SOON — Split Layout   */
/* ============================ */
.coming-soon {
  padding: 100px 0;
  background: linear-gradient(
    to right,
    rgba(34, 197, 94, 0.06),
    rgba(6, 182, 212, 0.06)
  );
}

.coming-soon-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coming-soon-left {
  text-align: left;
}

.notify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 22px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.notify-icon svg {
  stroke: white;
}

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

.coming-soon-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coming-soon-left p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 440px;
}

.coming-soon-left .btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Countdown visual */
.countdown-visual {
  text-align: center;
  position: relative;
  padding: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.countdown-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.ring-1 {
  width: 160px;
  height: 160px;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 240px;
  height: 240px;
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 320px;
  height: 320px;
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.countdown-date {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.countdown-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light);
}

.countdown-unit {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ========= */
/* Footer    */
/* ========= */
footer {
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
}

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

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light);
}

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

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

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--gray);
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Menu Overlay for mobile */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  display: block;
  animation: fadeInOverlay 0.2s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ======================== */
/* Responsive — Tablets     */
/* ======================== */
@media (max-width: 968px) {
  .container {
    padding: 0 30px;
  }

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

  .hero-buttons {
    flex-wrap: wrap;
  }

  .main-chat-window {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Pricing grid */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  /* Bento: 2 columns on tablet */
  .features-grid.bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card.bento-wide {
    grid-column: span 2;
  }

  /* Timeline: stays horizontal but tighter */
  .steps-timeline {
    gap: 0;
  }

  .step {
    padding: 0 16px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .step-connector {
    top: 26px;
    left: calc(50% + 26px);
    width: calc(100% - 52px);
  }

  /* Pricing CTA */
  .pricing-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  /* Coming Soon: stack */
  .coming-soon-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .coming-soon-left {
    text-align: center;
  }

  .coming-soon-left p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  nav > .btn {
    display: none;
  }
}

/* ======================== */
/* Responsive — Mobile      */
/* ======================== */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

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

  .hero-text p {
    font-size: 1rem;
  }

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

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  /* Stat pills: 2 per row */
  .hero-stats {
    gap: 10px;
    margin: 30px 0;
  }

  .stat-pill {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .main-chat-window {
    height: 400px;
    border-radius: 18px;
  }

  .main-chat-header {
    padding: 14px 16px;
  }

  .chat-avatar-main {
    width: 38px;
    height: 38px;
  }

  .main-chat-messages {
    padding: 15px;
    gap: 12px;
  }

  .main-chat-input {
    padding: 12px 15px;
    gap: 10px;
  }

  .main-chat-input input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .main-chat-send {
    width: 44px;
    height: 44px;
  }

  .main-chat-message {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .features {
    padding: 60px 0;
  }

  /* Bento: single column on mobile */
  .features-grid.bento {
    grid-template-columns: 1fr;
  }

  .feature-card.bento-wide {
    grid-column: span 1;
  }

  /* Timeline: vertical on mobile */
  .how-it-works {
    padding: 60px 0;
  }

  .steps-timeline {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .step {
    padding: 0;
  }

  .step-connector {
    display: none;
  }

  /* Pricing CTA */
  .pricing-cta {
    padding: 50px 0;
  }

  .pricing-cta-inner {
    padding: 30px 24px;
  }

  .pricing-cta-text h2 {
    font-size: 1.5rem;
  }

  .pricing-cta .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 30px 25px;
  }

  .price {
    font-size: 2.8rem;
  }

  .coming-soon {
    padding: 60px 0;
  }

  .coming-soon-left h2 {
    font-size: 2rem;
  }

  .coming-soon-left .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .countdown-visual {
    padding: 30px 20px;
  }

  .countdown-date {
    font-size: 2.5rem;
  }

  .countdown-items {
    gap: 20px;
  }

  footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .nav-links {
    width: 100%;
    padding: 100px 30px 30px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }

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

  .main-chat-window {
    height: 350px;
  }

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

  .welcome-suggestions {
    flex-direction: column;
  }

  .suggestion-btn {
    width: 100%;
  }

  .stat-pill {
    padding: 7px 12px;
    font-size: 0.75rem;
  }

  .countdown-date {
    font-size: 2rem;
  }

  .countdown-items {
    flex-direction: column;
    gap: 12px;
  }
}
