@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* Opsio — Digital assistant marketing site */
@import url('colors_and_type.css');

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--opsio-canvas);
  color: var(--opsio-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================ NAV ============================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--opsio-hairline);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--opsio-ink);
  text-decoration: none;
}
.brand-mark {
  width: 110px; height: 28px;
  background: url('opsio_mark.svg') no-repeat center left;
  background-size: contain;
  border: none;
  display: block;
}
.brand-mark::after {
  content: none;
}
.brand > span:last-child {
  display: none;
}
.nav-menu { display: flex; gap: 28px; margin: 0 auto; }
.nav-menu a {
  font-size: 14px;
  color: var(--opsio-ink);
  text-decoration: none;
  padding: 8px 4px;
  transition: color 180ms;
}
.nav-menu a:hover { color: var(--opsio-action-blue); }
.nav-menu a.active { color: var(--opsio-ink); font-weight: 500; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-link {
  font-size: 14px; color: var(--opsio-ink); text-decoration: none;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--opsio-hairline);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--opsio-ink);
  margin: 4px 0;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms cubic-bezier(0.2,0,0.2,1), color 180ms, transform 100ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); opacity: 0.92; }
.btn-primary {
  background: var(--opsio-near-black);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    inset 2px 0 0 rgba(255, 255, 255, 0.06),
    inset -2px 0 0 rgba(0, 0, 0, 0.15);
}
.btn-primary:hover { background: #2a2a31; }
.btn-light {
  background: #fff;
  color: var(--opsio-near-black);
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--opsio-hairline);
}
.btn-light:hover { background: #F0F9FF; }
.btn-ghost {
  background: transparent;
  color: var(--opsio-ink);
  padding: 13px 0;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--opsio-action-blue); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ============================ HERO ============================ */
.hero {
  padding: 56px 0 0;
  position: relative;
  background: #ffffff;
}
.hero-card {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 50% 20%, #1a3a5c 0%, #0d2540 35%, #0a1e33 70%, #071829 100%);
  overflow: hidden;
  padding: 80px 32px 56px;
  text-align: center;
  isolation: isolate;
}
.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 30% 30%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(40% 35% at 75% 65%, rgba(255,255,255,0.04), transparent 65%),
    radial-gradient(60% 50% at 50% 110%, rgba(0,60,120,0.3), transparent 70%);
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220, 232, 245, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 8px 32px 0 rgba(7, 24, 41, 0.28),
    0 20px 48px -4px rgba(7, 24, 41, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(7, 24, 41, 0.15),
    inset 2px 0 0 rgba(255, 255, 255, 0.25),
    inset -2px 0 0 rgba(7, 24, 41, 0.08);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: background 180ms;
}
.hero-pill:hover { background: rgba(255,255,255,0.18); }
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(28,139,83,0.18);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(28,139,83,0.5); }
  100% { box-shadow: 0 0 0 8px rgba(28,139,83,0); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 auto 28px;
  max-width: 14ch;
  color: #ffffff;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* Inline phone-call demo card under hero */
.hero-demo {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
.demo-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--opsio-hairline);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 24px 48px -32px rgba(0,60,51,0.25);
}
.demo-card-retell.demo-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  isolation: isolate;
}
.demo-call {
  width: 44px; height: 44px; border-radius: 50%;
  background: #0284C7;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.demo-call svg { width: 20px; height: 20px; stroke: #fff; }
.demo-content { flex: 1; min-width: 0; }
.demo-row1 {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
  font-size: 13px; color: var(--opsio-slate);
}
.demo-row1 .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #0EA5E9;
  animation: pulse 1.6s ease-out infinite;
}
.demo-msg {
  font-size: 15px;
  color: var(--opsio-ink);
}
.demo-wave {
  display: flex; align-items: center; gap: 3px;
  height: 32px;
  flex-shrink: 0;
}
.demo-wave span {
  display: block;
  width: 3px;
  background: #0284C7;
  border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}
