/* ==========================================================================
   CLUTCH CAMPAIGNS - Bold Redesign
   Dark, energetic, scrappy underdog aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Dark Mode Default */
  --background: #0a0a0a;
  --background-secondary: #111111;
  --foreground: #ffffff;
  --foreground-muted: #a1a1a1;

  /* Primary: Electric Coral/Orange - punchy, energetic */
  --primary: #ff6b35;
  --primary-hover: #ff8c5a;
  --primary-glow: rgba(255, 107, 53, 0.4);

  /* Secondary: Electric Cyan - tech, modern */
  --secondary: #00d4ff;
  --secondary-hover: #33ddff;
  --secondary-glow: rgba(0, 212, 255, 0.3);

  /* Accent: Electric Lime - energy, action */
  --accent: #adff2f;
  --accent-glow: rgba(173, 255, 47, 0.3);

  /* Neutrals */
  --card: #161616;
  --card-hover: #1a1a1a;
  --border: #2a2a2a;
  --border-light: #333333;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing & Sizing */
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --container-max: 1400px;
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  --grid-gap: 32px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

::selection {
  background-color: var(--primary);
  color: var(--background);
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--background);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.section {
  padding: var(--section-padding-mobile) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-padding) 0;
  }
}

.section--alt {
  background-color: var(--background-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn--ghost {
  background: transparent;
  color: var(--foreground);
  border-color: transparent;
  padding: 0.75rem 1rem;
}

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

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, var(--border-light) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  color: var(--background);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.card__text {
  font-size: 1rem;
  color: var(--foreground-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .header__container {
    height: 100px;
  }
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header__logo {
    font-size: 1.5rem;
  }
}

.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  color: var(--background);
  font-weight: 800;
  font-size: 1.25rem;
}

.header__logo:hover {
  color: var(--primary);
}

.header__logo:hover .header__logo-mark {
  box-shadow: 0 0 20px var(--primary-glow);
}

.header__nav {
  display: none;
}

@media (min-width: 900px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  gap: 0.5rem;
}

.header__nav-link {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground-muted);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.header__nav-link:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .header__actions {
    display: flex;
  }
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.header__phone svg {
  color: var(--primary);
}

.header__phone:hover {
  color: var(--primary);
}

.header__cta {
  display: inline-flex;
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

@media (min-width: 900px) {
  .header__menu-toggle {
    display: none;
  }
}

.header__menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: var(--foreground);
  transition: background-color var(--transition-fast);
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--foreground);
  transition: all var(--transition-base);
}

.header__menu-icon::before {
  top: -6px;
}

.header__menu-icon::after {
  bottom: -6px;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon {
  background-color: transparent;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.header__nav.mobile-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.header__nav.mobile-open .header__nav-list {
  flex-direction: column;
  gap: 0;
}

.header__nav.mobile-open .header__nav-link {
  display: block;
  padding: 1rem;
  border-radius: var(--radius);
}

.header__nav.mobile-open .header__nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Hero Section - COMPLETELY REDESIGNED
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--background);
}

/* Gradient orbs */
.hero__background::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero__background::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* Grid pattern overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero__container {
    padding-top: 140px;
  }
}

.hero__content {
  width: 100%;
  max-width: 1000px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter Effect */
.hero__typewriter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 2rem;
  min-height: 2.5rem;
}

.hero__typewriter-prefix {
  color: var(--foreground-muted);
}

.hero__typewriter-text {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.hero__typewriter-cursor {
  color: var(--primary);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: -2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--foreground-muted);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    align-items: center;
  }
}

/* Stats Bar */
.stats-bar {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-bar__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar__container {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-bar__label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground-muted);
  letter-spacing: -0.01em;
}

.stats-bar__divider {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-light);
}

@media (min-width: 768px) {
  .stats-bar__divider {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Problem Section
   -------------------------------------------------------------------------- */
.problem__grid {
  display: grid;
  gap: var(--grid-gap);
}

@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem__card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.problem__card .card__icon {
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground-muted);
}

.problem__transition {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 4rem;
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  gap: var(--grid-gap);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services__cta {
  text-align: center;
  margin-top: 4rem;
}

.services__cta p {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.process__timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--border));
}

