:root {
  --color-primary: #E86A2A;
  --color-primary-dark: #C9571E;
  --color-primary-light: #F07D42;
  --color-primary-lighter: #F5A67A;
  --color-primary-darker: #A84A18;
  --color-secondary: #F5A623;
  --color-secondary-dark: #D48E1A;
  --color-secondary-light: #F7B84D;
  --color-secondary-lighter: #FDE68A;
  --color-info: #0EA5E9;
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  --color-bg: #131110;
  --color-bg-raised: #1A1716;
  --color-bg-surface: rgba(255, 245, 235, 0.04);
  --color-bg-surface-hover: rgba(255, 245, 235, 0.07);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-subtle: rgba(255, 255, 255, 0.05);
  --color-border-strong: rgba(255, 255, 255, 0.12);

  --color-text-primary: rgba(255, 255, 255, 0.95);
  --color-text-secondary: rgba(255, 255, 255, 0.6);
  --color-text-tertiary: rgba(255, 255, 255, 0.4);
  --color-text-quaternary: rgba(255, 255, 255, 0.25);

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(232, 106, 42, 0.15);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
}

/* ============================================================================
   Reset
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.6;
  background-color: var(--color-bg);
  padding-top: 4rem;
}

/* ============================================================================
   Typography
   ============================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

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

/* ============================================================================
   Buttons
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--color-text-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--color-bg);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover {
  background: var(--color-bg-surface-hover);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background-color: #ffffff;
  color: var(--color-bg);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-bg);
}

.btn-lg {
  padding: 0.8125rem 2rem;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================================
   Container & Section Spacing
   ============================================================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}

/* Divider between sections */
.section + .section {
  border-top: 1px solid var(--color-border-subtle);
}

/* ============================================================================
   Site Header
   ============================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 9, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: all 0.2s ease;
}

.site-header.scrolled {
  background: rgba(8, 9, 10, 0.95);
  border-bottom-color: var(--color-border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text-primary);
  transition: opacity 0.15s ease;
}

.header-logo:hover {
  opacity: 0.8;
  color: var(--color-text-primary);
}

.header-logo span {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.header-logo svg {
  color: var(--color-primary-light);
}

.header-logo img {
  height: 2rem;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  color: var(--color-text-tertiary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-text-primary);
}

.header-nav a.btn-primary {
  color: var(--color-bg);
}

.header-nav a.btn-primary:hover {
  color: var(--color-bg);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  padding: 0;
  transition: color 0.15s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-toggle:hover {
  color: var(--color-text-primary);
}

.nav-dropdown-trigger svg,
.nav-dropdown-toggle svg {
  flex-shrink: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-raised);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-surface-hover);
  color: var(--color-text-primary);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-secondary);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-nav a:hover {
  color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ============================================================================
   Site Footer
   ============================================================================ */

.site-footer {
  background-color: var(--color-bg);
  color: var(--color-text-tertiary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-tertiary);
}

.footer-brand img {
  height: 1.75rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: var(--color-text-tertiary);
  font-size: 0.8125rem;
  padding: 0.3125rem 0;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-quaternary);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================================================
   Hero Section
   ============================================================================ */

.hero {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text-primary);
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-dither {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect width='1' height='1' x='0' y='0' fill='white' opacity='0.09'/%3E%3Crect width='1' height='1' x='3' y='1' fill='white' opacity='0.06'/%3E%3Crect width='1' height='1' x='1' y='3' fill='white' opacity='0.07'/%3E%3Crect width='1' height='1' x='4' y='4' fill='white' opacity='0.09'/%3E%3Crect width='1' height='1' x='2' y='5' fill='white' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 6px 6px;
  pointer-events: none;
  z-index: 0;
  animation: ditherDrift 8s linear infinite;
}

