/* ============================================================
   Chatalytics — Linear-inspired marketing page
   ============================================================ */

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

:root {
  --bg-0: #08090a;
  --bg-1: #0e0f11;
  --bg-2: #141517;
  --bg-3: #1c1d20;
  --bg-4: #242528;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.13);
  --text-1: #f0f0f2;
  --text-2: #9394a0;
  --text-3: #5c5d6a;
  --accent: #ff8c42;
  --accent-light: #ffd700;
  --accent-glow: rgba(255, 140, 66, 0.25);
  --green: #5b9ef5;
  --red: #f87171;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- Language toggle --- */
.lang-nl .en {
  display: none;
}
.lang-en .nl {
  display: none;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 9, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.2px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.nav-logo:hover {
  opacity: 0.85;
}
.nav-logo svg {
  filter: drop-shadow(0 0 6px rgba(255, 140, 66, 0.4));
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  background: none;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  cursor: pointer;
  transition:
    color 0.15s,
    border-color 0.15s;
  font-family: var(--font);
}
.lang-toggle:hover {
  color: var(--text-2);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-sm {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 15px;
  background: var(--accent);
  color: #1a3a5c;
  border-radius: var(--radius-sm);
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.btn-primary-sm:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-outline-sm {
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 15px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:
    color 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.btn-outline-sm:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
  background: linear-gradient(135deg, #ff8c42, #e8792e);
  color: #1a3a5c;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition:
    opacity 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 140, 66, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 450;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-1);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.15s,
    color 0.15s,
    transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(91, 158, 245, 0.6);
  color: #5b9ef5;
  transform: translateY(-1px);
}

/* --- Shared section styles --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.22) 0%, rgba(255, 215, 0, 0.06) 45%, transparent 70%);
  pointer-events: none;
  animation: glow-breathe 5s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--accent-light);
  border: 1px solid rgba(255, 140, 66, 0.3);
  background: rgba(255, 140, 66, 0.07);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.08;
  background: linear-gradient(135deg, #f0f0f2 20%, #ff8c42 60%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 64px;
}

/* App mockup */
.hero-terminal {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 140, 66, 0.25);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 140, 66, 0.08),
    0 0 60px rgba(255, 140, 66, 0.1);
  text-align: left;
  animation: terminal-pulse 4s ease-in-out infinite alternate;
}

@keyframes terminal-pulse {
  from { box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,140,66,0.08), 0 0 40px rgba(255,140,66,0.08); }
  to   { box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,140,66,0.15), 0 0 80px rgba(255,140,66,0.18); }
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 60px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f57;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #28c840;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--font-mono);
}

.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-2);
  position: relative;
}

.terminal-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-msg.user {
  align-items: flex-end;
}

.chat-msg.assistant {
  align-items: flex-start;
}

.chat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
}

.chat-text {
  font-size: 13.5px;
  line-height: 1.6;
  padding: 10px 14px;
  max-width: 85%;
}

.chat-msg.user .chat-text {
  background: #ff8c42;
  color: #ffffff;
  border-radius: 12px 12px 2px 12px;
}

.chat-msg.user .chat-text.typing {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-msg.assistant .chat-text {
  background: var(--bg-3);
  color: var(--text-1);
  border-radius: 12px 12px 12px 2px;
}

.chat-table {
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12.5px;
  font-family: var(--font-mono);
}

.chat-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.7fr;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-1);
}
.chat-row:last-child {
  border-bottom: none;
}
.chat-row.header {
  color: var(--text-2);
  background: var(--bg-4);
  font-weight: 600;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.positive {
  color: var(--green);
}
.negative {
  color: var(--red);
}

.chat-cursor {
  display: inline-block;
  width: 9px;
  height: 15px;
  background: #ff8c42;
  border-radius: 2px;
  animation: blink 1.1s step-end infinite;
  flex-shrink: 0;
}

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

/* Fake input bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}

.chat-input-field {
  flex: 1;
  background: var(--bg-4);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-2);
}

.chat-input-placeholder {
  pointer-events: none;
}

.chat-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ff8c42;
  color: #ffffff;
  flex-shrink: 0;
  transform: rotate(90deg);
}

/* --- Proof strip --- */
.proof-strip {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}

.proof-label {
  text-align: center;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 500;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-logo {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.proof-sep {
  color: var(--border-hover);
  font-size: 16px;
}


/* --- Per-section label colors (temperature scale: blue → amber → orange) --- */
/* Pain: amber — signals tension, something needs fixing */
.pain-section .section-label       { color: #f5c85b; }
/* How it works: blue — calm, structural, reassuring */
.how-section .section-label        { color: #5b9ef5; }
/* OODA: gold — big intellectual claim, make them pause */
.ooda-section .section-label       { color: var(--accent-light); }
/* Features: blue — trust-building, feature list */
.powerbi-section .section-label    { color: #5b9ef5; }
/* Benefits: blue — calm proof points */
.benefits-section .section-label   { color: #5b9ef5; }
/* FAQ: blue — reassuring, objection handling */
.objections-section .section-label { color: #5b9ef5; }

/* --- Pain section --- */
.pain-section {
  padding: 100px 0;
}

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

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(245, 200, 91, 0.25);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, border-left-color 0.2s, background 0.2s;
}
.pain-card:hover {
  border-color: var(--border-hover);
  border-left-color: #f5c85b;
  background: var(--bg-2);
}

.pain-card-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 158, 245, 0.09);
  border: 1px solid rgba(91, 158, 245, 0.2);
  border-radius: var(--radius-sm);
  color: #5b9ef5;
  flex-shrink: 0;
}

.pain-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}

.pain-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* --- How it works --- */
.how-section {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-step:first-child {
  padding-left: 0;
}
.how-step:last-child {
  padding-right: 0;
}

.how-step-num {
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #5b9ef5;
  background: rgba(91, 158, 245, 0.1);
  border: 1px solid rgba(91, 158, 245, 0.3);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  align-self: flex-start;
  letter-spacing: 0.4px;
  box-shadow: 0 0 12px rgba(91, 158, 245, 0.15);
}

.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-1);
}

.how-step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.how-connector {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(91,158,245,0.5), rgba(91,158,245,0.1));
  flex-shrink: 0;
  margin-top: 30px;
  align-self: flex-start;
}

/* --- OODA section --- */
.ooda-section {
  padding: 100px 0;
}

.ooda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ooda-text .section-sub em {
  color: var(--text-1);
  font-style: italic;
}

/* OODA diagram */
.ooda-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ooda-diagram {
  width: 100%;
  max-width: 300px;
}

/* --- Power BI comparison --- */
.powerbi-section {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 820px;
  margin: 0 auto 24px;
}

.comparison-col {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-col:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  border-right: none;
}
.comparison-col:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: none;
}

.comparison-header {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.1px;
  border-bottom: 1px solid var(--border);
}

.comparison-header.pbi {
  background: var(--bg-3);
  color: var(--text-2);
}
.comparison-header.chat {
  background: rgba(255, 140, 66, 0.1);
  color: var(--accent-light);
}

.comparison-list {
  list-style: none;
  padding: 8px 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  font-size: 14px;
  flex-shrink: 0;
  width: 16px;
}

.comparison-list li.yes {
  color: var(--text-1);
}
.comparison-list li.yes::before {
  content: '✓';
  color: var(--green);
}
.comparison-list li.no::before {
  content: '✕';
  color: var(--red);
  opacity: 0.6;
}
.comparison-list li.meh {
  color: var(--text-2);
}
.comparison-list li.meh::before {
  content: '~';
  color: var(--text-3);
}

.comparison-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-light);
  flex-shrink: 0;
}

