/* =========================================================
   FLOWBIT NETWORKS — style.css
   Tech-forward dark aesthetic. Bebas Neue + Inter + Instrument Serif.
   Every class matches index.html — safe to drop in.
   ========================================================= */

:root {
  /* Palette — Claude burnt orange on warm dark */
  --bg:            #0A0908;
  --bg-2:          #141210;
  --bg-3:          #1C1917;
  --bg-elevated:   #24201C;

  --fg:            #F5F1EA;
  --fg-2:          #A8A29A;
  --fg-3:          #6B6560;

  --accent:        #DA6B2F;      /* Burnt orange, vibrant, Claude family */
  --accent-2:      #F0885A;      /* Lighter highlight */
  --accent-deep:   #A84E1B;      /* Deep for shadows/depth */
  --accent-dim:    rgba(218, 107, 47, 0.15);
  --accent-glow:   rgba(218, 107, 47, 0.28);
  --accent-glow-strong: rgba(218, 107, 47, 0.5);

  --border:        rgba(245, 241, 234, 0.08);
  --border-2:      rgba(245, 241, 234, 0.14);
  --border-accent: rgba(218, 107, 47, 0.35);

  /* Type */
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:    'Instrument Serif', 'Georgia', serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;

  /* Rhythm */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --pad-section: clamp(4rem, 8vw, 8rem);
  --pad-x:       clamp(1.5rem, 5vw, 6rem);
}

/* =========================================================
   Reset + base
   ========================================================= */

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grid overlay — the tech texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,240,232,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,240,232,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
}

h1 em, h2 em, h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--accent-2);
  display: inline-block;
}

p { color: var(--fg-2); }

/* =========================================================
   Section eyebrow — pill style
   ========================================================= */

.section-eyebrow, .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  background: rgba(245, 240, 232, 0.02);
  margin-bottom: 1.5rem;
}

/* =========================================================
   NAV
   ========================================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad-x);
  background: rgba(10, 8, 6, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-transform: uppercase;
}

.nav-logo span { color: var(--accent); }

.nav-logo small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--fg-3);
  text-transform: uppercase;
  padding-left: 0.5rem;
  border-left: 1px solid var(--border-2);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-2);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--fg); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--fg);
  color: var(--bg);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--fg);
  transform: translateY(-1px);
}

/* =========================================================
   HERO — cinematic dark, animated ambient, cursor-reactive
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--pad-x) 4rem;
  overflow: hidden;
  z-index: 1;
  --cursor-x: 50%;
  --cursor-y: 50%;
}

/* ambient background container (holds orbs, flow lines, cursor spotlight) */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Ambient glowing orbs — slow drift + pulse */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orb-fade-in 2s ease-out forwards, orb-drift 40s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    var(--accent-glow-strong) 0%,
    var(--accent-glow) 25%,
    transparent 60%);
  animation-delay: 0.2s, 0s;
}

.hero-orb-2 {
  width: 30vw;
  height: 30vw;
  max-width: 500px;
  max-height: 500px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle,
    var(--accent-dim) 0%,
    transparent 60%);
  animation-delay: 0.6s, -12s;
  opacity: 0;
}

.hero-orb-3 {
  width: 25vw;
  height: 25vw;
  max-width: 400px;
  max-height: 400px;
  top: 20%;
  right: -5%;
  background: radial-gradient(circle,
    var(--accent-dim) 0%,
    transparent 60%);
  animation-delay: 0.9s, -20s;
  opacity: 0;
}

@keyframes orb-fade-in {
  to { opacity: 1; }
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3vw, -2vh) scale(1.08); }
  66%  { transform: translate(-2vw, 3vh) scale(0.95); }
  100% { transform: translate(1vw, -1vh) scale(1.05); }
}

.hero-orb-1 {
  animation: orb-fade-in 2s ease-out forwards, orb-drift-center 30s ease-in-out infinite alternate;
}

@keyframes orb-drift-center {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%      { transform: translateX(-50%) scale(1.12); opacity: 0.85; }
}

/* Flow lines — the "flow" signature */
.hero-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: flow-fade-in 3s ease-out 0.5s forwards;
}

@keyframes flow-fade-in {
  to { opacity: 1; }
}

.flow-path {
  fill: none;
  stroke: url(#flow-gradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: flow-move 12s linear infinite;
}

.flow-path-2 { animation-duration: 16s; animation-direction: reverse; opacity: 0.6; }
.flow-path-3 { animation-duration: 20s; opacity: 0.4; }

@keyframes flow-move {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -400; }
}

/* Bit particles traveling along flow paths */
.flow-bit {
  fill: var(--accent-2);
  filter: drop-shadow(0 0 6px var(--accent));
}

/* Cursor-reactive spotlight */
.hero-cursor-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 400px at var(--cursor-x) var(--cursor-y),
    rgba(218, 107, 47, 0.12),
    transparent 60%
  );
  pointer-events: none;
  transition: background 0.15s ease-out;
  mix-blend-mode: screen;
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Reveal-on-load animation utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.5s; }
.reveal-4 { animation-delay: 0.75s; }
.reveal-5 { animation-delay: 0.95s; }
.reveal-6 { animation-delay: 1.15s; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  margin: 1rem 0 2rem;
  max-width: 16ch;
  position: relative;
}

