/* ==========================================
   MINI CLAY AI - STYLES
   Dark AI Agency Theme — Exact Framer Match
   ========================================== */

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

/* ── CSS Variables ── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #171717;
  --bg-card-hover: #1c1c1c;
  --bg-surface: #141414;
  --bg-badge: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --accent: #c8ff00;
  --accent-hover: #d4ff33;
  --accent-dim: rgba(200, 255, 0, 0.15);
  --accent-subtle: rgba(200, 255, 0, 0.06);
  --green-status: #22c55e;
  --yellow-status: #f59e0b;
  --red-status: #ef4444;
  --blue-status: #3b82f6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
}

/* Hide scrollbar for all elements */
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Icon Utility ── */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  vertical-align: middle;
}

/* ── Utility ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   NAVBAR — Floating Pill Bar
   ========================================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 720px;
  padding: 6px 6px 6px 22px;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
}

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

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-accent {
  background: var(--accent);
  color: #000 !important;
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.25);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background glow — dramatic olive/green ambient light */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 900px;
  background:
    /* Left olive glow */
    radial-gradient(ellipse 35% 55% at 20% 15%,
      rgba(140, 160, 40, 0.45) 0%,
      rgba(110, 130, 20, 0.25) 30%,
      rgba(80, 100, 10, 0.10) 55%,
      transparent 75%),
    /* Right olive glow */
    radial-gradient(ellipse 35% 55% at 80% 15%,
      rgba(140, 160, 40, 0.45) 0%,
      rgba(110, 130, 20, 0.25) 30%,
      rgba(80, 100, 10, 0.10) 55%,
      transparent 75%),
    /* Center bright bloom */
    radial-gradient(ellipse 30% 40% at 50% 10%,
      rgba(180, 200, 60, 0.35) 0%,
      rgba(140, 170, 30, 0.15) 40%,
      transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background:
    /* Top-center hot spot */
    radial-gradient(ellipse 40% 30% at 50% 0%,
      rgba(160, 180, 50, 0.30) 0%,
      rgba(120, 150, 30, 0.12) 40%,
      transparent 65%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

.hero>.container {
  position: relative;
  z-index: 1;
}

/* Hero Icon */
.hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
  background: #2d2d2d;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 60px rgba(200, 255, 0, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}

.hero-icon img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 750px;
  margin: 0 auto 24px;
  color: #fff;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.hero-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-icon {
  font-size: 1.2rem;
}

.trust-text strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-buttons .btn-accent {
  padding: 12px 28px;
  font-size: 0.88rem;
}

.hero-buttons .btn-outline {
  padding: 12px 28px;
  font-size: 0.88rem;
}

/* ==========================================
   DASHBOARD PREVIEW — Browser Chrome
   ========================================== */
.dashboard-preview {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

/* Browser top bar */
.browser-chrome {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ef4444;
}

.browser-dots span:nth-child(2) {
  background: #f59e0b;
}

.browser-dots span:nth-child(3) {
  background: #22c55e;
}

.browser-url {
  flex: 1;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  padding: 6px 24px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.08), rgba(0, 180, 100, 0.06));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
}

/* Dashboard Body */
.dashboard-mock {
  display: flex;
  min-height: 480px;
}

/* Sidebar */
.mock-sidebar {
  width: 200px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 20px 0;
  flex-shrink: 0;
}

.mock-sidebar .sidebar-logo {
  padding: 0 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.sidebar-section {
  margin-bottom: 20px;
}

.sidebar-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 0 16px;
  margin-bottom: 6px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.sidebar-item:hover,
.sidebar-item.active {
  color: var(--text-primary);
}

.sidebar-item.active {
  background: rgba(200, 255, 0, 0.08);
  color: var(--accent);
  border-radius: 6px;
  margin: 0 8px;
  padding: 7px 8px;
}

.sidebar-item svg,
.sidebar-item .item-icon {
  width: 15px;
  height: 15px;
  opacity: 0.5;
}

.sidebar-item.active svg,
.sidebar-item.active .item-icon {
  opacity: 1;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* Main Content */
.mock-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
}

.mock-search-bar kbd {
  font-size: 0.65rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  margin-left: auto;
  color: var(--text-muted);
}

.mock-topbar-icons {
  display: flex;
  gap: 8px;
}

.mock-topbar-icons span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Stats Cards Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.stat-card .stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-card .stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-card .stat-value .stat-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.stat-card .stat-value small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.stat-card .stat-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Content Grid */
.mock-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.mock-panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Model Performance */
.model-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.78rem;
}

.model-row:last-child {
  border-bottom: none;
}

.model-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.model-icon.active {
  background: var(--accent);
}

.model-name {
  color: var(--text-primary);
  font-weight: 600;
  flex: 1;
}

.model-accuracy {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.status-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: capitalize;
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-status);
}

.status-badge.operational {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-status);
}

.status-badge.degraded {
  background: rgba(245, 158, 11, 0.12);
  color: var(--yellow-status);
}

/* Service Health */
.health-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border-color);
  gap: 8px;
}

.health-row:last-child {
  border-bottom: none;
}

