/* ============================================================
   AI GODS — style.css
   Dark tech startup · Syne + DM Sans · Electric purple accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- Variables ---- */
:root {
  --bg:            #080810;
  --bg-2:          #0d0d1a;
  --bg-3:          #111120;
  --accent:        #7c5cfc;
  --accent-light:  #a48afd;
  --accent-dim:    rgba(124, 92, 252, 0.12);
  --accent-glow:   rgba(124, 92, 252, 0.30);
  --accent-glow-s: rgba(124, 92, 252, 0.07);
  --orange:        #ff6b00;
  --orange-light:  #ff8c3a;
  --orange-dim:    rgba(255, 107, 0, 0.10);
  --orange-glow:   rgba(255, 107, 0, 0.25);
  --green:         #4ade80;
  --text:          #eeeeff;
  --text-muted:    #7777aa;
  --text-faint:    #3a3a5c;
  --border:        rgba(124, 92, 252, 0.16);
  --border-h:      rgba(124, 92, 252, 0.45);
  --radius:        12px;
  --radius-lg:     20px;
  --max-w:         1160px;
  --nav-h:         68px;
  --font-d:        'Syne', sans-serif;
  --font-b:        'DM Sans', sans-serif;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }
ul { list-style: none; }

/* ---- Base ---- */
body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(124, 92, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 252, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(124, 92, 252, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
@media (hover: none) { .cursor, .cursor-trail { display: none; } }

/* ---- Typography ---- */
h1 {
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
h2 {
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.025em;
}
h3, h4 {
  font-family: var(--font-b);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  max-width: 720px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.accent-text { color: var(--accent-light); }
.accent-dutch { color: var(--orange-light); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9px;
  transition: background 0.2s, box-shadow 0.25s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--border-h);
  border-radius: 9px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.full-width { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo > span:not(.logo-dutch) { color: var(--accent); }
.logo-dutch {
  color: var(--orange);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 3px;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
}

.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}
.nav-links > li > a:not(.btn-nav) {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links > li > a:not(.btn-nav):hover { color: var(--text); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.10) 0%, rgba(255, 107, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  padding: 6px 14px;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-ghost { width: 100%; justify-content: center; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}
.hero-trust span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 460px;
  display: none;
  align-items: center;
  justify-content: center;
}
.glow-orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.18) 0%, rgba(124, 92, 252, 0.04) 55%, transparent 70%);
  border: 1px solid rgba(124, 92, 252, 0.18);
  animation: pulse 5s ease-in-out infinite;
}
.glow-orb::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 252, 0.12);
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  background: rgba(13, 13, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}
.float-card.fc-swapping { opacity: 0; }
.fc-icon { font-size: 1.1rem; }
.fc1 { top: 8%;     left: 0;    animation: float1 7s ease-in-out infinite; }
.fc2 { top: 38%;   right: -4%; animation: float1 7s 1.8s ease-in-out infinite; }
.fc3 { bottom: 26%; left: 4%;  animation: float1 7s 0.9s ease-in-out infinite; }
.fc4 { bottom: 7%; right: 6%;  animation: float1 7s 2.6s ease-in-out infinite; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- PAIN POINTS ---- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pain-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 40px var(--accent-glow-s), inset 0 0 0 1px var(--border-h);
  transform: translateY(-3px);
}
.pain-icon { font-size: 1.9rem; margin-bottom: 16px; }
.pain-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pain-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ---- HOW IT WORKS ---- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step:hover .step-number { color: var(--accent); }
.step-number {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-faint);
  line-height: 1;
  transition: color 0.25s;
  padding-top: 2px;
}
.step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.step-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step-content p   { font-size: 0.95rem; color: var(--text-muted); max-width: 580px; }

/* ---- CALCULATOR ---- */
.calculator-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.calculator-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.calc-intro { margin-bottom: 36px; }
.calc-intro h2 { font-size: 1.9rem; margin-bottom: 10px; }
.calc-intro p  { color: var(--text-muted); font-size: 0.95rem; }