.demo-wave span:nth-child(1){ height: 30%; animation-delay: 0s; }
.demo-wave span:nth-child(2){ height: 70%; animation-delay: .1s; }
.demo-wave span:nth-child(3){ height: 100%; animation-delay: .2s; }
.demo-wave span:nth-child(4){ height: 60%; animation-delay: .3s; }
.demo-wave span:nth-child(5){ height: 40%; animation-delay: .4s; }
.demo-wave span:nth-child(6){ height: 80%; animation-delay: .15s; }
.demo-wave span:nth-child(7){ height: 30%; animation-delay: .25s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ============================ TRUST ============================ */
.trust {
  padding: 48px 0 72px;
}
.trust-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--opsio-hairline);
  border-bottom: 1px solid var(--opsio-hairline);
  padding: 28px 0;
}
.trust-label {
  font-size: 14px;
  color: var(--opsio-ink);
  font-weight: 500;
  line-height: 1.4;
}
.trust-logos {
  display: flex; flex-wrap: wrap; gap: 48px; align-items: center; justify-content: space-between;
}
.trust-logos span {
  font-family: var(--font-display);
  font-size: 19px;
  color: #6b6b75;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ============================ SECTION ============================ */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0284C7;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--opsio-near-black);
  text-wrap: balance;
}
.section-lead {
  font-size: 18px;
  color: var(--opsio-slate);
  max-width: 640px;
  line-height: 1.5;
  margin: 0 0 48px;
}

