/* ═══════════════════════════════════════════════════════════════
   SaaS Con — style.css
   Design System: Midnight Dark + Red/Orange brand palette
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ────────────────────────────────────────────── */
:root {
  /* Colors — Light Theme */
  --bg-primary:    #F7F8FC;
  --bg-surface:    #FFFFFF;
  --bg-elevated:   #EEF0F8;
  --bg-card:       #FFFFFF;

  --accent-red:    #C8272A;
  --accent-orange: #E8A030;
  --gradient:      linear-gradient(135deg, #C8272A 0%, #E8A030 100%);
  --gradient-text: linear-gradient(135deg, #C8272A 0%, #E8A030 60%);

  --text-primary:  #0D0F1C;
  --text-secondary:#374151;
  --text-muted:    #6B7280;
  --text-accent:   #C8272A;

  --border:        rgba(0, 0, 0, 0.08);
  --border-hover:  rgba(0, 0, 0, 0.15);
  --border-accent: rgba(200, 39, 42, 0.3);

  /* Shadows — 50% reduced */
  --shadow-sm:     0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg:     0 10px 30px rgba(0, 0, 0, 0.08);
  --glow-red:      none;
  --glow-orange:   none;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Typography */
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg { display: block; flex-shrink: 0; }

/* ─── Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Section Base ─────────────────────────────────────────────── */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(232, 160, 48, 0.1);
  border: 1px solid rgba(232, 160, 48, 0.2);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Text Gradient ────────────────────────────────────────────── */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(200, 39, 42, 0.35);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 39, 42, 0.5);
  filter: brightness(1.08);
}

.btn-gradient:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateY(3px);
}

/* ─── Scroll Reveal ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── Check gradient ────────────────────────────────────────────── */
.check-grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.nav-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.nav-logo-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link--active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(247, 248, 252, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: color var(--transition), background var(--transition);
}

.mobile-link:hover {
  color: var(--accent-red);
  background: rgba(200, 39, 42, 0.06);
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg-primary);
}

/* Dot grid background — removed */
.hero-bg-grid {
  display: none;
}

/* Ambient glow blobs — removed */
.hero-blob { display: none; }

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.04); }
  66%  { transform: translate(-20px, 20px) scale(0.97); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-30px, 20px) scale(1.06); }
  70%  { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%  { transform: translateY(-55%) scale(1.08); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-accent);
  background: rgba(232, 160, 48, 0.08);
  border: 1px solid rgba(232, 160, 48, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--accent-orange); }
  50%  { box-shadow: 0 0 16px var(--accent-orange), 0 0 24px rgba(232, 160, 48, 0.4); }
}

/* Title */
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* Subtitle */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* CTAs */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  animation: scroll-dot-move 2.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(5px); }
}

@keyframes scroll-dot-move {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(8px); opacity: 0.2; }
}

/* ════════════════════════════════════════════════════════════════
   CLIENTS MARQUEE
   ════════════════════════════════════════════════════════════════ */
.clients-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.marquee-outer {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

.client-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6) contrast(1.1);
  transition: filter var(--transition);
  flex-shrink: 0;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
}

.client-logo-round {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 39, 42, 0.04) 0%, rgba(232, 160, 48, 0.04) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(200, 39, 42, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(200, 39, 42, 0.15) 0%, rgba(232, 160, 48, 0.1) 100%);
  border: 1px solid rgba(200, 39, 42, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-orange);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(200, 39, 42, 0.25);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ════════════════════════════════════════════════════════════════ */
.product-section {
  background: var(--bg-surface);
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem;
}

.product-block:last-child { margin-bottom: 0; }

.product-block-reverse {
  direction: rtl;
}

.product-block-reverse > * { direction: ltr; }

.product-content .section-eyebrow {
  text-align: left;
}

.product-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(200, 39, 42, 0.1);
  border: 1px solid rgba(200, 39, 42, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-orange);
}

.product-benefit h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.product-benefit p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Product Image */
.product-image-wrap {
  position: relative;
}

.product-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-image-frame:hover .product-screenshot {
  transform: scale(1.02);
}

/* Stacked images */
.product-image-stack {
  position: relative;
}

.stack-back {
  width: 100%;
  border-radius: var(--radius-md);
}

.stack-front {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 65%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stack-front--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glow behind product images — removed */
.product-image-glow { display: none; }

/* ════════════════════════════════════════════════════════════════
   INDUSTRIES
   ════════════════════════════════════════════════════════════════ */
.industries-section {
  background: var(--bg-elevated);
}

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

.industry-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(200, 39, 42, 0.4);
  background: rgba(200, 39, 42, 0.03);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.industry-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  padding: 0.75rem;
}

.industry-card:hover .industry-icon-wrap {
  transform: scale(1.1);
}

.industry-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0.85) saturate(0.7);
  transition: filter var(--transition);
}

.industry-card:hover .industry-icon {
  filter: brightness(1) saturate(1);
}

.industry-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.industry-card:hover .industry-label {
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-surface);
}

.pricing-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card-inner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover .pricing-card-inner {
  border-color: rgba(200, 39, 42, 0.35);
}

/* Pricing card glow — removed */
.pricing-card-glow { display: none; }

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(200, 39, 42, 0.15), rgba(232, 160, 48, 0.1));
  border: 1px solid rgba(200, 39, 42, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pricing-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-orange);
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-elevated);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item--open {
  border-color: rgba(200, 39, 42, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}

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

.faq-item--open .faq-question { color: var(--text-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

/* Contact section background glow — removed */
.contact-section::before { display: none; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-content .section-eyebrow {
  text-align: left;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.contact-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
  margin-bottom: 2.5rem;
}

.contact-email-link:hover {
  border-bottom-color: var(--accent-orange);
}

.contact-email-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-orange);
  -webkit-text-fill-color: initial;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Contact card */
.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  border-color: rgba(200, 39, 42, 0.3);
  transform: translateY(-4px);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  padding: 4px;
}

.contact-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-card-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.contact-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: auto;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--text-secondary);
}

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

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .product-block {
    gap: 3rem;
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Nav + Hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-cta { gap: 0.75rem; }

  .hero-stats {
    gap: 0;
    padding: 1rem 0.75rem;
    flex-wrap: nowrap;
  }

  .stat-item { padding: 0 1rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Product */
  .product-block,
  .product-block-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }

  .product-image-wrap { order: -1; }

  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .contact-visual  { order: -1; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-tagline { margin-left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-stats { display: none; }

  .pricing-card-inner { padding: 2rem 1.5rem; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .stack-front { right: -15px; bottom: -15px; width: 60%; }
}