.calc-field { margin-bottom: 28px; }
.calc-field label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.range-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  outline: none;
  border: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--accent-dim);
  transition: box-shadow 0.2s, transform 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px var(--accent-glow);
  transform: scale(1.1);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}
.range-val {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-light);
  min-width: 68px;
  text-align: right;
}
.calc-note {
  margin-top: 4px;
  padding: 14px 17px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.result-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.result-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.12), rgba(124, 92, 252, 0.04));
  box-shadow: 0 0 32px rgba(124, 92, 252, 0.1);
}
.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.result-value {
  font-family: var(--font-b);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}
.result-card.highlight .result-value { color: var(--accent-light); }
.result-accent { color: var(--accent); }
.result-sub { font-size: 0.78rem; color: var(--text-faint); }

.result-roi {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.03));
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-label { font-size: 0.9rem; font-weight: 500; }
.roi-value {
  font-family: var(--font-b);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
}
.result-roi-year {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius);
}
.roi-year-label { font-size: 0.82rem; color: var(--text-muted); }
.roi-year-value {
  font-family: var(--font-b);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.75;
}

.calc-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ---- VOOR WIE ---- */
.niche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.niche-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.niche-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 40px var(--accent-glow-s);
  transform: translateY(-3px);
}
.niche-card.niche-empty {
  border-style: dashed;
  background: transparent;
}
.niche-icon { font-size: 2.1rem; margin-bottom: 14px; }
.niche-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.niche-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.niche-link {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
  transition: color 0.2s;
}
.niche-card:hover .niche-link { color: #fff; }

/* ---- BENEFITS ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.benefit { }
.benefit-icon { font-size: 1.9rem; margin-bottom: 14px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ---- MID CTA ---- */
.mid-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.mid-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mid-cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.mid-cta-inner > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }
.cta-sub { margin-top: 16px; font-size: 0.82rem; color: var(--text-faint); }

/* ---- FAQ ---- */
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.975rem;
  font-weight: 500;
  text-align: left;
  gap: 16px;
}
.faq-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-list li { font-size: 0.9rem; color: var(--text-muted); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  max-width: 680px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.team-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}
.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--accent-dim);
  border: 2px solid var(--border);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.team-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.mission-block {
  max-width: 680px;
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.mission-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

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

/* ---- NICHE PAGES ---- */
.niche-hero {
  min-height: 75vh;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.niche-hero .hero-inner { grid-template-columns: 1fr; max-width: 700px; }

.niche-pain-grid { grid-template-columns: repeat(2, 1fr) !important; }

.niche-solutions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.solution-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.solution-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.solution-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--accent-light); }
.solution-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.footer-brand .logo { font-size: 1.3rem; }
.footer-brand p { margin-top: 14px; color: var(--text-muted); font-size: 0.875rem; max-width: 230px; }
.footer-tag { margin-top: 6px !important; font-size: 0.78rem !important; color: var(--text-faint) !important; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-faint); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.06); }
}

/* ---- RESPONSIVE (mobile-first, min-width) ---- */

/* Nav open state — all breakpoints */
.nav-links.open {
  transform: translateY(0);
  pointer-events: all;
}
.nav-links .btn-nav { align-self: stretch; justify-content: center; }

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

/* 480px — hero CTAs side by side */
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: auto; }
}

/* 640px — tablet */
@media (min-width: 640px) {
  .section { padding: 80px 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .niche-pain-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .niche-solutions { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step { gap: 32px; padding: 32px 0; }
  .step-number { font-size: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: row; text-align: left; gap: 0; }
}

/* 768px — nav switches to desktop */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transform: none;
    transition: none;
    pointer-events: all;
  }
  .nav-links .btn-nav { align-self: auto; }
}

/* 960px — full desktop */
@media (min-width: 960px) {
  .section { padding: 96px 0; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .hero-visual { display: flex; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .niche-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
  .calc-wrapper { grid-template-columns: 1fr 1fr; gap: 56px; }
  .contact-wrapper { grid-template-columns: 1fr 1.2fr; gap: 64px; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
  .step { gap: 44px; padding: 40px 0; }
  .step-number { font-size: 3.8rem; min-width: 88px; }
}