/* ============================ FEATURE GRID ============================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.feature.green { background: #EFF6FF; border-color: #BFDBFE; }
.feature.blue { background: #E0F2FE; border-color: #BAE6FD; }
.feature.dark { background: var(--opsio-near-black); color: #fff; border-color: transparent; }
.feature.dark .feature-body { color: rgba(255,255,255,0.75); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.feature.dark .feature-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.feature-icon svg { width: 22px; height: 22px; stroke: var(--opsio-ink); fill: none; stroke-width: 1.5; }
.feature.dark .feature-icon svg { stroke: #fff; }
.feature-title {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: inherit;
}
.feature-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--opsio-slate);
  margin: 0;
}

/* ============================ HOW IT WORKS ============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  border-top: 1px solid var(--opsio-ink);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #0284C7;
  letter-spacing: 0.4px;
}
.step-title {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}
.step-body { font-size: 15px; color: var(--opsio-slate); margin: 0; line-height: 1.55; }

/* ============================ INDUSTRIES ============================ */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  isolation: isolate;
}
.industry::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
}
.industry.restaurant::before { background: linear-gradient(180deg, #0284C7 0%, #0369A1 100%); }
.industry.salon::before { background: linear-gradient(180deg, #ff7759 0%, #c44d33 100%); }
.industry.garage::before { background: linear-gradient(180deg, #071829 0%, #1a3354 100%); }
.industry-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.85;
}
.industry-h {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 8px;
}
.industry-b { font-size: 15px; line-height: 1.5; opacity: 0.9; margin: 0; }
.industry-bottom { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.industry-bottom svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ============================ DARK CTA BAND ============================ */
.cta-band {
  background: linear-gradient(160deg, #ff7759 0%, #c44d33 100%);
  color: #fff;
  border-radius: 28px;
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; right: -20%; top: -40%;
  width: 80%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-title { color: #fff; margin-bottom: 16px; }
.cta-band .section-lead { color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 0; }
.cta-band .btn-primary { background: #fff; color: var(--opsio-near-black); }
.cta-band .btn-primary:hover { background: #f0f0f0; }
.cta-band .btn-ghost { color: rgba(255,255,255,0.85); }
.cta-band .btn-ghost:hover { color: #fff; }
.cta-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cta-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 28px;
  display: grid; gap: 16px;
  position: relative;
  z-index: 1;
}
.cta-stat-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cta-stat-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.cta-stat-card .num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-stat-card .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: right;
  max-width: 180px;
}

/* ============================ TESTIMONIAL ============================ */
.testimonial {
  background: #F0F9FF;
  border-radius: 28px;
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--opsio-near-black);
  margin: 0 0 28px;
}
.testimonial-cite {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font-display);
}
.testimonial-meta { font-size: 14px; line-height: 1.4; }
.testimonial-meta .who { color: var(--opsio-ink); font-weight: 500; }
.testimonial-meta .what { color: var(--opsio-slate); }
.testimonial-side {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: grid; gap: 18px;
  border: 1px solid var(--opsio-hairline);
}
.testimonial-side .stat {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.testimonial-side .stat-lbl {
  font-size: 13px; color: var(--opsio-slate); margin-top: 4px;
}

/* ============================ FAQ ============================ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px;
}
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--opsio-hairline);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--opsio-hairline); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--opsio-ink);
  list-style: none;
  gap: 24px;
  outline: none;
}
.faq-q:focus { outline: none; }
.faq-q:focus-visible { outline: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--opsio-slate);
  flex-shrink: 0;
  transition: transform 200ms;
}
.faq-item[open] .faq-q::after { content: '–'; }
.faq-a {
  margin-top: 14px;
  font-size: 15px;
  color: var(--opsio-slate);
  line-height: 1.6;
  max-width: 64ch;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--opsio-near-black);
  color: #fff;
  padding: 80px 0 40px;
  margin-top: 96px;
}
.footer-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.6px;
  color: var(--opsio-coral);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 32px;
}
.footer-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-brand-block .brand { color: #fff; }

.footer-brand-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 30ch;
  margin: 16px 0 0;
  line-height: 1.5;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ============================ SUB-PAGE HERO ============================ */
.subhero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--opsio-hairline);
}
.subhero .eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0284C7;
  margin-bottom: 20px;
}
.subhero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 18ch;
  color: var(--opsio-near-black);
}
.subhero p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--opsio-slate);
  max-width: 640px;
  margin: 0;
}

/* ============================ ABOUT ============================ */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.value p { font-size: 15px; color: var(--opsio-slate); margin: 0; line-height: 1.55; }
.value-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #0284C7;
  margin-bottom: 16px;
}

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-card {
  border-radius: 22px;
  background: #F0F9FF;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.team-photo {
  aspect-ratio: 1/1;
  border-radius: 18px;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.02em;
}
.team-card.b .team-photo { background: linear-gradient(135deg, #ff7759, #c44d33); }
.team-card.c .team-photo { background: linear-gradient(135deg, #1863dc, #0e3b8a); }
.team-name { font-size: 20px; font-weight: 500; margin: 0; letter-spacing: -0.01em; }
.team-role { font-size: 14px; color: var(--opsio-slate); margin: -6px 0 0; }
.team-bio { font-size: 14px; color: var(--opsio-slate); line-height: 1.55; margin: 6px 0 0; }

/* ============================ DIENSTEN / SERVICES ============================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid var(--opsio-hairline);
  align-items: start;
}
.service-row:first-of-type { border-top: 0; padding-top: 32px; }
.service-row.flip .service-visual { order: -1; }
.service-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #0284C7;
  margin-bottom: 16px;
}
.service-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 20px;
}
.service-p { font-size: 17px; color: var(--opsio-slate); line-height: 1.55; margin: 0 0 24px; }
.service-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 14px;
}
.service-list li {
  display: flex; gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  align-items: flex-start;
}
.service-list svg {
  width: 20px; height: 20px; stroke: #0284C7; fill: none; stroke-width: 2;
  flex-shrink: 0; margin-top: 2px;
}
.service-visual {
  border-radius: 22px;
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-start;
  color: #fff;
}
.service-visual.green { background: linear-gradient(160deg, #0284C7 0%, #0369A1 60%, #0EA5E9 100%); }
.service-visual.coral { background: linear-gradient(160deg, #ff7759 0%, #c44d33 100%); }
.service-visual.navy { background: linear-gradient(160deg, #071829 0%, #1a3354 100%); }
.service-visual.stone { background: linear-gradient(160deg, #E0F2FE 0%, #BFDBFE 100%); color: var(--opsio-ink); }

/* Mock interaction inside visual */
.mock-call {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px;
}
.service-visual.stone .mock-call {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.06);
}
.mock-call .who { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.4px; opacity: 0.7; text-transform: uppercase; margin-bottom: 6px; }
.mock-call .line { font-size: 14px; line-height: 1.45; margin-bottom: 12px; }
.mock-call .line:last-child { margin-bottom: 0; }
.mock-call .ai { font-weight: 500; }

/* ============================ PRIJZEN ============================ */
.toggle-row { display: flex; justify-content: center; margin-bottom: 48px; }
.toggle {
  display: inline-flex;
  background: #F0F9FF;
  border-radius: 999px;
  padding: 4px;
}
.toggle button {
  border: 0;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--opsio-slate);
  transition: all 180ms;
}
.toggle button.active {
  background: #fff;
  color: var(--opsio-ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-two {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}
.price-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--opsio-hairline);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.price-card.featured {
  background: var(--opsio-near-black);
  color: #fff;
  border-color: var(--opsio-near-black);
  position: relative;
}
.price-card.featured .price-num,
.price-card.featured .price-name { color: #fff; }
.price-card.featured .price-feat li { color: rgba(255,255,255,0.85); }
.price-card.featured .price-feat svg { stroke: var(--opsio-coral); }
.price-card.featured .price-sub { color: rgba(255,255,255,0.6); }
.price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--opsio-coral);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 999px;
}
.price-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--opsio-near-black);
}
.price-num small { font-size: 16px; color: var(--opsio-slate); font-family: var(--font-body); font-weight: 400; }
.price-card.featured .price-num small { color: rgba(255,255,255,0.6); }
.price-sub { font-size: 14px; color: var(--opsio-slate); margin: -10px 0 0; }
.price-feat {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  border-top: 1px solid var(--opsio-hairline);
  padding-top: 20px;
}
.price-card.featured .price-feat { border-top-color: rgba(255,255,255,0.12); }
.price-feat li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; }
.price-feat svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: #0284C7; fill: none; stroke-width: 2; }
.price-card .btn { align-self: stretch; justify-content: center; }
.price-card.featured .btn-primary { background: #fff; color: var(--opsio-near-black); }
.price-card.featured .btn-primary:hover { background: #eee; }

/* Compare */
.compare {
  margin-top: 64px;
  border: 1px solid var(--opsio-hairline);
  border-radius: 22px;
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--opsio-hairline);
}
.compare th {
  background: #F0F9FF;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.compare th:not(:first-child),
.compare td:not(:first-child) { text-align: center; }
.compare tr:last-child td { border-bottom: 0; }
.compare svg { width: 18px; height: 18px; stroke: #0284C7; fill: none; stroke-width: 2; display: inline; vertical-align: middle; }
.compare .dash { color: var(--opsio-muted); }

/* ============================ CONTACT ============================ */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--opsio-hairline);
  border-radius: 22px;
  padding: 40px;
  display: grid; gap: 18px;
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: 13px; color: var(--opsio-slate); font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--opsio-hairline);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--opsio-ink);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(0,60,51,0.1);
}
.contact-aside {
  display: grid; gap: 28px; align-content: start;
}
.contact-aside .panel {
  background: #F0F9FF;
  border-radius: 22px;
  padding: 32px;
}
.contact-aside .panel.dark {
  background: var(--opsio-near-black);
  color: #fff;
}
.contact-aside .panel h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.contact-aside .panel p { font-size: 14px; color: var(--opsio-slate); margin: 0 0 16px; line-height: 1.55; }
.contact-aside .panel.dark p { color: rgba(255,255,255,0.7); }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--opsio-ink);
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.contact-aside .panel.dark .contact-line { color: rgba(255,255,255,0.9); border-top-color: rgba(255,255,255,0.1); }
.contact-line:first-of-type { border-top: 0; }
.contact-line svg {
  width: 18px; height: 18px;
  stroke: #0284C7;
  fill: none; stroke-width: 1.6;
}
.contact-aside .panel.dark .contact-line svg { stroke: var(--opsio-coral); }