@keyframes ditherDrift {
  0% { background-position: 0px 0px; }
  100% { background-position: 24px 24px; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(232, 106, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  z-index: 2;
}

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

.hero h1 {
  color: var(--color-text-primary);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================================
   Industry Hero
   ============================================================================ */

.industry-hero {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text-primary);
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(232, 106, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.industry-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

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

.industry-hero-headline {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.industry-hero p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.industry-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-quaternary);
  margin-bottom: 1.5rem;
}

.industry-breadcrumb a {
  color: var(--color-text-tertiary);
}

.industry-breadcrumb a:hover {
  color: var(--color-text-primary);
}

.industry-breadcrumb span {
  color: var(--color-text-quaternary);
}

@media (max-width: 768px) {
  .industry-hero {
    padding: 6rem 0 3rem;
  }

  .industry-hero-headline {
    font-size: 2rem;
  }
}

/* ============================================================================
   Cards
   ============================================================================ */

.card {
  background: var(--color-bg-surface);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.card:hover {
  background: var(--color-bg-surface-hover);
  border-color: var(--color-border-strong);
}

/* ============================================================================
   Feature Grid
   ============================================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.feature-grid .card {
  border: none;
  border-radius: 0;
  background: var(--color-bg);
  padding: 2.25rem;
}

.feature-grid .card:hover {
  background: var(--color-bg-surface-hover);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(232, 106, 42, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary-light);
}

.feature-grid .card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-grid .card p {
  color: var(--color-text-tertiary);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================================
   Value Props
   ============================================================================ */

.value-prop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-prop:nth-child(even) {
  direction: rtl;
}

.value-prop:nth-child(even) > * {
  direction: ltr;
}

.value-prop-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.value-prop-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.value-prop-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.value-prop-image img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .value-prop,
  .value-prop:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
}

/* ============================================================================
   FAQ Accordion
   ============================================================================ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-align: left;
}

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

.faq-question svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--color-text-tertiary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

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

/* ============================================================================
   Scroll Reveal Animations
   ============================================================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================================
   Pricing Table
   ============================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    background: transparent;
    border: none;
    gap: 1rem;
  }

  .pricing-card {
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--color-border) !important;
  }
}

.pricing-card {
  background: var(--color-bg);
  padding: 2.5rem 2rem;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

.pricing-card:hover {
  background: var(--color-bg-surface-hover);
}

.pricing-card--featured {
  background: var(--color-bg-surface);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(232, 106, 42, 0.15);
  color: var(--color-primary-light);
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-tertiary);
}

.pricing-card .pricing-description {
  color: var(--color-text-tertiary);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

.pricing-feature-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F07D42'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================================================
   Form Styles
   ============================================================================ */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg-surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(232, 106, 42, 0.15);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-quaternary);
}

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

.form-error {
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 0.25rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ============================================================================
   Sticky Mobile CTA Bar
   ============================================================================ */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar .btn {
  flex: 1;
  max-width: 320px;
}

@media (min-width: 1025px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* ============================================================================
   Steps Grid
   ============================================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  counter-reset: step-counter;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.step-card {
  text-align: left;
  position: relative;
  background: var(--color-bg);
  padding: 2.25rem 2rem;
  border-radius: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(232, 106, 42, 0.12);
  color: var(--color-primary-light);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--color-text-tertiary);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================================
   Dual Audience Split
   ============================================================================ */

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .audience-split {
    grid-template-columns: 1fr;
  }
}

.audience-split .card {
  padding: 2.5rem 2rem;
}

.audience-split .card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.audience-split .card p {
  color: var(--color-text-tertiary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================================================
   Trust Bar
   ============================================================================ */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.trust-bar img {
  height: 1.75rem;
  width: auto;
  opacity: 0.3;
  filter: grayscale(100%) brightness(3);
  transition: all 0.2s ease;
}

.trust-bar img:hover {
  opacity: 0.6;
}

.trust-bar-label {
  width: 100%;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-quaternary);
  margin-bottom: 0.5rem;
}

/* ============================================================================
   Stats Row
   ============================================================================ */

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

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  margin-top: 0.25rem;
}

.stats-row--light .stat-number {
  color: var(--color-text-primary);
}

.stats-row--light .stat-label {
  color: var(--color-text-tertiary);
}

/* ============================================================================
   Badge
   ============================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.badge-primary {
  background: rgba(232, 106, 42, 0.1);
  color: var(--color-primary-light);
  border: 1px solid rgba(232, 106, 42, 0.2);
}

.badge-secondary {
  background: rgba(245, 166, 35, 0.1);
  color: var(--color-secondary-light);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

/* ============================================================================
   Check List
   ============================================================================ */

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.check-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.1875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F07D42'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================================================
   Testimonial Card
   ============================================================================ */

.testimonial-card {
  background: var(--color-bg-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

/* ============================================================================
   Section Header
   ============================================================================ */

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-tertiary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================================
   Legal Pages
   ============================================================================ */

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

/* ============================================================================
   Industry Grid
   ============================================================================ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.industry-grid .card {
  border: none;
  border-radius: 0;
  background: var(--color-bg);
}

.industry-grid .card:hover {
  background: var(--color-bg-surface-hover);
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   Hero Page-Load Animation
   ============================================================================ */

.hero-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 0.6s ease forwards;
}

.hero-animate:nth-child(2) {
  animation-delay: 0.1s;
}

.hero-animate:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-animate:nth-child(4) {
  animation-delay: 0.3s;
}

.hero-animate:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   Transparent Header (body class variant — for hero pages)
   ============================================================================ */

body.hero-transparent-header {
  padding-top: 0;
}

body.hero-transparent-header .hero {
  padding-top: 10rem;
}

@media (max-width: 768px) {
  body.hero-transparent-header .hero {
    padding-top: 8rem;
  }
}