.comparison-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
}

/* --- Feature list --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 28px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.feature-list-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,158,245,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-list-item:hover {
  background: var(--bg-3);
}

.feature-list-item:hover::before {
  opacity: 1;
}
.feature-list-item:nth-child(even) {
  border-right: none;
}
.feature-list-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.feature-check {
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.feature-list-item p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* --- Benefits grid --- */
.benefits-section {
  padding: 100px 0;
}

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

.benefit-card {
  background: var(--bg-1);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,158,245,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover {
  background: var(--bg-2);
}
.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 158, 245, 0.09);
  border: 1px solid rgba(91, 158, 245, 0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  flex-shrink: 0;
}

.benefit-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-1);
}

.benefit-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* --- Objections --- */
.objections-section {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.objection-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(91, 158, 245, 0.35);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, border-left-color 0.2s, background 0.2s;
}
.objection-card:hover {
  border-color: var(--border-hover);
  border-left-color: #5b9ef5;
  background: var(--bg-3);
}

.objection-q {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: -0.2px;
  font-style: italic;
}

.objection-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* --- Implementation / Aanpak --- */
.aanpak-section {
  padding: 100px 0;
}

.aanpak-steps {
  display: flex;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.aanpak-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 24px;
}

.aanpak-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid rgba(255, 140, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
}

.aanpak-content h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text-1);
  margin-bottom: 8px;
}

.aanpak-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.aanpak-connector {
  height: 1px;
  width: 60px;
  background: var(--border-hover);
  flex-shrink: 0;
  margin-top: 22px;
}

/* --- CTA --- */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px;
  background: var(--bg-1);
  border-radius: 20px;
  box-shadow: 0 0 80px rgba(255, 140, 66, 0.12);
  isolation: isolate;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, #ff8c42, #ffd700, #ff8c42, #ffd700);
  background-size: 300% 300%;
  animation: border-flow 4s linear infinite;
  z-index: -1;
}

.cta-inner::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: var(--bg-1);
  z-index: -1;
}

@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: var(--text-1);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 15.5px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* --- Team avatars in CTA --- */
.team-avatars {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin: 36px 0 32px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-avatar {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(91,158,245,0.25) 0%, rgba(91,158,245,0.08) 100%);
  border: 2px solid rgba(91,158,245,0.5);
  flex-shrink: 0;
}

.avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #5b9ef5;
  letter-spacing: -0.5px;
  user-select: none;
}

.team-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.2px;
}

.team-linkedin {
  font-size: 12.5px;
  color: var(--text-3);
  transition: color 0.15s;
}
.team-linkedin:hover {
  color: var(--accent-light);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-col--right {
  align-items: flex-end;
  text-align: right;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--text-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy,
.footer-built {
  font-size: 13px;
  color: var(--text-3);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ooda-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ooda-visual {
    order: -1;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .objections-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .footer-col--right {
    align-items: flex-start;
    text-align: left;
  }

  .how-steps {
    flex-direction: column;
    gap: 32px;
  }
  .how-step {
    padding: 0;
  }
  .how-connector {
    width: 40px;
    height: 1px;
    margin: 0;
  }

  .aanpak-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .aanpak-step {
    text-align: left;
    align-items: flex-start;
    flex-direction: row;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .aanpak-step:last-child {
    border-bottom: none;
  }
  .aanpak-connector {
    display: none;
  }

  .comparison {
    flex-direction: column;
    max-width: 480px;
  }
  .comparison-col:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .comparison-col:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-left: 1px solid var(--border);
    border-top: none;
  }
  .comparison-plus {
    padding: 8px 0;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding: 120px 0 70px;
  }
  .hero-title {
    letter-spacing: -1.5px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .cta-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