.health-name {
  flex: 1;
  color: var(--text-primary);
  font-weight: 500;
}

.health-latency {
  color: var(--text-muted);
  font-size: 0.72rem;
  min-width: 40px;
  text-align: right;
}

/* Uptime Chart */
.uptime-chart-mock {
  height: 100px;
  position: relative;
  padding-top: 12px;
}

.uptime-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
  padding-top: 8px;
}

.uptime-y-labels {
  position: absolute;
  top: 12px;
  left: 0;
  height: calc(100% - 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.chart-area {
  margin-left: 32px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.chart-area svg {
  width: 100%;
  height: 100%;
}

/* Training Jobs */
.training-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border-color);
}

.training-job:last-child {
  border-bottom: none;
}

.job-name {
  color: var(--text-primary);
  font-weight: 500;
}

.job-percent {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-left: auto;
  margin-right: 8px;
}

.job-bar {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.job-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.job-bar-fill.green {
  background: var(--green-status);
}

.job-bar-fill.yellow {
  background: var(--accent);
}

.job-bar-fill.blue {
  background: var(--blue-status);
}

/* ==========================================
   HARNESS THE POWER — Text Section
   ========================================== */
.power-section {
  padding: 100px 0 40px;
  text-align: center;
}

.power-text {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.85);
}

.power-text .icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin: 0 4px;
  font-size: 1.2rem;
}

/* Feature Badges */
.feature-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-badge);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.feature-badge:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.feature-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(200, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* Service visual demos */
.service-visual {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.comparison-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.bar-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  width: 80px;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
}

.bar-fill.accent {
  background: var(--accent);
}

.bar-fill.muted {
  background: rgba(255, 255, 255, 0.15);
}

.chat-demo {
  margin-top: 14px;
}

.chat-bubble {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  max-width: 85%;
}

.chat-bubble.user {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
  background: var(--accent-dim);
  color: var(--accent);
  border-bottom-left-radius: 4px;
}

.chat-timestamp {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.process-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 18px;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   INTEGRATIONS
   ========================================== */
.integrations {
  padding: 80px 0;
  text-align: center;
}

.integration-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.integration-logo {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.integration-logo:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent);
  transform: scale(1.1);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-section {
  padding: 80px 0;
}

.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.testimonial-quote {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 48px;
}

.pricing-toggle span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-knob {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: var(--transition);
}

.toggle-switch.active .toggle-knob {
  left: 24px;
}

.save-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: rgba(200, 255, 0, 0.3);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-tier {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount .price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-amount .price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================
   POWER SECTION ANIMATIONS
   ========================================== */
.icon-inline {
  width: 1.5em;
  height: 1.5em;
  vertical-align: text-bottom;
  margin: 0 6px;
  object-fit: contain;
  display: inline-block;
}

.rotate-wheel {
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==========================================
   POWER SECTION LAYOUT
   ========================================== */
.power-section .container {
  max-width: 1400px;
  padding: 0 40px;
}

.power-text {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  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='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 3px 0;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .mock-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    left: 16px;
    right: 16px;
    transform: none;
    max-width: none;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
  }

  .navbar-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mock-sidebar {
    display: none;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .power-text {
    font-size: 1.5rem;
  }

  .feature-badges {
    gap: 8px;
  }

  .feature-badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 48px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }
}

/* ==========================================
   VAPI CALL BUTTON
   ========================================== */
.vapi-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
}

.vapi-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(200, 255, 0, 0.5);
}

.vapi-btn.active {
  background-color: var(--red-status);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.vapi-btn.active:hover {
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.6);
}

.pulsating-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse 1.5s infinite;
  display: none;
}

.vapi-btn.loading .pulsating-circle {
  display: block;
  border-color: var(--red-status);
}

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

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==========================================
   VAPI CALL POPUP CARD
   ========================================== */
.vapi-popup {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vapi-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.vapi-popup-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vapi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.vapi-popup-header h4 {
  font-size: 1.05rem;
  margin: 0 0 4px 0;
  color: #fff;
}

.vapi-status-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.vapi-equalizer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
}

.vapi-equalizer .bar {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: equalize 1s ease-in-out infinite;
}

.vapi-equalizer .bar:nth-child(1) {
  animation-delay: 0.0s;
}

.vapi-equalizer .bar:nth-child(2) {
  animation-delay: 0.2s;
}

.vapi-equalizer .bar:nth-child(3) {
  animation-delay: 0.4s;
}

.vapi-equalizer .bar:nth-child(4) {
  animation-delay: 0.1s;
}

.vapi-equalizer .bar:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes equalize {

  0%,
  100% {
    height: 8px;
  }

  50% {
    height: 32px;
  }
}

.btn-end-call {
  width: 100%;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-end-call:hover {
  background: #dc2626;
}

.vapi-contact-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.vapi-contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.vapi-contact-info a:hover {
  text-decoration: underline;
}

/* --- Clerk Dev Badge Fix --- */
.cl-devMode,
aside.cl-devMode,
[class*="cl-devMode"],
[class*="cl-internal"][style*="bottom"] {
  display: none !important;
}