.process__step:last-child::before {
  display: none;
}

.process__step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--background);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px var(--primary-glow);
}

.process__step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.process__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.875rem;
  background: var(--accent);
  color: var(--background);
  border-radius: 9999px;
}

.process__step-text {
  color: var(--foreground-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   Why Clutch Section (Comparison)
   -------------------------------------------------------------------------- */
.comparison {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}

.comparison__header {
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
}

.comparison__header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.comparison__header--them {
  background: var(--background);
  color: var(--foreground-muted);
}

.comparison__header--us {
  background: var(--primary);
  color: var(--background);
}

.comparison__row {
  display: contents;
}

.comparison__cell {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 1rem;
}

.comparison__cell--them {
  color: var(--foreground-muted);
  border-right: 1px solid var(--border);
  background: var(--background);
}

.comparison__cell--us {
  color: var(--foreground);
  font-weight: 500;
  background: rgba(255, 107, 53, 0.05);
}

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

  .comparison__header--them {
    border-bottom: 1px solid var(--border);
  }

  .comparison__row {
    display: block;
  }

  .comparison__cell {
    display: block;
    border-right: none;
  }

  .comparison__cell--us {
    border-top: none;
  }
}

.why-clutch__quote {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.why-clutch__quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Trust Section
   -------------------------------------------------------------------------- */
.trust__content {
  display: grid;
  gap: var(--grid-gap);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust__content {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.trust__methodology,
.trust__promise {
  display: flex;
  flex-direction: column;
}

.trust__methodology {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground-muted);
}

.trust__promise {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust__promise-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.trust__promise-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust__promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--foreground-muted);
  font-size: 1.0625rem;
}

.trust__promise-list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

/* Press Placeholder */
.trust__press {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  opacity: 0.6;
}

.trust__press-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

.trust__press-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust__press-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--foreground-muted);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item:hover {
  border-color: var(--border-light);
}

.faq__item[open] {
  border-color: var(--primary);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--foreground-muted);
  transition: all var(--transition-base);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  padding: 0 2rem 2rem;
}

