:root {
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0A0E1A;
  --bg-dark-card: #111827;
  --primary: #0F172A;
  --secondary: #64748B;
  --accent: #8B5CF6;
  --accent-hover: #7C3AED;
  --accent-soft: #F3F0FF;
  --accent-glow: rgba(139, 92, 246, 0.35);
  --gradient: linear-gradient(135deg, #8B5CF6 0%, #A855F7 40%, #6366F1 100%);
  --gradient-text: linear-gradient(135deg, #8B5CF6, #A855F7);
  --border: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --success: #10B981;
  --success-soft: #D1FAE5;
  --error: #EF4444;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(280deg, var(--bg-dark) 0%, rgba(10, 14, 26, 0.95) 40%, rgba(10, 14, 26, 0.75) 70%, rgba(10, 14, 26, 0.4) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img {
  height: 90px;
  width: auto;
  mix-blend-mode: screen;
}

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

.browser-viewport {
  height: 480px;
  background: #000;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  display: block;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-blue {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ── HERO — The Big Impact ── */
.hero {
  position: relative;
  padding: 10rem 0 7rem;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(280deg, var(--bg-dark) 0%, rgba(10, 14, 26, 0.9) 40%, rgba(10, 14, 26, 0.6) 75%, rgba(10, 14, 26, 0.3) 100%),
    url("lightning.svg") no-repeat top left / 100% 100%;
  pointer-events: none;
  z-index: 0;
}

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

#hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero>.container>p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.hero-metrics .metric {
  text-align: center;
}

.hero-metrics .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-metrics .metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Section base ── */
section {
  padding: 7rem 0;
}

.section-label {
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 1.15rem;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Logos ── */
.logos-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 3rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.logos-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Pricing Section ── */
.pricing-section {
  background: var(--bg-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.06), transparent 50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.price-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.2);
}

.price-card-featured {
  border-color: transparent;
  background: linear-gradient(var(--bg-dark-card), var(--bg-dark-card)) padding-box,
    var(--gradient) border-box;
  border: 2px solid transparent;
  transform: scale(1.04);
}

.price-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.2);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-k {
  font-size: 2rem;
}

.price-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

/* ── Select Dropdown ── */
select.terminal-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

select.terminal-input option {
  background: var(--bg-dark-card);
  color: #fff;
}

/* ── Coming Soon Overlay ── */
.price-card-coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(139, 92, 246, 0.06) 40%,
      rgba(139, 92, 246, 0.12) 50%,
      rgba(139, 92, 246, 0.06) 60%,
      transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.coming-soon-bar {
  margin-top: 1rem;
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-progress {
  width: 40%;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {

  0%,
  100% {
    width: 30%;
    opacity: 0.6;
  }

  50% {
    width: 70%;
    opacity: 1;
  }
}

/* ── How it Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--secondary);
  font-size: 0.95rem;
}

/* ── Terminal — Dark & Cinematic ── */
.terminal-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}

.terminal-section .section-title {
  color: #fff;
}

.terminal-section .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-section .badge-blue {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.terminal {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.08), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

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

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

.terminal-dots span:nth-child(1) {
  background: #EF4444;
}

.terminal-dots span:nth-child(2) {
  background: #F59E0B;
}

.terminal-dots span:nth-child(3) {
  background: #10B981;
}

.terminal-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.terminal-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.terminal-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font);
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s;
}

.terminal-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.terminal-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1), 0 0 20px rgba(139, 92, 246, 0.1);
}

textarea.terminal-input {
  resize: vertical;
  min-height: 80px;
}

.input-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scan-log {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--success);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  max-height: 300px;
  overflow-y: auto;
}

.scan-log::-webkit-scrollbar {
  width: 4px;
}

.scan-log::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

/* ── Confirmation Card (dark variant) ── */
.confirmation-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  background: rgba(16, 185, 129, 0.03);
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.confirmation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.confirmation-card>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.confirm-details {
  margin-top: 2rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-dark);
}

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

.confirm-label {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.confirm-value {
  color: #fff;
  font-weight: 700;
  text-align: right;
  word-break: break-all;
  max-width: 240px;
}

.hidden {
  display: none !important;
}

/* ── Case Studies ── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.case-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.2);
}

.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.case-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.case-result {
  font-weight: 700;
  color: var(--success);
  font-size: 0.9rem;
}

/* ── Browser Mockup (Mac-style) ── */
.case-card-showcase {
  grid-column: 1 / -1;
}

.case-showcase {
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
}

.browser-mockup {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



.browser-mockup:hover {
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: #1E1E2E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.02em;
}



.browser-viewport::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
}

/* ── Guarantee — Dark Section ── */
.guarantee-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08), transparent 60%);
}

.guarantee {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guarantee h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 1rem 0;
  color: #fff;
}

.guarantee p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.guarantee .badge-green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success);
}

/* ── Enterprise ── */
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.enterprise-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enterprise-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.2);
}

.enterprise-card .icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.enterprise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.enterprise-card p {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* ── Stats — Dark Section ── */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat h3 {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-grid {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.08), transparent 50%);
}

.cta-banner * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

/* ── Footer ── */
footer {
  padding: 3rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  background: transparent;
  border-top: none;
}

footer a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  margin-bottom: 1rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Animated Grid Background ── */
@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Responsive ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
}

@media (max-width: 768px) {

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

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

  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .pricing-grid,
  .steps-grid,
  .cases-grid,
  .enterprise-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: scale(1);
  }

  .price-card-featured:hover {
    transform: translateY(-6px);
  }

  .hero-metrics {
    flex-direction: column;
    gap: 2rem;
  }

  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  section {
    padding: 4.5rem 0;
  }

  .terminal {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .logos-strip {
    gap: 1.5rem;
  }

  .stat h3 {
    font-size: 3rem;
  }

  .case-showcase {
    padding: 0;
  }

  .browser-viewport {
    height: 400px;
  }

  .availability-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .time-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
}

/* ── Availability ── */
.availability-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.availability-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-label {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.time-value {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.time-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.availability-note {
  color: var(--secondary);
  font-size: 0.9rem;
  opacity: 0.7;
}