@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #070a13;
  --bg-dark-rgb: 7, 10, 19;
  --bg-card: #0f1524;
  --bg-card-rgb: 15, 21, 36;
  --bg-card-hover: #151e33;
  --primary: #25D366;
  --primary-rgb: 37, 211, 102;
  --primary-hover: #1ebe5d;
  --primary-dark: #128c7e;
  --accent-emerald: #10b981;
  --accent-teal: #0d9488;
  --accent-purple: #8b5cf6;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-light-hover: rgba(255, 255, 255, 0.16);
  --shadow-glow: rgba(37, 211, 102, 0.15);
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-inter: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
}

/* Background elements for premium aesthetic */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, rgba(13, 148, 136, 0.02) 60%, transparent 100%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.glow-bg.purple {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(37, 211, 102, 0) 60%, transparent 100%);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

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

/* Grid / Flex Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

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

/* Badges & Accents */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 56px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.975rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-emerald) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-emerald) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-light-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #a78bfa 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: rgba(7, 10, 19, 0.7);
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(7, 10, 19, 0.9);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-emerald) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text span {
  color: var(--primary);
}

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

.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 60%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.hero-trust p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-trust span {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(37, 211, 102, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}

/* WhatsApp Mockup Styling */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-mockup {
  width: 100%;
  max-width: 360px;
  background: #0b141a;
  border-radius: 36px;
  border: 12px solid #232d36;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 211, 102, 0.1);
  overflow: hidden;
  font-family: var(--font-inter);
}

.wa-header {
  background: #1f2c34;
  padding: 16px 14px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.wa-name-status {
  display: flex;
  flex-direction: column;
}

.wa-name {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-status {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.wa-actions {
  display: flex;
  gap: 14px;
  color: #aebac1;
  font-size: 0.95rem;
}

.wa-body {
  height: 380px;
  padding: 16px;
  overflow-y: auto;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.wa-msg.sent {
  align-self: flex-end;
  background-color: #005c4b;
  color: #e9edef;
  border-bottom-right-radius: 2px;
}

.wa-msg.received {
  align-self: flex-start;
  background-color: #202c33;
  color: #e9edef;
  border-bottom-left-radius: 2px;
}

.wa-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  margin-top: 4px;
  display: block;
}

/* Typing Indicator */
.wa-typing {
  align-self: flex-start;
  background-color: #202c33;
  padding: 12px 16px;
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  display: none;
}

.wa-dots {
  display: flex;
  gap: 4px;
}

.wa-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: waBounce 1.4s infinite ease-in-out both;
}

.wa-dot:nth-child(1) { animation-delay: -0.32s; }
.wa-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes waBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

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

/* Dashboard Card */
.dashboard-card {
  margin-top: 24px;
  background: rgba(var(--bg-card-rgb), 0.7);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.dashboard-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.db-item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 10px;
}

.db-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.db-val.purple { color: var(--accent-purple); }
.db-val.teal { color: var(--accent-teal); }
.db-val.gold { color: #f59e0b; }

.db-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Problem Section */
.problem-cards {
  margin-top: 24px;
}

.problem-card {
  background: rgba(var(--bg-card-rgb), 0.5);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.3); /* Muted warning red border */
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.prob-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.prob-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Solution / Features Section */
.features-grid {
  margin-top: 24px;
}

.feature-card {
  background: rgba(var(--bg-card-rgb), 0.5);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(var(--bg-card-rgb), 0.8);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.05);
}

.feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feat-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Indian Touch Section */
.indian-touch-bg {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(37, 211, 102, 0.03) 50%, var(--bg-dark) 100%);
}

.indian-touch-content {
  max-width: 800px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.indian-touch-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Tab Navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
}

.tab-btn.active {
  background: rgba(37, 211, 102, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.tab-content {
  background: rgba(var(--bg-card-rgb), 0.4);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  min-height: 280px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.tab-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.tab-info-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.tab-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}

.tab-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.tab-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

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

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 40px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 30%, var(--border-light) 70%);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.step-cta-container {
  margin-top: 56px;
  text-align: center;
}

/* Product Demo Section (AC repair workflow) */
.demo-console {
  background: #090d16;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.demo-console-header {
  background: #111827;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-dots {
  display: flex;
  gap: 8px;
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.demo-dot.red { background-color: #ef4444; }
.demo-dot.yellow { background-color: #f59e0b; }
.demo-dot.green { background-color: #10b981; }

.demo-title-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  height: 520px;
}

.demo-chat-pane {
  display: flex;
  flex-direction: column;
  background: #0c131a;
  border-right: 1px solid var(--border-light);
}

.demo-chat-history {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-interactive-pane {
  background: #0f1524;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.demo-options-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.demo-btn-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-opt-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.demo-opt-btn:hover {
  background: rgba(37, 211, 102, 0.06);
  border-color: var(--primary);
}

.demo-opt-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--border-light);
}

.demo-card-box {
  background: rgba(7, 10, 19, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px;
}

.demo-card-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.lead-data-list {
  list-style: none;
  font-family: var(--font-inter);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-data-list li {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
}

.lead-lbl { color: var(--text-muted); }
.lead-val { color: var(--text-main); font-weight: 600; }
.lead-val.pending { color: #ef4444; font-style: italic; }
.lead-val.hot { color: #f59e0b; background: rgba(245, 158, 11, 0.1); padding: 2px 6px; border-radius: 4px; }

.alert-box {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 12px 16px;
  border-radius: 12px;
  animation: popIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

.alert-icon {
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: bold;
}

.alert-text {
  font-size: 0.8rem;
}

.alert-heading {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 2px;
}

.alert-body {
  color: var(--text-muted);
}

.demo-reset-container {
  display: flex;
  justify-content: flex-end;
}

/* Trust Section */
.trust-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  gap: 16px;
}

.trust-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(37, 211, 102, 0.08);
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-microcopy {
  margin-top: 56px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

/* Pricing Section */
.pricing-grid {
  margin-top: 16px;
}

.price-card {
  background: rgba(var(--bg-card-rgb), 0.5);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light-hover);
}

.price-card.popular {
  background: rgba(var(--bg-card-rgb), 0.8);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.price-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-best-for {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(37, 211, 102, 0.06);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
  text-align: center;
}

.price-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features-list li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 24px;
  color: var(--text-main);
}

.price-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.price-features-list li.muted {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.price-features-list li.muted::before {
  color: var(--text-muted);
}

.price-cta {
  width: 100%;
}

.price-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Founding Customer Offer */
.founding-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: 24px;
  padding: 48px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}

.founding-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.founding-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founding-offer-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.founding-offer-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.founding-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
}

.founding-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.925rem;
}

.founding-perks li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: bold;
}

.founding-cta-col {
  text-align: center;
}

.founding-small-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: block;
}

/* Lead Form Section */
.form-card {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(var(--bg-card-rgb), 0.5);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(7, 10, 19, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.15);
}

.form-textarea {
  resize: vertical;
  height: 100px;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.form-success {
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: rgba(var(--bg-card-rgb), 0.4);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-light-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  background: rgba(var(--bg-card-rgb), 0.6);
  border-color: rgba(37, 211, 102, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* Large enough value */
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

/* Final CTA Section */
.final-cta {
  position: relative;
  background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.final-cta-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 21, 36, 0.8) 0%, rgba(7, 10, 19, 0.8) 100%);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 64px 32px;
  backdrop-filter: blur(12px);
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 60%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px 0;
  background: #04070d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  line-height: 1.6;
  text-align: justify;
}

/* Legal Pages Styling */
.legal-layout {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
}

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

.legal-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.legal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.legal-body p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.legal-body ul {
  list-style-type: square;
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-body li {
  margin-bottom: 8px;
  font-size: 0.975rem;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.legal-body th, .legal-body td {
  border: 1px solid var(--border-light);
  padding: 12px;
  text-align: left;
}

.legal-body th {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
  font-weight: 600;
}

.legal-body td {
  color: var(--text-muted);
}

.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-container::before {
    display: none;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .demo-chat-pane {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    height: 380px;
  }
  .demo-interactive-pane {
    height: auto;
  }
  .founding-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section {
    padding: 60px 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-light);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-actions {
    display: none; /* In mobile nav, we put CTA inside the hamburger or just hide secondary actions */
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .tab-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tab-content {
    padding: 24px;
  }
  .trust-points-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-card {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