.hero h1 em {
  font-size: 1.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: em-glow 4s ease-in-out infinite;
}

@keyframes em-glow {
  0%, 100% { filter: drop-shadow(0 0 8px transparent); }
  50%      { filter: drop-shadow(0 0 24px var(--accent-glow)); }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Enhanced hero button glow */
.hero .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 241, 234, 0.35), transparent);
  transition: left 0.6s ease;
}

.hero .btn-primary:hover::before { left: 100%; }

.btn-primary, .btn-secondary {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
}

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

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(20, 17, 16, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-track {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}

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

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  padding: var(--pad-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}

.about-left h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--fg-2);
  font-weight: 300;
}

.about-right a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-accent);
  transition: all 0.2s ease;
}

.about-right a:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.services-header h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  margin: 1rem 0 1.5rem;
}

.services-header p {
  font-size: 1.05rem;
  color: var(--fg-2);
  font-weight: 300;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-pillar {
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-pillar:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.service-pillar:hover::before { opacity: 1; }

.pillar-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  margin-bottom: 1.5rem;
}

.service-pillar h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.service-pillar > p {
  font-size: 0.98rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.service-pillar ul {
  margin-bottom: 2rem;
}

.service-pillar ul li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-pillar ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-pillar ul li:last-child {
  border-bottom: 1px solid var(--border);
}

.pillar-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-accent);
  transition: all 0.2s ease;
}

.pillar-cta:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

/* =========================================================
   FEATURES
   ========================================================= */

.features-section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  margin: 1rem 0 1.5rem;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--fg-2);
  font-weight: 300;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

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

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
  font-weight: 300;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.how-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
}

.how-header p {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
  z-index: 0;
}

.step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
  font-weight: 300;
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  margin: 1rem 0 1.5rem;
}

.pricing-header p {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  background: linear-gradient(180deg, var(--accent) 0%, #E85A1F 100%);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -20px var(--accent-glow);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-2);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.pricing-card.featured .plan-name { color: var(--bg); }

.plan-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.pricing-card.featured .plan-price { color: var(--bg); }

.plan-period {
  font-size: 0.75rem;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

.pricing-card.featured .plan-period { color: rgba(10, 8, 6, 0.6); }

.plan-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 300;
}

.plan-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card.featured .plan-features li {
  color: rgba(10, 8, 6, 0.85);
  border-top-color: rgba(10, 8, 6, 0.15);
}

.pricing-card.featured .plan-features li::before {
  background: var(--bg);
}

.plan-features li:last-child { border-bottom: 1px solid var(--border); }
.pricing-card.featured .plan-features li:last-child {
  border-bottom-color: rgba(10, 8, 6, 0.15);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.plan-cta-light {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--fg);
}

.plan-cta-light:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.plan-cta-dark {
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
}

.plan-cta-dark:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.pricing-subhead {
  text-align: center;
  max-width: 780px;
  margin: 6rem auto 3rem;
}

.pricing-subhead h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.pricing-subhead h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--accent-2);
}

/* =========================================================
   TRUST / TESTIMONIALS
   ========================================================= */

.trust-section {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
  text-align: center;
}

.trust-section h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  max-width: 900px;
  margin: 1rem auto 3.5rem;
  line-height: 1.05;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.author-name {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.75rem;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: var(--pad-section) var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 65%);
  filter: blur(60px);
  z-index: -1;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--fg-2);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--fg);
  transition: all 0.25s ease;
  border: 1px solid var(--accent);
  box-shadow: 0 12px 30px -10px var(--accent-glow);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px var(--accent);
  background: var(--accent-2);
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding: var(--pad-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}

.contact-left h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 1rem 0 1.5rem;
}

.contact-left > p {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 400;
}

.contact-info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.contact-form {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-3);
}

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

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A8A29A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--fg);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px var(--accent-glow);
}

.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 5rem var(--pad-x) 3rem;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--fg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-brand .logo span { color: var(--accent); }

.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 340px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--fg-2);
  transition: color 0.2s ease;
  font-weight: 400;
}

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

.footer-bottom {
  padding: 1.5rem var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--fg-3);
  font-weight: 400;
}

.footer-bottom span { color: var(--fg-2); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .about-section, .contact-section { grid-template-columns: 1fr; }
  .how-header { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .testimonials { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .features-grid, .steps { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .hero-stats { padding: 1.25rem; gap: 1rem; }
  .stat-divider { display: none; }
  .service-pillar, .feature-card, .pricing-card, .testimonial { padding: 2rem 1.5rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  nav { padding: 1rem var(--pad-x); }
  .nav-cta { padding: 0.6rem 1rem; font-size: 0.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Lighten hero animations on mobile for performance */
  .hero-orb-2, .hero-orb-3 { display: none; }
  .hero-flow { opacity: 0 !important; }
  .hero-cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}