/* ================================================
   NOVORA INTELLIGENCE — STYLESHEET
   ================================================ */

/* ── 1. Custom Properties ── */
:root {
  --bg:               #0a0a0a;
  --bg-surface:       #111111;
  --bg-surface-alt:   #161616;
  --bg-card:          #0d0d0d;

  --border:           #1c1c1c;
  --border-mid:       #262626;
  --border-light:     #333333;

  --text:             #ececec;
  --text-secondary:   #8a8a8a;
  --text-muted:       #484848;
  --text-dim:         #303030;

  --silver:           #aaaaaa;
  --silver-light:     #cccccc;
  --white:            #ffffff;

  --max-w:            1120px;
  --px:               clamp(20px, 5vw, 40px);
  --nav-h:            72px;
  --section-py:       clamp(72px, 10vw, 120px);

  --r-sm:             4px;
  --r:                8px;
  --r-lg:             12px;

  --t:                200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture overlay — adds premium grain to the flat black */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 999;
}

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

section[id] {
  scroll-margin-top: var(--nav-h);
}

/* ── 3. Typography ── */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(36px, 5.5vw, 62px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(17px, 2vw, 22px); }
h4 { font-size: 16px; font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

/* ── 4. Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 580px;
  font-size: 17px;
}

.section-divider {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 20%,
    rgba(200,168,107,0.08) 50%,
    var(--border) 80%,
    transparent 100%
  );
}

/* ── 5. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #d4b578, #e8c882);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(200,168,107,0);
  transition: all 200ms ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c8a86b, #d4b578);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(200,168,107,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-secondary:hover {
  border-color: var(--border-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── 6. Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  box-shadow: 0 1px 0 0 rgba(200,168,107,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, #c8a86b, #e8c882);
  border-radius: 2px;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--silver);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta .btn {
  padding: 9px 16px;
  font-size: 13px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--t);
  border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 12px var(--px) 24px;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--text);
}
.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
}

/* ── 7. Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + clamp(72px, 10vw, 120px));
  padding-bottom: clamp(72px, 10vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay so hero-bg.jpg never fights the text */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,8,10,0.72) 0%,
      rgba(8,8,10,0.55) 40%,
      rgba(8,8,10,0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Gold radial glow behind hero headline */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(200,168,107,0.07) 0%,
    rgba(200,168,107,0.03) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid mesh */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  max-width: 460px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ── 8. Problems ── */
.problems {
  background: var(--bg-surface);
}

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

.problem-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background var(--t);
}
.problem-card:hover {
  background: var(--bg-surface-alt);
}

.problem-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ── 9. Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t), background var(--t);
}
.service-card:hover {
  border-color: var(--border-mid);
  background: var(--bg-surface-alt);
}

.service-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--silver);
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ── 10. Who We Help ── */
.who-we-help {
  background: var(--bg-surface);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.who-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.who-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}

.who-secondary-card {
  padding: 28px 32px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.who-secondary-card .who-label {
  color: var(--text-muted);
}
.who-secondary-card .who-list li {
  color: var(--text-secondary);
}
.who-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 11. Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.process-step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.process-step h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.7;
}