.faq__answer p {
  color: var(--foreground-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact__wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.contact__form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group:last-of-type {
  margin-bottom: 2rem;
}

.form__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form__required {
  color: var(--primary);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: all var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--foreground-muted);
  opacity: 0.6;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #ff4444;
}

.form__error {
  display: block;
  font-size: 0.875rem;
  color: #ff4444;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
}

.contact__alt {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
}

.contact__alt p {
  color: var(--foreground-muted);
  margin-bottom: 0.5rem;
}

.contact__alt-methods a {
  font-weight: 600;
  color: var(--primary);
}

.contact__alt-methods a:hover {
  color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--background-secondary);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Gradient accent line at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

/* Subtle glow orb */
.footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.footer__container {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer__brand {
    grid-row: 1;
    grid-column: 1;
  }

  .footer__nav {
    grid-row: 1;
    grid-column: 2;
  }

  .footer__social {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  .footer__bottom {
    grid-row: 2;
    grid-column: 1 / -1;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
}

.footer__logo:hover {
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}

.footer__tagline {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-top: 1rem;
  font-style: italic;
}

.footer__nav-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__nav-list a {
  font-size: 1rem;
  color: var(--foreground-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer__nav-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.footer__nav-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__nav-list a:hover::before {
  width: 100%;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground-muted);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  border-color: var(--primary);
  color: var(--background);
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.footer__copyright span {
  color: var(--primary);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in:nth-child(1) { transition-delay: 0ms; }
.fade-in:nth-child(2) { transition-delay: 100ms; }
.fade-in:nth-child(3) { transition-delay: 200ms; }
.fade-in:nth-child(4) { transition-delay: 300ms; }
.fade-in:nth-child(5) { transition-delay: 400ms; }
.fade-in:nth-child(6) { transition-delay: 500ms; }

/* --------------------------------------------------------------------------
   Form Success State
   -------------------------------------------------------------------------- */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: var(--background);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success__text {
  color: var(--foreground-muted);
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   Contact Info Box
   -------------------------------------------------------------------------- */
.contact__info-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem auto 0;
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius);
  color: var(--foreground);
}

.contact__info-box svg {
  flex-shrink: 0;
  color: var(--primary);
}

.contact__info-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--foreground-muted);
  text-align: left;
}

/* --------------------------------------------------------------------------
   Form Error Message
   -------------------------------------------------------------------------- */
.form-error-message {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: var(--radius);
  color: #ff6b6b;
}

.form-error-message p {
  margin: 0;
  font-size: 0.9375rem;
}

.form-error-message a {
  color: var(--primary);
  font-weight: 600;
}

.form-error-message a:hover {
  color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   Form Checkbox (10DLC Consent)
   -------------------------------------------------------------------------- */
.form__group--checkbox {
  margin-top: 0.5rem;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form__checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  background: var(--background);
  transition: all var(--transition-fast);
  position: relative;
}

.form__checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--background);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform var(--transition-fast);
}

.form__checkbox:checked + .form__checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.form__checkbox:checked + .form__checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.form__checkbox:focus + .form__checkbox-custom {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form__checkbox.error + .form__checkbox-custom {
  border-color: #ff4444;
}

.form__checkbox-text {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  line-height: 1.6;
}

.form__checkbox-text .form__required {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   Page Loader
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Scroll Progress Indicator
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9998;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --------------------------------------------------------------------------
   Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--background);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* --------------------------------------------------------------------------
   Enhanced Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar__item {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.stats-bar__icon {
  color: var(--primary);
  flex-shrink: 0;
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

.stats-bar__label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-muted);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Social Proof Banner
   -------------------------------------------------------------------------- */
.social-proof-banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.social-proof-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.social-proof-banner__quote {
  max-width: 700px;
}

.social-proof-banner__quote-icon {
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.social-proof-banner__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.social-proof-banner__quote cite {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-style: normal;
  color: var(--foreground-muted);
}

.social-proof-banner__stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--foreground-muted);
}

.social-proof-banner__stats strong {
  color: var(--primary);
}

.social-proof-banner__divider {
  color: var(--border-light);
}

/* --------------------------------------------------------------------------
   Section Dividers
   -------------------------------------------------------------------------- */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section:first-of-type::before {
  display: none;
}

/* --------------------------------------------------------------------------
   Card Tilt Effect (3D)
   -------------------------------------------------------------------------- */
.card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card.tilt {
  transition: transform 0.1s ease-out;
}

/* Enhanced card glow on hover */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-glow), transparent, var(--secondary-glow));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(20px);
}

.card:hover::after {
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Mobile Menu Dark Theme Enhancement
   -------------------------------------------------------------------------- */
.header__nav.mobile-open {
  background: var(--background);
  border: 1px solid var(--border);
}

.header__nav.mobile-open .header__nav-link {
  color: var(--foreground);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.header__nav.mobile-open .header__nav-link:last-child {
  border-bottom: none;
}

.header__nav.mobile-open .header__nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

/* Mobile CTA in menu */
.header__nav.mobile-open .header__mobile-cta {
  display: block;
  margin: 1rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Enhanced Button Styles
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* --------------------------------------------------------------------------
   Smooth Reveal Animation
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.fade-in:nth-child(1) { transition-delay: 0ms; }
.fade-in:nth-child(2) { transition-delay: 100ms; }
.fade-in:nth-child(3) { transition-delay: 200ms; }
.fade-in:nth-child(4) { transition-delay: 300ms; }
.fade-in:nth-child(5) { transition-delay: 400ms; }
.fade-in:nth-child(6) { transition-delay: 500ms; }

/* --------------------------------------------------------------------------
   Cursor Glow Effect (Optional - added via JS)
   -------------------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
  filter: blur(40px);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .hero__background,
  .hero__grid,
  .btn,
  .footer__social {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 24pt 0;
    page-break-inside: avoid;
  }
}