.success-msg {
  display: none;
  background: #F0F9FF;
  color: #0284C7;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
}
.success-msg.show { display: block; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .nav-menu { display: none; position: absolute; top: 70px; left: 16px; right: 16px;
    flex-direction: column; gap: 0;
    background: #fff; border: 1px solid var(--opsio-hairline); border-radius: 16px;
    padding: 8px; box-shadow: 0 24px 48px -32px rgba(0,0,0,0.2);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 16px; border-radius: 8px; }
  .nav-menu a:hover { background: #F0F9FF; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta .btn-ghost { display: none; }

  .hero-card { padding: 64px 22px 56px; border-radius: 22px; }
  .hero-h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-demo { margin-top: -32px; }
  .demo-card { margin: 0 16px; }

  .features, .steps, .industries, .pricing, .values, .team-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 28px; }
  .testimonial { grid-template-columns: 1fr; padding: 40px 28px; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-row { grid-template-columns: 1fr; padding: 56px 0; gap: 32px; }
  .service-row.flip .service-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .trust-row { grid-template-columns: 1fr; gap: 16px; }
  .trust-logos { gap: 24px; justify-content: flex-start; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 56px 0 32px; }
  .pricing .price-card { padding: 28px 22px; }
  .compare th, .compare td { padding: 12px 10px; font-size: 13px; }
  .compare th:first-child, .compare td:first-child { padding-left: 16px; }
}



/* ============================ FLOATING INFO BAND ============================ */

.floating-info-band-section {
  padding: 36px 0 70px;
  overflow: hidden;
}

.floating-info-band {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(15,23,42,0.06);
}

.floating-info-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 24px 0;
  animation: floatingInfoScroll 38s linear infinite;
}