/* ── 12. Trust ── */
.trust {
  background: var(--bg-surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.trust-content p {
  margin-bottom: 20px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--silver);
  font-size: 10px;
  font-weight: 700;
}

.trust-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.trust-note strong {
  color: var(--silver-light);
  font-weight: 600;
}

/* ── 13. CTA Section ── */
.cta-section {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Light bloom on CTA */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(200,168,107,0.055) 0%,
    rgba(200,168,107,0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section .section-label {
  display: block;
  margin-bottom: 16px;
}
.cta-section h2 {
  max-width: 540px;
  margin: 0 auto 16px;
}
.cta-section p {
  max-width: 460px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 14. Footer ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,107,0.3), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-email {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--t);
}
.footer-email:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-copy {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── 15. Pre-Call Page ── */
.precall-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.precall-hero .section-label {
  display: block;
  margin-bottom: 16px;
}
.precall-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  max-width: 680px;
  margin: 0 auto 20px;
}
.precall-hero .sub {
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.precall-hero .hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.precall-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.precall-section {
  padding: clamp(48px, 7vw, 72px) 0;
  border-bottom: 1px solid var(--border);
}
.precall-section:last-of-type {
  border-bottom: none;
}
.precall-section .section-label {
  display: block;
  margin-bottom: 12px;
}
.precall-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 18px;
}
.precall-section p {
  font-size: 16px;
  margin-bottom: 16px;
}
.precall-section p:last-child {
  margin-bottom: 0;
}

.precall-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.precall-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.precall-list li::before {
  content: '—';
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.precall-steps {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.precall-step {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.precall-step:last-child {
  border-bottom: none;
}
.precall-step:hover {
  background: var(--bg-surface);
}
.precall-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 20px;
  padding-top: 2px;
}
.precall-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.precall-step p {
  font-size: 14px;
  margin-bottom: 0;
}

.precall-note {
  padding: 18px 20px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.precall-note strong {
  color: var(--silver-light);
  font-weight: 600;
}

.precall-cta {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 10vw, 100px) 0;
  text-align: center;
}
.precall-cta .section-label {
  display: block;
  margin-bottom: 16px;
}
.precall-cta h2 {
  max-width: 440px;
  margin: 0 auto 14px;
}
.precall-cta p {
  max-width: 420px;
  margin: 0 auto 36px;
}
.precall-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 16. Pilot Banner ── */
.pilot-banner {
  background: linear-gradient(90deg, #0d1117, #0f1620);
  border-bottom: 1px solid rgba(200,168,107,0.15);
  padding: 11px var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 190;
}
.pilot-banner strong {
  color: #c8a86b;
  font-weight: 600;
}
.pilot-banner-link {
  color: #e8c882;
  text-decoration: underline;
  font-weight: 500;
  flex-shrink: 0;
  transition: color var(--t);
}
.pilot-banner-link:hover {
  color: #c8a86b;
}
.pilot-banner-close {
  position: absolute;
  right: var(--px);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--t);
}
.pilot-banner-close:hover {
  color: rgba(255,255,255,0.7);
}
.pilot-banner.hidden {
  display: none;
}

/* ── 17. Proof Block ── */
.proof-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow behind proof stats */
.proof-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center,
    rgba(200,168,107,0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.proof-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--t);
}
.proof-stat-card:hover {
  border-color: rgba(200,168,107,0.2);
}
.proof-stat-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #c8a86b;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(200,168,107,0.25);
}
.proof-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.proof-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.proof-pilot-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.proof-pilot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.proof-pilot-note strong {
  color: var(--silver-light);
}

/* ── 18. Process 3-col override ── */
.process-steps-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

/* ── 19. Services 3-col + featured card ── */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card-featured {
  border-color: rgba(200,168,107,0.12);
}
.service-card-featured:hover {
  border-color: rgba(200,168,107,0.25);
}
.service-included {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ── 20. Integrations ── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.integration-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color var(--t);
}
.integration-card:hover {
  border-color: var(--border-mid);
}
.integration-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.integration-status {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── 21. FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.faq-item:hover {
  background: var(--bg-surface);
}
.faq-item:nth-child(2n) {
  border-right: none;
}
.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 60ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 300ms; }
.stagger.visible > * {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 17. Responsive ── */
@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .proof-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2n) { border-right: none; }
  .faq-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .faq-item:last-child { border-bottom: none !important; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .pilot-banner { font-size: 12px; gap: 10px; }
  .proof-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-3 { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .problems-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r);
  }

  .services-grid { grid-template-columns: 1fr; }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }
  .footer-copy {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons,
  .cta-buttons,
  .precall-hero .hero-btns,
  .precall-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { width: 100%; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
