/* ═══════════════════════════════════════════════════
   Ideal CommOS — Landing Page Styles
   Premium dark-mode-first design with glassmorphism
   ═══════════════════════════════════════════════════ */

/* ──── DESIGN TOKENS ──── */
:root {
  /* Colors */
  --bg-dark: #050a18;
  --bg-primary: #0a0f1e;
  --bg-card: rgba(15, 23, 42, 0.6);
  --bg-card-solid: #0f172a;
  --bg-card-hover: rgba(30, 41, 72, 0.7);
  --glass-bg: rgba(15, 23, 42, 0.4);
  --glass-border: rgba(99, 102, 241, 0.15);
  --glass-border-hover: rgba(99, 102, 241, 0.35);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --indigo-glow: rgba(99, 102, 241, 0.25);
  --teal: #14b8a6;
  --teal-light: #34d399;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --sky: #0ea5e9;
  --sky-light: #38bdf8;
  --green: #22c55e;
  --red: #ef4444;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-py: 100px;
  --gap: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--indigo-glow);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ──── RESET & BASE ──── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ──── NAVIGATION ──── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
  transition: width var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ──── BUTTONS ──── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  color: white;
  box-shadow: 0 4px 20px var(--indigo-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--indigo-glow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(148, 163, 184, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--indigo-light);
  border: 2px solid var(--indigo);
}

.btn-outline:hover {
  background: var(--indigo);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-block {
  width: 100%;
}

/* ──── HERO ──── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(20, 184, 166, 0.06) 0%, transparent 50%),
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 100%, 100%, 60px 60px, 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo-light), var(--teal-light), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.bullet-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  border: 2px solid var(--bg-dark);
  margin-right: -8px;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: var(--amber);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  z-index: 5;
}

.fc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.fc-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.fc-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.floating-card-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 2s;
}

.floating-card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ──── STATS BAR ──── */
.stats-bar {
  padding: 40px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: inline;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo-light);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ──── SECTIONS (shared) ──── */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--indigo-glow);
  color: var(--indigo-light);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ──── WHO IS IT FOR ──── */
.section-who {
  background: var(--bg-primary);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.who-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(10px);
}

.who-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.who-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.who-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ──── FEATURES ──── */
.section-features {
  background: var(--bg-dark);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block-reverse {
  direction: rtl;
}

.feature-block-reverse>* {
  direction: ltr;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 0.925rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Feature Mockups */
.feature-mockup {
  background: var(--bg-card-solid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  padding: 20px;
}

.mockup-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-blue {
  background: rgba(99, 102, 241, 0.15);
  color: var(--indigo-light);
}

.tag-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.tag-teal {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-light);
}

.tag-cyan {
  background: rgba(14, 165, 233, 0.15);
  color: var(--sky-light);
}

.tag-amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
}

.tag-pink {
  background: rgba(236, 72, 153, 0.15);
  color: var(--pink-light);
}

.mockup-stat-row {
  display: flex;
  gap: 12px;
}

.mockup-mini-card {
  flex: 1;
  padding: 12px 14px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: var(--radius-sm);
}

.mockup-mini-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mockup-mini-card strong {
  font-size: 1.1rem;
  font-weight: 800;
}

/* Inventory Mockup */
.mockup-inventory-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inv-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(99, 102, 241, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.inv-qty {
  font-weight: 600;
  font-size: 0.8rem;
}

.inv-ok {
  color: var(--teal);
}

.inv-low {
  color: var(--amber);
}

.inv-out {
  color: var(--red);
}

/* Chart Mockup */
.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  position: relative;
  min-width: 24px;
  transition: height 1s var(--ease);
}

.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Reports Mockup */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(99, 102, 241, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.report-icon {
  font-size: 1rem;
}

.report-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.15);
  color: var(--indigo-light);
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

/* Dashboard Mockup */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-card {
  padding: 14px;
  border-radius: var(--radius-sm);
  color: white;
}

.dash-card small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.dash-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.dash-card span {
  font-size: 0.65rem;
  opacity: 0.7;
}

.dash-card-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.dash-card-teal {
  background: linear-gradient(135deg, var(--teal), #0d9488);
}

.dash-card-purple {
  background: linear-gradient(135deg, var(--indigo), #7c3aed);
}

.dash-quick-actions {
  display: flex;
  gap: 8px;
}

.qa-btn {
  flex: 1;
  padding: 8px;
  text-align: center;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ──── REPORTS & GST SECTION ──── */
.section-reports {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
}

.reports-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reports-content .section-badge {
  margin-bottom: 16px;
}

.reports-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.reports-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.report-tag {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.report-card-stack {
  position: relative;
  padding: 20px;
}

.rcard {
  padding: 20px;
  background: var(--bg-card-solid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: transform var(--duration) var(--ease);
}

.rcard:hover {
  transform: translateX(8px);
}

.rcard-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}

.rcard-bar {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.rcard-status {
  font-size: 0.75rem;
  color: var(--teal);
  margin-top: 4px;
  display: block;
}

/* ──── TESTIMONIALS ──── */
.section-testimonials {
  background: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-support {
  margin-top: 48px;
  text-align: center;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
}

.support-badge span:first-child {
  font-size: 1.5rem;
}

.support-badge p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: left;
}

/* ──── PRICING ──── */
.section-pricing {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.pricing-card-popular {
  border-color: var(--indigo);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), var(--bg-card));
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 28px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price-period {
  color: var(--text-muted);
  font-size: 1rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding-left: 4px;
}

.pricing-reassurance {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reassurance-item span:first-child {
  font-size: 1.2rem;
}

/* ──── LEAD FORM ──── */
.section-form {
  background: var(--bg-dark);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 56px;
  backdrop-filter: blur(10px);
}

.form-info .section-badge {
  margin-bottom: 16px;
}

.form-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-info>p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.form-benefits li {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-trust-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-trust-line svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card-solid);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-glow);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card-solid);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group.error input,
.form-group.error select {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-msg {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}

.form-group.error .error-msg {
  display: block;
}

.form-success {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  z-index: 5;
}

.form-success.show {
  display: flex;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ──── FAQ ──── */
.section-faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq-item.open {
  border-color: var(--glass-border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--indigo-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ──── FINAL CTA ──── */
.section-final-cta {
  background: var(--bg-dark);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--indigo-glow) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
}

.final-cta-inner h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.final-cta-inner p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──── FOOTER ──── */
.footer {
  background: var(--bg-card-solid);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(99, 102, 241, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ──── ANIMATIONS ──── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-block,
  .feature-block-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .reports-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(5, 10, 24, 0.97);
    backdrop-filter: blur(20px);
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2,
  .reports-content h2 {
    font-size: 1.8rem;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 32px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .final-cta-inner h2 {
    font-size: 2rem;
  }

  .floating-card {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .pricing-reassurance {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .support-badge {
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius-lg);
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .dash-quick-actions {
    flex-direction: column;
  }
}