.floating-info-track span {
  font-size: 15px;
  font-weight: 500;
  color: #667085;
  white-space: nowrap;
}

.floating-info-track span::after {
  content: "•";
  margin-left: 56px;
  color: rgba(2,132,199,0.45);
}

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

@media (max-width: 768px) {
  .floating-info-band {
    margin: 0 20px;
  }

  .floating-info-track {
    gap: 34px;
    padding: 18px 0;
  }

  .floating-info-track span {
    font-size: 13px;
  }

  .floating-info-track span::after {
    margin-left: 34px;
  }
}


/* ============================ FOOTER FUTURISTIC TEXT LOGO ONLY ============================ */
.footer-text-logo {
  display: inline-block;
  font-family: 'Michroma', sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  text-transform: uppercase;
  transform: scaleX(1.02);
  transform-origin: left center;
}


/* ============================ SCROLL REVEAL ============================ */

/* Base state — hidden, ready to animate */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Revealed state */
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Eyebrows slide in from left, slightly */
.section-eyebrow.will-reveal,
.service-eyebrow.will-reveal,
.eyebrow.will-reveal {
  transform: translateY(10px) translateX(-6px);
}

/* Feature cards get a mild scale on top of the slide */
.feature.will-reveal,
.value.will-reveal,
.price-card.will-reveal {
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Service visuals slide in from the side based on layout */
.service-row:not(.flip) .service-visual.will-reveal {
  transform: translateX(24px) translateY(0);
}
.service-row.flip .service-visual.will-reveal {
  transform: translateX(-24px) translateY(0);
}
.service-visual.revealed {
  transform: translateX(0) translateY(0) !important;
}

/* ============================ NAV SCROLLED STATE ============================ */
.nav-wrap.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

/* ============================ BUTTON RIPPLE ============================ */
.btn-primary, .btn-light {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%) scale(0);
  animation: btnRipple 0.6s ease-out forwards;
  pointer-events: none;
}
.btn-primary .btn-ripple { background: rgba(255,255,255,0.25); }
.btn-light .btn-ripple   { background: rgba(0,100,200,0.1); }

@keyframes btnRipple {
  to { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}

/* ============================ FEATURE CARD HOVER LIFT ============================ */
.feature {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.10);
}

/* ============================ SERVICE VISUAL HOVER ============================ */
.service-visual {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service-visual:hover {
  transform: translateY(-4px) scale(1.012) !important;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.14);
}

/* ============================ PRICE CARD HOVER ============================ */
.price-card:not(.featured) {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 240ms ease,
              border-color 240ms ease;
}
.price-card:not(.featured):hover {
  transform: translateY(-5px);
  border-color: #0284C7;
  box-shadow: 0 20px 48px -20px rgba(2,132,199,0.15);
}

