/* ── FLAT BLACK BASE + SUBTLE GRADIENT ACCENTS ── */
body { background: transparent; }

/* ── FIXED VIDEO BACKGROUND LAYER ── */
#bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 80%;
  min-height: 80%;
  width: auto;
  height: auto;
  object-fit: cover;
  will-change: transform;
  opacity: 0.4;
}

section { background: transparent; }

/* Soft radial accent glows — purely decorative */
#why::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#ai-agents::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 0;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#pricing::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
section { position: relative; }

/* ═══════════════════════════════════════════
   3D CARD DEPTH + GRAINY GRADIENT EFFECTS
   ═══════════════════════════════════════════ */

/* Base 3D depth — applied to all cards */
.solution-card,
.industry-card,
.carousel-card,
.build-card,
.retainer-card,
.call-card,
.discovery-card,
.faq-item,
.xform-before,
.xform-after,
.timeline-visual,
.agent-terminal {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 1px 3px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.35),
    0 24px 48px rgba(0,0,0,0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.25s,
    background 0.25s;
}

/* Hover lift for interactive cards */
.solution-card:hover,
.build-card:hover,
.retainer-card:hover {
  transform: translateY(-5px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 2px 4px rgba(0,0,0,0.4),
    0 16px 40px rgba(0,0,0,0.45),
    0 32px 64px rgba(0,0,0,0.25),
    0 0 0 1px rgba(224,112,32,0.12) !important;
}

/* ── GRAINY GRADIENT CARDS ── */
/* Noise texture applied via ::before pseudo-element */
.grainy {
  position: relative;
  overflow: hidden;
}
.grainy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.grainy > * {
  position: relative;
  z-index: 1;
}

/* Orange-tinted grainy gradient for featured cards */
.grainy-orange {
  background: linear-gradient(135deg, #1a0d05 0%, #2e1608 60%, #1a0d05 100%) !important;
  border-color: rgba(224,112,32,0.3) !important;
}
.grainy-orange::before {
  opacity: 0.07;
}

/* Subtle cool-dark grainy for neutral cards */
.grainy-dark {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0e0e0e 100%) !important;
}

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; background: #080808; }

:root {
  --bg:          #080808;
  --surface:     #111111;
  --surface2:    #181818;
  --surface3:    #242424;
  --border:      #282828;
  --border-mid:  #333333;
  --primary:     #E07020;
  --primary-dim: #A04E14;
  --primary-glow:rgba(224,112,32,0.18);
  --primary-pale:rgba(224,112,32,0.08);
  --text:        #F0EAE0;
  --text-2:      #B0A898;
  --text-3:      #706860;
  --nav-h:       64px;
  --radius:      8px;
}

body {
  background: transparent;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── TYPOGRAPHY HELPERS ── */
.text-gradient {
  background: linear-gradient(135deg, #F0EAE0 0%, #E07020 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-tag, .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(224,112,32,0.3);
  background: rgba(224,112,32,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── SECTION LAYOUT ── */
section { padding: 100px 48px; }
.section-inner { max-width: 960px; margin: 0 auto; }

.section-title {
  font-family: 'VT323', monospace;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'VT323', monospace;
  font-size: 28px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.nav-logo span { color: var(--primary); }
.nav-logo:hover { color: var(--primary); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--primary) !important;
  color: #0A0A0A !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
  box-shadow: 0 0 20px rgba(224,112,32,0.25);
}
.nav-cta:hover {
  background: #F08030 !important;
  box-shadow: 0 0 32px rgba(224,112,32,0.45) !important;
  transform: translateY(-1px);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #0A0A0A;
  border: none;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 24px rgba(224,112,32,0.3);
}
.btn-primary:hover { background: #F08030; transform: translateY(-2px); box-shadow: 0 0 40px rgba(224,112,32,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(224,112,32,0.5); background: rgba(224,112,32,0.08); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-3); background: var(--surface); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(224,112,32,0.4);
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover { background: var(--primary-pale); border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  overflow: hidden;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-logo {
  display: block;
  margin: 0 auto 28px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(224,112,32,0.3);
  background: rgba(224,112,32,0.08);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-heading {
  font-family: 'VT323', monospace;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.0;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.hero-heading em {
  color: var(--primary);
  font-style: normal;
  text-shadow: 0 0 40px rgba(224,112,32,0.4);
}

#typed-punct { color: var(--primary); transition: opacity 0.15s; }

.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: var(--primary);
  vertical-align: -0.05em;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-tagline {
  font-size: 18px;
  color: var(--text-2);
  max-width: 600px;
  margin: 24px auto 32px;
  line-height: 1.75;
}
.hero-tagline strong { color: var(--text); font-weight: 600; }

.hero-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-chip {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s;
}
.hero-chip:hover { border-color: rgba(224,112,32,0.5); background: rgba(224,112,32,0.1); }
.hero-chip:hover { border-color: var(--primary); color: var(--primary); }

/* ── HERO ACTIONS ── */
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.why-layout > * { min-width: 0; }

.why-heading {
  font-family: 'VT323', monospace;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.why-heading span { color: var(--primary); }

.why-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
}
.why-desc strong { color: var(--text); font-weight: 600; }

/* Carousel */
.carousel-wrap { position: relative; overflow: hidden; width: 100%; min-width: 0; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 8px;
}

.carousel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.carousel-card:hover { border-color: var(--border-mid); }

.carousel-title {
  font-family: 'VT323', monospace;
  font-size: 36px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.carousel-desc { font-size: 17px; color: var(--text-2); line-height: 1.7; }

.carousel-progress { width: 100%; height: 2px; background: var(--border); margin: 16px 0 0; border-radius: 1px; overflow: hidden; }
.carousel-progress-bar { height: 100%; background: var(--primary); width: 0%; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }

.carousel-btn {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.carousel-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }

.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-mid); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.carousel-dot.active { background: var(--primary); transform: scale(1.3); }

/* Stats */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 40px 0;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 56px; }

.stat-number {
  font-family: 'VT323', monospace;
  font-size: 52px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(224,112,32,0.3);
}

.stat-label { font-size: 14px; color: var(--text-2); letter-spacing: 0.03em; }

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

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

/* ── N8N-STYLE INDUSTRY CARDS ── */
.industries-grid-n8n {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card-n8n {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 4px 16px rgba(0,0,0,0.4),
    0 12px 40px rgba(0,0,0,0.25);
}

.industry-card-n8n:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 8px 24px rgba(0,0,0,0.5),
    0 20px 56px rgba(0,0,0,0.3),
    0 0 0 1px rgba(224,112,32,0.1);
}

.incard-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface2);
}

.incard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.4s ease;
}

.industry-card-n8n:hover .incard-img img {
  opacity: 1;
  transform: scale(1.04);
}

.incard-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.incard-name {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.incard-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.industry-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.industry-card:hover { background: var(--surface2); }

.industry-img {
  width: 100%;
  height: 150px;
  background: var(--surface2);
  overflow: hidden;
  flex-shrink: 0;
}
.industry-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.2s; }
.industry-card:hover .industry-img img { opacity: 1; }

.industry-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.industry-name {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.industry-desc { font-size: 15px; color: var(--text-2); line-height: 1.65; flex: 1; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

.itag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  border: 1px solid var(--border-mid);
  background: var(--surface2);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; }

.process-step-top {
  display: flex;
  align-items: center;
  width: 100%;
}

.step-line-left, .step-line-right { flex: 1; height: 1px; background: var(--border-mid); }
.step-line-left.invisible, .step-line-right.invisible { background: transparent; }

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step-circle.pulse { animation: circlePulse 1.4s ease-in-out; }

@keyframes circlePulse {
  0%   { background: var(--surface);  border-color: var(--border-mid);  color: var(--primary); box-shadow: 0 0 0 0   rgba(224,112,32,0.5); }
  40%  { background: var(--primary);  border-color: var(--primary);     color: #0A0A0A;        box-shadow: 0 0 0 12px rgba(224,112,32,0); }
  100% { background: var(--surface);  border-color: var(--border-mid);  color: var(--primary); box-shadow: 0 0 0 0   rgba(224,112,32,0); }
}

.step-body { text-align: center; padding-top: 20px; padding-inline: 16px; }

.step-title {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.step-desc { font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* ── SOLUTIONS DIVIDER ── */
.solutions-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0 40px;
}
.solutions-divider::before,
.solutions-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.solutions-divider-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.solution-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.solution-card:hover {
  border-color: rgba(224,112,32,0.5);
  background: var(--surface2);
  box-shadow: 0 0 0 1px rgba(224,112,32,0.1), 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.solution-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.solution-type.web { color: var(--primary); border: 1px solid rgba(224,112,32,0.3); background: rgba(224,112,32,0.08); }
.solution-type.desktop { color: var(--text-3); border: 1px solid var(--border-mid); background: var(--surface2); }

.solution-name { font-family: 'VT323', monospace; font-size: 26px; color: var(--text); letter-spacing: 1px; }

.solution-desc { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ── FAQ ── */
#faq {
  text-align: center;
}

.faq-title { margin-bottom: 48px; }

.faq-list { max-width: 720px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-mid); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); border-bottom: 1px solid var(--border); }

.faq-icon {
  font-size: 22px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}
.faq-question:hover .faq-icon { color: var(--primary); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 24px; }
.faq-answer.open { max-height: 300px; padding: 20px 24px; }
.faq-answer p { font-size: 16px; color: var(--text-2); line-height: 1.8; }

.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  margin-top: 48px;
}
.pricing-label:first-of-type { margin-top: 48px; }

.discovery-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 8px;
}

.discovery-info h3 {
  font-family: 'VT323', monospace;
  font-size: 28px;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.discovery-info p { font-size: 16px; color: var(--text-2); line-height: 1.6; }

.price-tag { font-family: 'VT323', monospace; font-size: 48px; color: var(--primary); line-height: 1; letter-spacing: 1px; text-align: right; }
.price-note { font-size: 13px; color: var(--text-3); text-align: right; margin-top: 2px; letter-spacing: 0.05em; }

.scripting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.scripting-card:hover { border-color: var(--border-mid); }

.scripting-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.scripting-title { font-family: 'VT323', monospace; font-size: 32px; color: var(--text); letter-spacing: 1px; margin-bottom: 10px; }
.scripting-desc { font-size: 16px; color: var(--text-2); line-height: 1.65; }
.scripting-right { text-align: right; flex-shrink: 0; }
.scripting-price { font-family: 'VT323', monospace; font-size: 36px; color: var(--primary); letter-spacing: 1px; }
.scripting-timeline { font-size: 13px; color: var(--text-3); margin-top: 4px; display: flex; align-items: center; gap: 6px; justify-content: flex-end; }

.build-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 8px; }

.build-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.build-card:hover { border-color: rgba(224,112,32,0.4); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.build-card.tier-2 { border-color: rgba(224,112,32,0.25); }
.build-card.tier-2:hover { border-color: rgba(224,112,32,0.6); }

.build-type { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.build-range { font-family: 'VT323', monospace; font-size: 34px; color: var(--primary); letter-spacing: 1px; }
.build-timeline { font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }

.retainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }

.retainer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.retainer-card:hover { border-color: var(--border-mid); transform: translateY(-2px); }
.retainer-card.tier-3 { border-color: rgba(224,112,32,0.2); }

.retainer-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.retainer-price { font-family: 'VT323', monospace; font-size: 48px; color: var(--primary); line-height: 1; }
.retainer-period { font-size: 14px; color: var(--text-3); margin-top: -4px; }

.retainer-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.retainer-features li { font-size: 14px; color: var(--text-2); padding-left: 18px; position: relative; }
.retainer-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-size: 12px; }

.payment-note {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 40px;
  align-items: flex-start;
}
.payment-note-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; padding-top: 2px; }
.payment-note-text { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.payment-note-text strong { color: var(--text); font-weight: 600; }

/* ── CONTACT ── */
#contact {
  position: relative;
}

.contact-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-sub { font-size: 18px; color: var(--text-2); margin-bottom: 56px; line-height: 1.6; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224,112,32,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.contact-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
}
.contact-divider::before, .contact-divider::after { content: ''; width: 1px; flex: 1; background: var(--border); }
.contact-divider span { font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }

.call-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-title { font-family: 'VT323', monospace; font-size: 32px; color: var(--text); letter-spacing: 1px; }
.call-desc { font-size: 16px; color: var(--text-2); line-height: 1.65; }

.form-status { font-size: 14px; min-height: 20px; margin-top: 4px; }
.form-status--success { color: #4CAF50; }
.form-status--error { color: #E05050; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  position: relative;
  z-index: 1;
}

.footer-inner-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.footer-copy span { color: var(--primary); }

.spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.spotlight-heading {
  font-family: 'VT323', monospace;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.spotlight-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.spotlight-features li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  align-items: flex-start;
}
.spotlight-features li strong { color: var(--text); font-weight: 600; }

.sf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(224,112,32,0.5);
}

/* Agent terminal visual */
.agent-terminal {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.agent-terminal-bar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.atb-dot { width: 12px; height: 12px; border-radius: 50%; }
.atb-dot.red    { background: #E05050; }
.atb-dot.yellow { background: #E0A030; }
.atb-dot.green  { background: #50C050; }
.atb-title { font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; margin-left: 8px; font-weight: 500; }

.agent-flow {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.agent-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.2s;
}
.agent-node:hover { border-color: var(--border-mid); }
.an-trigger { border-color: rgba(224,112,32,0.3); }
.an-output  { border-color: rgba(80,192,80,0.2); }

.an-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-mid);
  flex-shrink: 0;
}
.an-pulse.active {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(224,112,32,0.6);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.an-label { font-size: 14px; color: var(--text-2); font-weight: 500; }

.agent-connector {
  width: 1px;
  height: 16px;
  background: var(--border-mid);
  margin: 0 auto;
  position: relative;
  left: -1px;
}

.agent-log {
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,0.2);
}

.log-line { display: flex; gap: 12px; }
.log-time { font-family: 'VT323', monospace; font-size: 14px; color: var(--text-3); flex-shrink: 0; }
.log-text  { font-size: 13px; font-weight: 500; }
.log-ok    { color: #50C050; }
.log-info  { color: var(--text-3); }

.log-blink .log-info {
  animation: textBlink 1.2s step-end infinite;
}
@keyframes textBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── BA COL / HEADING / LIST BASE STYLES ── */
.ba-col {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.ba-heading {
  font-family: 'VT323', monospace;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.ba-before .ba-heading { color: var(--text-2); }
.ba-after  .ba-heading { color: var(--primary); }

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-list li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
  text-align: left;
  font-weight: 400;
}

.ba-list li::before { display: none; }

.ba-before .ba-list li::after {
  content: '✕';
  position: absolute;
  left: 0;
  top: 1px;
  color: #E05050;
  font-size: 12px;
  font-weight: 700;
}

.ba-after .ba-list li::after {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #50C050;
  font-size: 13px;
  font-weight: 700;
}

.ba-after .ba-list li { color: var(--text); }

/* ── BEFORE/AFTER SPLIT (hero) ── */
.ba-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 36px;
}

.ba-split .ba-before {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.ba-split .ba-after {
  background: rgba(224,112,32,0.06);
  border: 1px solid rgba(224,112,32,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.ba-split .ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 22px;
  color: var(--primary);
  background: transparent;
  border: none;
}

/* Separated variant — two independent cards with gap */
.ba-separated {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.ba-separated .ba-before,
.ba-separated .ba-after {
  flex: 1;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  background: var(--surface);
  min-width: 0;
}

.ba-separated .ba-after {
  border-color: rgba(224,112,32,0.25);
  background: rgba(224,112,32,0.05);
}

.ba-separated .ba-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 22px;
  flex-shrink: 0;
}

.term-spinner::after {
  content: '|';
  animation: termSpin 0.7s steps(4, end) infinite;
}
@keyframes termSpin {
  0%   { content: '|';  }
  25%  { content: '/';  }
  50%  { content: '-';  }
  75%  { content: '\\'; }
}

/* ── SPOTLIGHT REVERSE (visual left, text right) ── */
.spotlight-reverse { direction: rtl; }
.spotlight-reverse > * { direction: ltr; }

/* ── XFORM VISUAL ── */
.xform-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xform-before, .xform-after {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.xform-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.xform-after { background: rgba(224,112,32,0.04); border-color: rgba(224,112,32,0.2); }
.xform-after .xform-header { background: rgba(224,112,32,0.08); border-bottom-color: rgba(224,112,32,0.15); }

.xform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-mid);
}
.xform-dot.red    { background: #E05050; }
.xform-dot.yellow { background: #E0A030; }
.xform-dot.green  { background: #50C050; }
.xform-dot.pulse-dot {
  background: #50C050;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(80,192,80,0.5);
}

.xform-header-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; margin-left: 6px; font-weight: 500; }

.file-list { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  font-family: 'VT323', monospace;
  letter-spacing: 0.5px;
  font-size: 16px;
}
.file-item.muted { opacity: 0.4; }

.file-ext {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.file-ext.xlsx { background: rgba(80,160,80,0.15); color: #50C050; border: 1px solid rgba(80,160,80,0.2); }
.file-ext.txt  { background: var(--surface2); color: var(--text-3); border: 1px solid var(--border); }

.xform-arrow-down {
  text-align: center;
  padding: 4px;
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 2px;
}

.ap-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin: 0;
  padding: 16px 20px;
  gap: 10px;
}

.ap-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ap-stat-card.ap-highlight { border-color: rgba(224,112,32,0.3); background: rgba(224,112,32,0.05); }

.ap-stat-val { font-family: 'VT323', monospace; font-size: 28px; color: var(--primary); line-height: 1; }
.ap-stat-lbl { font-size: 12px; color: var(--text-3); font-weight: 500; letter-spacing: 0.04em; }

/* ── TIMELINE VISUAL ── */
.timeline-visual {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.tl-line {
  width: 1px;
  height: 28px;
  background: var(--border-mid);
  margin-left: 15px;
}

.tl-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tl-check {
  background: rgba(80,192,80,0.12);
  border: 1px solid rgba(80,192,80,0.3);
  color: #50C050;
  font-size: 14px;
}

.tl-pulse-marker {
  background: rgba(224,112,32,0.1);
  border: 1px solid rgba(224,112,32,0.5);
  position: relative;
}
.tl-pulse-marker::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  box-shadow: 0 0 10px rgba(224,112,32,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.tl-empty {
  background: var(--surface);
  border: 1px solid var(--border-mid);
}

.tl-content { flex: 1; padding-top: 4px; }

.tl-week {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tl-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(224,112,32,0.1);
  border: 1px solid rgba(224,112,32,0.3);
  padding: 2px 10px;
  border-radius: 100px;
}

.tl-tasks { display: flex; flex-direction: column; gap: 6px; }

.tl-task {
  font-size: 14px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  position: relative;
}
.tl-task::before { content: '—'; position: absolute; left: 0; color: var(--border-mid); font-size: 12px; }
.tl-task.done  { color: var(--text-2); }
.tl-task.done::before  { content: '✓'; color: #50C050; font-size: 11px; }
.tl-task.active { color: var(--text); }
.tl-task.active::before { content: '●'; color: var(--primary); font-size: 8px; top: 4px; }

/* ── BEFORE/AFTER SPLIT (hero) ── */
.before-after-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 780px;
  margin: 0 auto 36px;
}

.before-after-split .ba-before {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.before-after-split .ba-after {
  background: rgba(224,112,32,0.06);
  border: 1px solid rgba(224,112,32,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.before-after-split .ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 22px;
  color: var(--primary);
  background: transparent;
  border: none;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 820px) {
  .spotlight-reverse { direction: ltr; }
  .ap-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE 820px ── */
@media (max-width: 820px) {
  section { padding: 72px 24px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .section-title { font-size: clamp(32px, 7vw, 48px); }

  .hero { padding: calc(var(--nav-h) + 60px) 20px 60px; }
  .hero-heading { font-size: 28px; white-space: normal; min-height: 2.2em; }
  .before-after-split { grid-template-columns: 1fr; }
  .before-after-split .ba-arrow { display: none; }
  .hero-tagline { font-size: 16px; }
  
  .spotlight-layout { grid-template-columns: 1fr; gap: 40px; }

  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { flex-wrap: wrap; padding: 32px 24px; }
  .stat-item { padding: 0 28px; }
  .stat-divider { width: 60px; height: 1px; }

  .industries-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid-n8n { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .build-grid { grid-template-columns: 1fr; }
  .retainer-grid { grid-template-columns: 1fr; }

  .process-track { flex-wrap: wrap; gap: 28px; }
  .process-step { flex: 0 0 calc(50% - 14px); }
  .step-line-left, .step-line-right { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-divider { flex-direction: row; min-height: auto; }
  .contact-divider::before, .contact-divider::after { width: auto; height: 1px; flex: 1; }
  .form-row { grid-template-columns: 1fr; }
  .scripting-card { flex-direction: column; }
  .discovery-card { flex-direction: column; align-items: flex-start; }
}

/* ── RESPONSIVE 560px ── */
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero-heading { font-size: 26px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-grid-n8n { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
  footer { padding: 24px 20px; }
}
/* ── NEW PRICING LAYOUT ── */
.price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(255,255,255,0.04);
  background: url('static/backgrounds/discovery-bg.jpg') center center / cover no-repeat #080808 !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 48px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.3);
}

.price-block-left { flex: 1; }

.price-block-label {
  font-family: 'VT323', monospace;
  font-size: 32px;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.price-block-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

.price-block-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 4px;
}

.price-block-amount {
  font-family: 'VT323', monospace;
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(224,112,32,0.35);
}

.price-block-period {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.price-section-header::before,
.price-section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.price-section-header span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.retainer-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.retainer-row {
  display: grid;
  grid-template-columns: 160px 140px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.retainer-row:last-child { border-bottom: none; }
.retainer-row:hover { background: rgba(255,255,255,0.06); }

.retainer-row-featured {
  background: rgba(224,112,32,0.06) !important;
  border-left: 2px solid rgba(224,112,32,0.4);
}
.retainer-row-featured:hover { background: rgba(224,112,32,0.09) !important; }

.retainer-row-ai {
  background: rgba(80,120,220,0.06) !important;
  border-left: 2px solid rgba(100,140,255,0.3);
}
.retainer-row-ai:hover { background: rgba(80,120,220,0.09) !important; }
.retainer-row-ai .retainer-row-price { color: #8BA8FF; }

.retainer-row-tier {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.retainer-row-featured .retainer-row-tier { color: var(--primary); }

.retainer-row-price {
  font-family: 'VT323', monospace;
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
}
.retainer-row-price span {
  font-size: 16px;
  color: var(--text-3);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-left: 2px;
}

.retainer-row-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.retainer-row-features span {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.retainer-row-features span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 2px;
}
.retainer-row-ai .retainer-row-features span::before { color: #8BA8FF; }

.price-note-bar {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 40px;
}

.price-block.price-block-build {
  background:
    radial-gradient(circle at 18% 22%, rgba(224,112,32,0.18), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(224,112,32,0.10), transparent 48%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 13px),
    linear-gradient(135deg, #0d0d0d 0%, #181818 50%, #0d0d0d 100%) !important;
}

.price-enterprise {
  text-align: center;
  padding-top: 40px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.price-enterprise-title {
  font-family: 'VT323', monospace;
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.price-enterprise-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 26px;
}

@media (max-width: 820px) {
  .price-block { flex-direction: column; align-items: flex-start; }
  .price-block-right { align-items: flex-start; }
  .retainer-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ── SECTION BG — orbs injected + animated by anime.js ── */
/* Static fallback only; anime.js creates the actual gradient orbs at runtime */

/* .bg-orb elements injected by anime.js script */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}


/* Hero badge/heading/etc — hidden before anime.js entrance fires */
/* (Set via JS, cleared by anime.js after animation) */