/* ============================ CONTACT LINE HOVER ============================ */
.contact-line {
  transition: color 180ms, padding-left 180ms;
}
.contact-line:hover {
  color: #0284C7;
  padding-left: 4px;
}

/* ============================ FAQ HOVER ============================ */
.faq-item {
  transition: background 200ms;
  border-radius: 8px;
}
.faq-item[open] { background: transparent; }

/* ============================ REDUCE MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .feature, .service-visual, .price-card,
  .contact-line, .btn-ripple {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================ TYPEWRITER ============================ */

/* Blinking cursor while typing */
[data-typewriter].typing::after {
  content: '|';
  display: inline-block;
  margin-left: 1px;
  color: var(--opsio-action-blue);
  animation: cursorBlink 0.55s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Typed state — no cursor */
[data-typewriter].typed::after {
  display: none;
}

/* Hidden until typewriter starts */
[data-typewriter] {
  min-height: 1.45em;
}

/* ============================ SCROLL HINT (hero) ============================ */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  color: var(--opsio-slate);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  animation: scrollHintFade 0.6s ease 1.4s forwards;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.scroll-hint:hover { color: var(--opsio-action-blue); }

.scroll-hint-wheel {
  width: 22px;
  height: 34px;
  border: 1.5px solid currentColor;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}

.scroll-hint-wheel::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

@keyframes scrollHintFade {
  to { opacity: 0.65; }
}

.scroll-hint:hover { opacity: 1 !important; }

/* Hide once user scrolls */
.scroll-hint.hidden {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.4s;
}

/* ============================ MOCK-CALL AUDIO PLAYER ============================ */
.mock-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.service-visual.stone .mock-call-header { border-bottom-color: rgba(0,0,0,0.08); }
.mock-call-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.service-visual.stone .mock-call-label { color: var(--opsio-slate); }
.mock-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: pulse 1.6s ease-out infinite;
}
.service-visual.stone .mock-live-dot { background: #0284C7; }
.mock-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms, transform 100ms;
  white-space: nowrap;
}
.mock-play-btn:hover { background: rgba(255,255,255,0.28); }
.mock-play-btn:active { transform: scale(0.96); }
.mock-play-btn.playing { background: rgba(255,255,255,0.95); color: var(--opsio-near-black); border-color: transparent; }
.service-visual.stone .mock-play-btn { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); color: var(--opsio-ink); }
.service-visual.stone .mock-play-btn:hover { background: rgba(0,0,0,0.10); }
.service-visual.stone .mock-play-btn.playing { background: var(--opsio-near-black); color: #fff; border-color: transparent; }
.mock-play-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.mock-play-btn.no-audio { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.mock-audio-progress { height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-top: 14px; overflow: hidden; display: none; }
.mock-audio-progress.visible { display: block; }
.service-visual.stone .mock-audio-progress { background: rgba(0,0,0,0.08); }
.mock-audio-progress-fill { height: 100%; width: 0%; background: rgba(255,255,255,0.8); border-radius: 2px; transition: width 0.1s linear; }
.service-visual.stone .mock-audio-progress-fill { background: #0284C7; }

/* ============================ DEMO CARD DIALOGUE ============================ */
.demo-card-dialogue { flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.demo-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--opsio-hairline); }
.demo-meta { flex: 1; min-width: 0; }
.demo-dialogue { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.demo-bubble { max-width: 82%; padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.5; color: var(--opsio-ink); }
.demo-bubble.caller { background: var(--opsio-stone); border-bottom-left-radius: 4px; align-self: flex-start; }
.demo-bubble.opsio { background: #0284C7; color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }

/* ============================ BRANCH GRID ============================ */
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.branch-card { border-radius: 22px; padding: 32px; display: flex; flex-direction: column; gap: 20px; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.branch-card::before { content: ''; position: absolute; inset: 0; z-index: -1; }
.branch-card.restaurant::before { background: linear-gradient(160deg, #0284C7 0%, #0369A1 100%); }
.branch-card.salon::before      { background: linear-gradient(160deg, #ff7759 0%, #c44d33 100%); }
.branch-card.garage::before     { background: linear-gradient(160deg, #17171c 0%, #1a3354 100%); }
.branch-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.7px; text-transform: uppercase; opacity: 0.75; }
.branch-h { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
.branch-p { font-size: 14px; line-height: 1.6; opacity: 0.85; margin: 0; }
.branch-uses { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.15); }
.branch-use { display: flex; align-items: center; gap: 8px; font-size: 13px; opacity: 0.9; }
.branch-use-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.branch-mock { background: rgba(0,0,0,0.18); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.branch-line { font-size: 13px; line-height: 1.5; padding: 9px 12px; border-radius: 10px; max-width: 88%; }
.branch-line.caller { background: rgba(255,255,255,0.15); align-self: flex-start; border-bottom-left-radius: 3px; }
.branch-line.opsio  { background: rgba(255,255,255,0.28); align-self: flex-end; border-bottom-right-radius: 3px; }
@media (max-width: 960px) { .branch-grid { grid-template-columns: 1fr; } }


/* ============================ NAV DROPDOWN ============================ */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--opsio-ink);
  text-decoration: none;
  padding: 8px 4px;
  transition: color 180ms;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  transition: transform 220ms ease, opacity 220ms ease;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-trigger::after {
  transform: rotate(-135deg) translateY(1px);
  opacity: 0.8;
}
.nav-dropdown-trigger:hover { color: var(--opsio-action-blue); }
.nav-dropdown-trigger.active { color: var(--opsio-ink); font-weight: 500; }

/* Menu — glass frosted — only shown via .open class (JS click-toggle) */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.10),
    0 20px 48px -4px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08),
    inset 2px 0 0 rgba(255, 255, 255, 0.6),
    inset -2px 0 0 rgba(0, 0, 0, 0.05);
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  animation: dropdownIn 180ms cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--opsio-navy);
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(2, 132, 199, 0.10);
  color: var(--opsio-action-blue);
}
.nav-dropdown-item.active {
  background: rgba(2, 132, 199, 0.10);
  color: var(--opsio-action-blue);
}

/* Hide the sub-price text in nav */
.nav-dropdown-item-sub { display: none; }
.nav-dropdown-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* Mobile — terugvallen op eenvoudige stijl zonder blur */
@media (max-width: 960px) {
  .nav-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown-trigger { padding: 14px 16px; width: 100%; border-radius: 8px; color: var(--opsio-ink); }
  .nav-dropdown-trigger:hover { background: #F0F9FF; color: var(--opsio-action-blue); }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 4px 12px;
    animation: none !important;
    min-width: unset;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--opsio-ink);
  }
  .nav-dropdown-item:hover {
    background: #F0F9FF;
    color: var(--opsio-action-blue);
  }
  .nav-dropdown-item.active {
    background: #F0F9FF;
    color: var(--opsio-action-blue);
  }
}

/* ============================================================
   RETELL WIDGET PLACEHOLDER
   Verwijder deze stijlen zodra de echte widget erin zit
   ============================================================ */
.demo-card-retell {
  padding: 0;
  overflow: hidden;
  min-height: unset;
  display: flex;
  align-items: stretch;
  max-width: 320px !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: none !important;
}
.retell-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 20px 20px 20px;
  background: rgba(220, 232, 245, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px 0 rgba(7, 24, 41, 0.28),
    0 20px 48px -4px rgba(7, 24, 41, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(7, 24, 41, 0.15),
    inset 2px 0 0 rgba(255, 255, 255, 0.25),
    inset -2px 0 0 rgba(7, 24, 41, 0.08);
}
.retell-placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  background: #071829;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.retell-placeholder-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.retell-placeholder-orb {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.retell-placeholder-orb img {
  mix-blend-mode: multiply;
}
.retell-placeholder-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--opsio-near-black);
  letter-spacing: 0;
  display: block;
}
.retell-placeholder-tagline {
  display: block;
  font-size: 12px;
  color: var(--opsio-slate);
  margin-top: 2px;
  line-height: 1.4;
}
.retell-placeholder-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: #071829;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  opacity: 1;
  transition: background 150ms ease;
}
.retell-placeholder-btn:hover {
  background: #0c2a45;
}
