.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: #2B4BD6;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
}

:root {
  --bg: #F5F4FC;
  --bg-2: #EDF1FB;
  --ink: #0F1B3D;
  --ink-2: #3A4675;
  --ink-3: #6B7596;
  --primary: #2B4BD6;
  --primary-2: #3E5FE8;
  --primary-soft: #E6EBFD;
  --card: #FFFFFF;
  --line: #E5E9F5;
  --line-2: #EEF1FA;
  --purple: #8B5CF6;
  --pink: #E85D75;
  --green: #34C97A;
  --cyan: #4FB8D9;
  --lime: #A6D555;
  --grad-blue: linear-gradient(135deg, #3A5BE0 0%, #5A7FEE 100%);
  --grad-teal: linear-gradient(135deg, #2FA580 0%, #4BD6A0 100%);
  --grad-cyan: linear-gradient(135deg, #4A8FE0 0%, #6BC6E8 100%);
  --grad-lime: linear-gradient(135deg, #4BC97A 0%, #B0DC55 100%);
  --grad-purple: linear-gradient(135deg, #7B5CF6 0%, #B18DFC 100%);
  --grad-pink: linear-gradient(135deg, #E85D75 0%, #F08BA0 100%);
  --shadow-sm: 0 1px 2px rgba(15, 27, 61, 0.04), 0 2px 6px rgba(15, 27, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 27, 61, 0.06), 0 1px 3px rgba(15, 27, 61, 0.04);
  --shadow-lg: 0 20px 50px -20px rgba(15, 27, 61, 0.18), 0 8px 24px -8px rgba(15, 27, 61, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #F7F7FB;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

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

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

/* ——————————————————— NAV (transparent, merged with hero) ——————————————————— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.25s ease;
  color: white;
  background: transparent;
  border-bottom: none;
}
.nav .logo span { color: white; }
.nav .nav-links a { color: rgba(255,255,255,0.92); font-weight: 500; letter-spacing: 0.01em; }
.nav .nav-links a:hover { color: white; }
.nav .btn-ghost { color: white; border: 1.5px solid rgba(255,255,255,0.55); background: transparent; font-weight: 500; }
.nav .btn-ghost:hover { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.8); }
.nav .btn-primary {
  background: white;
  color: #1E40A8;
  border: 1.5px solid white;
  box-shadow: 0 4px 14px -2px rgba(15,27,61,0.25);
  font-weight: 600;
}
.nav .btn-primary:hover { background: #F3F6FF; color: #1E40A8; transform: translateY(-1px); }

.nav.scrolled {
  position: fixed;
  background: rgba(130, 170, 230, 0.85);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.logo img { height: 92px; width: auto; border-radius: 0; }
.logo-lg img { height: 100px; width: auto; border-radius: 0; transition: transform 0.2s ease; }
.logo-lg:hover img { transform: scale(1.03); }
.nav.scrolled .logo-lg img { height: 64px; }

.logo span {
  font-weight: 700;
  color: white;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-blue);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(58, 91, 224, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -4px rgba(58, 91, 224, 0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: white; color: var(--primary); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ——————————————————— HERO (blue gradient with rounded corner) ——————————————————— */

/* ——————————————————— HERO (blue galaxy — merged with nav, strong rounded bottom) ——————————————————— */
.hero {
  padding: 130px 0 102px;
  position: relative;
  margin-top: 0;
  color: white;
  background: transparent;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -180px;
  overflow: visible;
  background:
    linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(71,127,220,0.7) 75%, rgba(255,255,255,0.85) 92%, #F7F7FB 100%),
    radial-gradient(ellipse 75% 70% at 8% 5%, rgba(210, 230, 255, 0.7) 0%, rgba(160, 200, 245, 0.45) 25%, rgba(110, 165, 230, 0.2) 50%, transparent 75%),
    linear-gradient(160deg, #4A7DD8 0%, #3865CC 22%, #2F5BC8 48%, #1E40A8 78%, #17308A 100%);
  z-index: 0;
}
.hero-bg::before {
  /* Real starfield via inline SVG — dense + bright */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'><g fill='white'><circle cx='12' cy='18' r='1.2'/><circle cx='34' cy='45' r='.8' opacity='.8'/><circle cx='58' cy='23' r='1.8'/><circle cx='78' cy='67' r='1' opacity='.85'/><circle cx='102' cy='38' r='1.4'/><circle cx='125' cy='89' r='.9' opacity='.75'/><circle cx='147' cy='54' r='2'/><circle cx='168' cy='112' r='1' opacity='.8'/><circle cx='189' cy='76' r='1.5'/><circle cx='212' cy='134' r='1.2' opacity='.9'/><circle cx='234' cy='45' r='.8' opacity='.7'/><circle cx='256' cy='98' r='1.8'/><circle cx='278' cy='28' r='1.1' opacity='.85'/><circle cx='298' cy='156' r='1.4'/><circle cx='321' cy='67' r='.9' opacity='.75'/><circle cx='345' cy='123' r='2'/><circle cx='367' cy='45' r='1' opacity='.8'/><circle cx='389' cy='178' r='1.5'/><circle cx='412' cy='89' r='1.2' opacity='.9'/><circle cx='434' cy='34' r='1.8'/><circle cx='456' cy='145' r='.9' opacity='.75'/><circle cx='478' cy='78' r='1.4'/><circle cx='22' cy='167' r='1.3'/><circle cx='45' cy='189' r='.8' opacity='.7'/><circle cx='68' cy='212' r='1.7'/><circle cx='92' cy='156' r='1' opacity='.8'/><circle cx='115' cy='234' r='1.2'/><circle cx='138' cy='201' r='1.6'/><circle cx='162' cy='178' r='.9' opacity='.75'/><circle cx='185' cy='256' r='1.4'/><circle cx='208' cy='223' r='1.1' opacity='.85'/><circle cx='231' cy='198' r='1.9'/><circle cx='254' cy='267' r='.8' opacity='.7'/><circle cx='276' cy='234' r='1.3'/><circle cx='299' cy='289' r='1.5'/><circle cx='323' cy='212' r='1' opacity='.8'/><circle cx='346' cy='256' r='1.7'/><circle cx='369' cy='298' r='1.2' opacity='.9'/><circle cx='392' cy='223' r='.9' opacity='.75'/><circle cx='415' cy='276' r='1.4'/><circle cx='438' cy='245' r='1.8'/><circle cx='461' cy='312' r='1' opacity='.8'/><circle cx='484' cy='234' r='1.3'/><circle cx='15' cy='323' r='1.1' opacity='.85'/><circle cx='38' cy='289' r='1.6'/><circle cx='62' cy='345' r='.8' opacity='.7'/><circle cx='85' cy='312' r='1.4'/><circle cx='108' cy='367' r='1.2'/><circle cx='131' cy='334' r='1.7'/><circle cx='154' cy='389' r='.9' opacity='.75'/><circle cx='178' cy='356' r='1.3'/><circle cx='201' cy='412' r='1.5'/><circle cx='224' cy='378' r='1' opacity='.8'/><circle cx='247' cy='434' r='1.8'/><circle cx='270' cy='401' r='1.2' opacity='.9'/><circle cx='293' cy='456' r='1.4'/><circle cx='316' cy='423' r='.9' opacity='.75'/><circle cx='339' cy='478' r='1.6'/><circle cx='362' cy='445' r='1.1' opacity='.85'/><circle cx='385' cy='489' r='1.3'/><circle cx='408' cy='412' r='1.7'/><circle cx='431' cy='467' r='.8' opacity='.7'/><circle cx='454' cy='434' r='1.5'/><circle cx='477' cy='478' r='1.2'/></g></svg>");
  background-size: 500px 500px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 1;
  animation: twinkle 3s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 80%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 80%);
}
@keyframes twinkle {
  0% { opacity: 0.75; }
  100% { opacity: 1; }
}
.hero-bg::after {
  /* Nebula / galaxy clouds — much more visible */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 35% 25%, rgba(200, 220, 255, 0.25), transparent 60%),
    radial-gradient(ellipse 55% 40% at 55% 60%, rgba(150, 190, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 35% 30% at 18% 75%, rgba(180, 210, 255, 0.2), transparent 60%),
    radial-gradient(ellipse 40% 25% at 72% 40%, rgba(255, 230, 200, 0.18), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
  padding-bottom: 0;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 0; }
  .hero-bg { border-bottom-left-radius: 30% 80px; border-bottom-right-radius: 30% 80px; }
}

/* Mobile: center hero h1 + CTA */
@media (max-width: 640px) {
  [data-hero-h1],
  .hero h1 { text-align: center !important; }
  .hero-pill { text-align: center; }
  .hero-sub { margin-left: auto !important; margin-right: auto !important; text-align: center; }
  .hero-cta { justify-content: center !important; }
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 24px;
  color: white;
  text-wrap: balance;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero .btn-primary {
  background: linear-gradient(180deg, #3FB775 0%, #2A9659 100%);
  color: white;
  border: none;
  box-shadow: 0 6px 16px -4px rgba(42, 150, 89, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
}
.hero .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -4px rgba(42, 150, 89, 0.6); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 12.5px 32px;
  font-size: 15px;
  font-weight: 600;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: white; }

/* Review card */
.hero-review {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 18px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25);
}
.hr-score {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink, #1a2234);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hr-right { display: flex; flex-direction: column; gap: 4px; }
.hr-stars { display: flex; align-items: center; gap: 2px; }
.hr-stars .hr-count {
  margin-left: 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.hr-label {
  font-size: 11px;
  color: #9ca3af;
}

/* Hero visual stage — phone + shield + flare */

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
}
/* Gouden lens-flare explosie achter schild */
.flare { display: none; }


  100% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* iPhone in hero — 3D perspective */
.hero-stage {
  perspective: 1600px;
  perspective-origin: 50% 50%;
}
.hero-phone {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotateY(-14deg) rotateX(8deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  width: 240px;
  height: 488px;
  background: linear-gradient(145deg, #323a4a 0%, #1a1f2c 45%, #0a0d14 100%);
  border-radius: 40px;
  padding: 7px;
  box-shadow:
    0 60px 100px -20px rgba(0,0,0,0.6),
    0 30px 60px -10px rgba(0,0,0,0.45),
    0 10px 20px -5px rgba(0,0,0,0.3),
    inset 0 0 0 1.5px rgba(255,255,255,0.12),
    inset 0 0 0 3px rgba(70,80,100,0.6),
    inset -10px 0 20px -5px rgba(0,0,0,0.5),
    inset 10px 0 20px -5px rgba(255,255,255,0.05);
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
/* Floor shadow beneath phone */
.hero-phone::before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: -20px;
  right: -20px;
  height: 60px;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0,0,0,0.5), transparent 65%);
  filter: blur(15px);
  z-index: -1;
  transform: translateZ(-80px);
}
.hero-phone:hover { transform: translateY(-52%) rotateY(-11deg) rotateX(6deg) rotateZ(-0.5deg) scale(1.03); }
.hero-phone .iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  position: relative;
  background: #F4F3FC;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-phone .iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-phone .iphone-screen::after {
  /* Subtle screen glare — 3D depth cue */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.12) 0%, transparent 35%, transparent 65%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  z-index: 6;
  border-radius: 33px;
}
.hero-phone .iphone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0a0d14;
  border-radius: 999px;
  z-index: 5;
}
.hero-phone .iphone-side-btn {
  position: absolute;
  width: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(60,70,90,0.6));
  border-radius: 2px;
}
.hero-phone .iphone-side-btn.mute { left: -3px; top: 90px; height: 26px; }
.hero-phone .iphone-side-btn.vol-up { left: -3px; top: 130px; height: 44px; }
.hero-phone .iphone-side-btn.vol-down { left: -3px; top: 186px; height: 44px; }
.hero-phone .iphone-side-btn.power { right: -3px; top: 130px; height: 70px; }

/* Big Calevia shield in front of phone */
.hero-shield {
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 3;
  filter: drop-shadow(0 30px 50px rgba(0, 40, 80, 0.5));
  animation: shieldFloat 4s ease-in-out infinite alternate;
}
.hero-shield svg { width: 100%; height: auto; display: block; }
.hero-brand-label {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@keyframes shieldFloat {
  0% { transform: translateY(-52%); }
  100% { transform: translateY(-48%); }
}

@media (max-width: 960px) {
  .hero-visual { height: 460px; }
  .hero-stage { max-width: 380px; }
  .hero-phone { width: 200px; height: 406px; }
  .hero-shield { width: 260px; left: -4%; }
  .flare { width: 340px; height: 340px; }
}
@media (max-width: 500px) {
  .hero-phone { width: 170px; height: 345px; }
  .hero-shield { width: 220px; }
}

/* Rating chip */
.rating-chip {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.2);
}
.rating-chip .score {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rating-chip .stars { color: #F5B83A; font-size: 13px; letter-spacing: 1px; }
.rating-chip .count { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }

/* Privacy badge */
.privacy-badge {
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
}
.privacy-badge .shield {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, #E8F5EE 0%, #D4EDE0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.privacy-badge .t1 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.privacy-badge .t2 { font-size: 13px; color: var(--ink-3); line-height: 1.4; }

/* Hero visual — realistic iPhone frames */
.hero-visual {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phones {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 580px;
}
.iphone {
  position: absolute;
  width: 250px;
  height: 508px;
  background: linear-gradient(145deg, #2a3240 0%, #141822 50%, #0a0d14 100%);
  border-radius: 44px;
  padding: 7px;
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,0.55),
    0 12px 30px -6px rgba(0,0,0,0.4),
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 0 0 3px rgba(60,70,90,0.6);
  cursor: zoom-in;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.iphone::before {
  /* outer polished rim */
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 45px;
  background: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(0,0,0,0.5) 40%, rgba(255,255,255,0.15) 70%, rgba(0,0,0,0.4));
  z-index: -1;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  position: relative;
  background: #F4F3FC;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.iphone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0a0d14;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}
.iphone-notch::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a3544 0%, #0a0d14 80%);
  box-shadow: inset 0 0 0 1px rgba(80,100,130,0.4);
}

/* Side buttons for realism */
.iphone-side-btn {
  position: absolute;
  width: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(60,70,90,0.6));
  border-radius: 2px;
}
.iphone-side-btn.mute { left: -3px; top: 90px; height: 26px; }
.iphone-side-btn.vol-up { left: -3px; top: 130px; height: 44px; }
.iphone-side-btn.vol-down { left: -3px; top: 186px; height: 44px; }
.iphone-side-btn.power { right: -3px; top: 130px; height: 70px; }

.iphone.hp-back {
  top: 20px;
  left: 10px;
  transform: rotate(-6deg);
  z-index: 1;
}
.iphone.hp-back:hover { transform: rotate(-6deg) translateY(-6px) scale(1.02); }
.iphone.hp-front {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}
.iphone.hp-front:hover { transform: rotate(5deg) translateY(-6px) scale(1.02); }

@media (max-width: 960px) {
  .hero-phones { max-width: 400px; margin: 0 auto; height: 520px; }
  .iphone { width: 220px; height: 448px; }
}
@media (max-width: 500px) {
  .iphone { width: 190px; height: 386px; }
  .hero-phones { height: 440px; }
  .iphone-notch { width: 80px; height: 24px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 35, 0.88);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  animation: zoomIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F4F3FC 0%, #E9EFFB 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #0F1B3D;
  border-radius: 999px;
  z-index: 5;
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  font-size: 12px;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.fc-1 { top: 40px; left: -30px; animation-delay: 0s; }
.fc-2 { bottom: 70px; right: -40px; animation-delay: 1.5s; }
.fc-3 { top: 220px; right: -60px; animation-delay: 0.8s; }

@media (max-width: 960px) {
  .fc-1 { left: 10px; }
  .fc-2 { right: 10px; }
  .fc-3 { right: 0; top: 40%; }
}

/* ——————————————————— SECTIONS ——————————————————— */
section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  padding: 5px 12px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #D7DEF0;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.feature h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.feature p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* Split feature block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-visual { order: -1; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: 0; }
}
.split .section-label { margin-bottom: 14px; }
.split h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.split .lead {
  font-size: 16.5px;
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.55;
}
.split ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
}
.split li .check {
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2FB8A8 0%, #1E8C86 100%);
  box-shadow: 0 2px 6px -2px rgba(30, 140, 134, 0.5), inset 0 1px 0 rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  padding: 6px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.chip.on { background: var(--primary-soft); border-color: #CFD8FA; color: var(--primary); }

/* Dashboard visual — nagebouwd */
.dash-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ——————————————————— DEMO WIDGET ——————————————————— */
.demo-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 10px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 14px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.demo-dots i:nth-child(1) { background: #FF6057; }
.demo-dots i:nth-child(2) { background: #FFBD2E; }
.demo-dots i:nth-child(3) { background: #28CA42; }
.demo-url {
  flex: 1;
  background: var(--bg-2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  text-align: center;
}

.demo-body {
  min-height: 520px;
  padding: 8px 18px 20px;
}

/* Pricing */
.pricing-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 40px;
  position: relative;
}
.pricing-toggle button {
  padding: 9px 22px;
  background: transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}
.pricing-toggle button.active { color: white; }
.pricing-toggle .thumb {
  position: absolute;
  top: 4px; left: 4px; bottom: 4px;
  background: var(--grad-blue);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 10px -2px rgba(58, 91, 224, 0.4);
  z-index: 1;
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.pricing-toggle-wrap .save-tag {
  position: relative;
  top: 0;
  margin-left: 12px;
  align-self: center;
  padding: 4px 10px;
  background: #E8F8EF;
  color: #1F7E4C;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.25s ease;
}
.price-card.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #3A5BE0 0%, #34C97A 100%) border-box;
  box-shadow: var(--shadow-md);
}
.price-card .tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #2B4BD6 0%, #5A7FEE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-amount .per { font-size: 14px; color: var(--ink-3); }
.price-card .desc { font-size: 14px; color: var(--ink-2); margin: 6px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.price-card li .dot-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #E8F8EF;
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ——————————————————— FAQ ——————————————————— */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: #D7DEF0; }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-size: 14px;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 400px; }

/* ——————————————————— CONTACT ——————————————————— */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; padding: 28px; } }
.contact-info h2 { font-size: 30px; margin: 0 0 14px; letter-spacing: -0.02em; }
.contact-info p { color: var(--ink-2); margin-bottom: 24px; }
.contact-info .privacy-badge { max-width: 100%; margin-top: 0; }
.form-row { display: flex; gap: 12px; }
.form-row > * { flex: 1; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(58, 91, 224, 0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }

/* ——————————————————— FOOTER ——————————————————— */
footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.foot-meta { max-width: 360px; }
.foot-meta p { color: var(--ink-3); font-size: 14px; margin: 10px 0 0; }
.foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; font-weight: 700; margin: 0 0 12px; color: var(--ink); letter-spacing: -0.01em; }
.foot-col a { display: block; font-size: 13.5px; color: var(--ink-3); padding: 4px 0; }
.foot-col a:hover { color: var(--primary); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ——————————————————— TWEAKS PANEL ——————————————————— */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 200;
  font-size: 13px;
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); }
.tweaks-row { margin-bottom: 12px; }
.tweaks-row label { display: block; font-size: 12px; color: var(--ink-2); margin-bottom: 5px; font-weight: 600; }
.tweaks-row select, .tweaks-row input[type=color] {
  width: 100%; padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit;
  background: var(--bg-2); color: var(--ink); font-size: 13px;
}
.tweaks-row input[type=color] { height: 32px; padding: 2px; cursor: pointer; }


/* highlighted word in hero h1 */
.hero h1 .grad {
  background: linear-gradient(90deg, #5EE6A3 0%, #8FF5C8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Hero laptop — realistic MacBook behind phone */
.hero-laptop {
  position: absolute;
  left: -6%;
  top: 50%;
  transform: translateY(-46%) perspective(1400px) rotateX(8deg) rotateY(-14deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  width: 560px;
  z-index: 2;
  filter: drop-shadow(0 45px 60px rgba(0, 15, 50, 0.45));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-laptop-lid {
  position: relative;
  background: linear-gradient(155deg, #3a4050 0%, #242a38 40%, #0f141e 100%);
  border-radius: 14px 14px 4px 4px;
  padding: 14px 14px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -2px 6px rgba(0,0,0,0.45);
}
.hero-laptop-camera {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: radial-gradient(circle at 30% 30%, #3a4050, #0a0d14);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-laptop-screen {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0a0d14;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 4px 18px rgba(0,0,0,0.3);
  aspect-ratio: 16 / 10;
}
.hero-laptop-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-laptop-screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.14) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}
.hero-laptop-base {
  position: relative;
  height: 14px;
  margin: 0 -26px;
  background:
    linear-gradient(180deg, #8a94a8 0%, #c2cad8 25%, #e4e8ef 50%, #9aa3b5 75%, #4a5164 100%);
  border-radius: 0 0 16px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 3px rgba(0,0,0,0.35),
    0 8px 14px -4px rgba(0,0,0,0.4);
}
.hero-laptop-base::before, .hero-laptop-base::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 26px;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), transparent 40%, rgba(0,0,0,0.3));
}
.hero-laptop-base::before { left: 0; border-radius: 0 0 0 16px; }
.hero-laptop-base::after { right: 0; border-radius: 0 0 16px 0; }
.hero-laptop-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.08));
  border-radius: 0 0 8px 8px;
}
.hero-laptop:hover {
  transform: translateY(-48%) perspective(1400px) rotateX(6deg) rotateY(-11deg) rotateZ(-0.5deg) scale(1.02);
}

@media (max-width: 960px) {
  .hero-laptop { width: 440px; left: -10%; }
}
@media (max-width: 720px) {
  .hero-laptop { display: none; }
}


/* === LIQUID METAL PASS === */
/* Reusable gradients + sheens mirroring the app's glossy pills */
:root {
  --grad-metal-blue:   linear-gradient(145deg, #4A7DD8 0%, #2B4BD6 50%, #1E40A8 100%);
  --grad-metal-green:  linear-gradient(145deg, #4BD6A0 0%, #2FA580 55%, #1B8063 100%);
  --grad-metal-violet: linear-gradient(145deg, #8B7BF7 0%, #6E5CE8 55%, #4F3DC7 100%);
  --grad-metal-cyan:   linear-gradient(145deg, #6BC6E8 0%, #4A8FE0 60%, #2B60BE 100%);
  --sheen-top:   linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 45%, transparent 70%);
  --sheen-edge:  inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.08);
  --glass-bg:    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(248,250,254,0.75) 100%);
  --glass-bg-blue: linear-gradient(180deg, rgba(235,243,255,0.9) 0%, rgba(218,232,252,0.75) 100%);
}

/* ---- Buttons: glossy pills with top-sheen highlight ---- */
.btn-primary {
  background: var(--grad-metal-blue);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 10px 26px -8px rgba(30,64,168,0.55),
    0 2px 4px rgba(15,27,61,0.12),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 4px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content:"";
  position:absolute; inset:0;
  background: var(--sheen-top);
  border-radius: inherit;
  pointer-events:none;
}
.btn-primary:hover {
  background: linear-gradient(145deg, #5585D8 0%, #3454D8 50%, #2540C5 100%);
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px -6px rgba(30,64,168,0.65),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.22);
}
.btn-outline, .btn-ghost {
  background: rgba(255,255,255,0.7);
  color: #1E40A8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(15,27,61,0.06),
    0 2px 6px rgba(15,27,61,0.08);
}
.btn-outline:hover, .btn-ghost:hover {
  background: white;
  color: #1E40A8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 4px 12px rgba(15,27,61,0.12);
}

/* Nav buttons keep white-on-blue treatment but with sheen */
.nav .btn-primary {
  background: white;
  color: #1E40A8;
  border: 1px solid rgba(15,27,61,0.06);
  box-shadow:
    0 6px 18px -4px rgba(15,27,61,0.3),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -2px 3px rgba(15,27,61,0.06);
}
.nav .btn-primary::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 60%);
}
.nav .btn-primary:hover { background: #F3F6FF; color: #1E40A8; transform: translateY(-1px); }

/* ---- Section labels: glossy gradient pill ---- */
.section-label {
  background: linear-gradient(145deg, rgba(75,125,220,0.15), rgba(75,125,220,0.08));
  color: #2B4BD6;
  border: 1px solid rgba(75,125,220,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(30,64,168,0.08),
    0 2px 6px rgba(30,64,168,0.08);
  padding: 6px 14px;
  backdrop-filter: blur(6px);
}

/* ---- Cards: liquid-glass finish ---- */
.card,
.price-card,
.audience-card,
.faq-item,
.contact-card,
.split-panel,
.split-block {
  background: var(--glass-bg);
  border: 1px solid rgba(15,27,61,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(15,27,61,0.04) inset,
    0 10px 30px -14px rgba(15,27,61,0.18),
    0 2px 6px rgba(15,27,61,0.05);
  position: relative;
}
.card::before,
.price-card::before,
.audience-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.card > *, .price-card > *, .audience-card > *, .contact-card > * { position: relative; z-index: 1; }

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,245,255,0.88)) padding-box,
    linear-gradient(145deg, #3A5BE0 0%, #34C97A 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 20px 45px -12px rgba(58,91,224,0.35),
    0 4px 10px rgba(15,27,61,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ---- Feature tiles: colored icon chip gets metal gradient + sheen ---- */
.feature-icon,
[class*="feature"] .icon-chip,
.icon-chip {
  background: var(--grad-metal-blue);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 6px 14px -4px rgba(30,64,168,0.4);
  position: relative;
  overflow: hidden;
}
.feature-icon::before,
.icon-chip::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events:none;
}
.feature-icon.green, .icon-chip.green { background: var(--grad-metal-green); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -2px 4px rgba(0,0,0,0.2), 0 6px 14px -4px rgba(47,165,128,0.4); }
.feature-icon.violet, .icon-chip.violet { background: var(--grad-metal-violet); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -2px 4px rgba(0,0,0,0.2), 0 6px 14px -4px rgba(110,92,232,0.4); }
.feature-icon.cyan, .icon-chip.cyan { background: var(--grad-metal-cyan); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -2px 4px rgba(0,0,0,0.2), 0 6px 14px -4px rgba(74,143,224,0.4); }

/* ---- Form inputs: subtle inset metal ---- */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  background: linear-gradient(180deg, #F7F9FD 0%, #FFFFFF 100%);
  border: 1px solid rgba(15,27,61,0.1);
  box-shadow:
    inset 0 1px 2px rgba(15,27,61,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: all 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(43,75,214,0.5);
  box-shadow:
    inset 0 1px 2px rgba(15,27,61,0.06),
    0 0 0 3px rgba(43,75,214,0.15);
}

/* ---- FAQ: softer glass with sheen on open ---- */
.faq-item {
  border-radius: 16px;
}
.faq-item.open {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F7FE 100%);
  border-color: rgba(43,75,214,0.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 14px 32px -14px rgba(43,75,214,0.25);
}

/* ---- Demo carousel arrows: glossy ---- */
.carousel-arrow {
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF2FA 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,27,61,0.08),
    0 6px 18px -6px rgba(15,27,61,0.25);
  border-color: rgba(15,27,61,0.08);
}

/* ---- Tariff/pricing amount: subtle gradient text ---- */
.price-card .amount, .price-amount {
  background: linear-gradient(135deg, #1E40A8 0%, #2FA580 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === END LIQUID METAL PASS === */


/* === NAV LIQUID TREATMENT === */
.nav .nav-links a {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(15,27,61,0.25);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav .nav-links a:hover {
  color: white;
  text-shadow: 0 1px 3px rgba(15,27,61,0.35), 0 0 12px rgba(255,255,255,0.3);
}

/* Inloggen — glass ghost */
.nav .btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(15,27,61,0.1),
    0 4px 12px -2px rgba(15,27,61,0.2);
  font-weight: 500;
}
.nav .btn-ghost:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.12) 100%);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* Maak account aan — white glossy pill */
.nav .btn-primary {
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF2FA 100%);
  color: #1E40A8;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 8px 22px -6px rgba(15,27,61,0.35),
    0 2px 4px rgba(15,27,61,0.1),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 3px rgba(15,27,61,0.06);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.nav .btn-primary::before {
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events:none;
}
.nav .btn-primary:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #E4EAF6 100%);
  color: #1E40A8;
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px -6px rgba(15,27,61,0.4),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 3px rgba(15,27,61,0.08);
}

/* Scrolled nav state keeps legibility */
.nav.scrolled .nav-links a {
  color: rgba(15,27,61,0.85);
  text-shadow: none;
}
.nav.scrolled .nav-links a:hover { color: #2B4BD6; text-shadow: none; }
.nav.scrolled .btn-ghost {
  color: #0F1B3D;
  border-color: rgba(15,27,61,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(240,245,255,0.85));
}
.nav.scrolled .btn-ghost:hover { background: white; border-color: rgba(15,27,61,0.25); }
.nav.scrolled .btn-primary {
  background: linear-gradient(145deg, #4A7DD8 0%, #2B4BD6 50%, #1E40A8 100%);
  color: white;
  border-color: rgba(255,255,255,0.2);
  box-shadow:
    0 8px 22px -6px rgba(30,64,168,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.nav.scrolled .btn-primary::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 60%);
}
.nav.scrolled .btn-primary:hover {
  background: linear-gradient(145deg, #5585D8 0%, #3454D8 50%, #2540C5 100%);
  color: white;
}


/* === NAV CAPSULE TREATMENT === */
/* Glass capsule wrapping the link group */
.nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(15,27,61,0.12),
    0 6px 22px -8px rgba(15,27,61,0.3);
  position: relative;
}
.nav .nav-links::before {
  content: "";
  position: absolute;
  top: 1px; left: 1px; right: 1px;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.nav .nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 3px rgba(15,27,61,0.35);
  position: relative;
  z-index: 1;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav .nav-links a:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.18) 100%);
  color: white;
  text-shadow: 0 1px 4px rgba(15,27,61,0.45), 0 0 12px rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(15,27,61,0.1),
    0 3px 10px -3px rgba(15,27,61,0.2);
}

/* Scrolled: switch capsule to light glass */
.nav.scrolled .nav-links {
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(240,245,255,0.7) 100%);
  border-color: rgba(15,27,61,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,27,61,0.06),
    0 6px 22px -10px rgba(15,27,61,0.25);
}
.nav.scrolled .nav-links a {
  color: #1E2E5A;
  text-shadow: none;
  font-weight: 600;
}
.nav.scrolled .nav-links a:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF2FA 100%);
  color: #1E40A8;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 3px 10px -3px rgba(43,75,214,0.2);
}


/* Carousel — auto-play with smooth transitions */
.carousel-root { max-width: 1100px; margin: 0 auto; }
.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-lg);
}
.carousel-track {
  display: flex;
  transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  opacity: 0.5;
  transform: scale(0.96);
  transition: opacity 1.5s cubic-bezier(0.65,0,0.35,1), transform 1.5s cubic-bezier(0.65,0,0.35,1), filter 1.5s ease;
  filter: saturate(0.85);
}
.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}
.carousel-caption {
  text-align: center;
  padding: 4px 0 18px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.2,0.8,0.2,1);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(238,242,250,0.9) 100%);
  border: 1px solid rgba(15,27,61,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(15,27,61,0.08),
    0 6px 18px -6px rgba(15,27,61,0.25);
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 10px 24px -6px rgba(15,27,61,0.3);
}
.carousel-arrow.left { left: 14px; }
.carousel-arrow.right { right: 14px; }

/* Dots with progress-bar fill on the active one */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.carousel-dots .cd {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,27,61,0.18);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.65,0,0.35,1);
  padding: 0;
  overflow: hidden;
}
.carousel-dots .cd.on {
  background: rgba(15,27,61,0.12);
  width: 32px;
  border-radius: 999px;
}
.carousel-dots .cd-progress {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--primary), #34C97A);
  animation: cdFill 3s linear forwards;
  border-radius: 999px;
}
@keyframes cdFill {
  from { width: 0%; }
  to   { width: 100%; }
}


/* Language picker */
/* Moving dot */
.route-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.25),
    0 0 14px rgba(255,255,255,0.7);
  z-index: 2;
  animation: routeMove 5.6s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes routeMove {
  0%,   6%  { left: 0%;    }
  25%, 31%  { left: 33.33%; }
  50%, 56%  { left: 66.66%; }
  75%, 81%  { left: 100%;  }
  100%      { left: 100%;  }
}

@media (max-width: 720px) {
  .route-bar-wrap { margin-top: -24px; padding: 0 12px; }
  .route-bar { padding: 14px 20px; }
  .route-node { width: 32px; height: 32px; }
  .route-node svg { width: 14px; height: 14px; }
  .route-node::after { font-size: 10px; }
}


/* Moving green dot */
.route-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34C97A;
  box-shadow: 0 0 0 3px rgba(52,201,122,0.2), 0 0 10px rgba(52,201,122,0.5);
  z-index: 2;
  animation: moveDot 4s ease-in-out infinite;
}
@keyframes moveDot {
  0%   { left: 0%; }
  33%  { left: 33.33%; }
  66%  { left: 66.66%; }
  100% { left: 100%; }
}


/* Route bar — thin dashed line with round icon markers */
.route-bar {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 40px;
  margin: 8px 0 0;
  pointer-events: none;
}
.route-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.route-nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-node {
  position: absolute;
  top: 50%;
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 3px 8px -2px rgba(15,27,61,0.25);
}
.route-node svg { width: 13px; height: 13px; }
.route-node.c1,
.route-node.c2 { background: linear-gradient(135deg, #3A5BE0, #5A7FEE); }
.route-node.c3,
.route-node.c4 { background: linear-gradient(135deg, #2FA580, #4BD6A0); }

.route-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34C97A;
  box-shadow: 0 0 0 3px rgba(52,201,122,0.22), 0 0 10px rgba(52,201,122,0.55);
  animation: routeDotMove 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes routeDotMove {
  0%   { left: 15%;  transform: translate(-50%, -50%); }
  25%  { left: 40%;  transform: translate(-50%, -50%); }
  50%  { left: 65%;  transform: translate(-50%, -50%); }
  75%  { left: 90%;  transform: translate(-50%, -50%); }
  100% { left: 15%;  transform: translate(-50%, -50%); }
}

/* ——————————————————— HERO sparkle & polish ——————————————————— */

/* FX layer — floating orbs + meteor streaks over the galaxy */
.hero-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 85%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 85%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: orbDrift 22s ease-in-out infinite alternate;
}
.hero-orb.o1 {
  width: 340px; height: 340px;
  left: -60px; top: 8%;
  background: radial-gradient(circle, rgba(120,180,255,0.9) 0%, rgba(120,180,255,0) 70%);
  animation-duration: 24s;
}
.hero-orb.o2 {
  width: 280px; height: 280px;
  right: 10%; top: 55%;
  background: radial-gradient(circle, rgba(180,220,255,0.7) 0%, rgba(180,220,255,0) 70%);
  animation-duration: 28s;
  animation-delay: -6s;
}
.hero-orb.o3 {
  width: 220px; height: 220px;
  left: 35%; top: 38%;
  background: radial-gradient(circle, rgba(255,230,200,0.45) 0%, rgba(255,230,200,0) 70%);
  animation-duration: 32s;
  animation-delay: -12s;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Meteor streaks — diagonale lichtstrepen die over de sterren flitsen */
.hero-meteor {
  position: absolute;
  width: 140px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.95) 70%, white 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.9));
  transform: rotate(-28deg);
  opacity: 0;
}
.hero-meteor::after {
  content: "";
  position: absolute;
  right: -2px; top: 50%;
  width: 4px; height: 4px;
  margin-top: -2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.9);
}
.hero-meteor.m1 {
  top: 12%; left: -180px;
  animation: meteorShoot 7s linear infinite;
  animation-delay: 1.2s;
}
.hero-meteor.m2 {
  top: 32%; left: -180px;
  animation: meteorShoot 9s linear infinite;
  animation-delay: 4.5s;
}
.hero-meteor.m3 {
  top: 6%; left: -180px;
  width: 100px;
  animation: meteorShoot 11s linear infinite;
  animation-delay: 7.8s;
}
@keyframes meteorShoot {
  0%   { transform: translate(0, 0) rotate(-28deg); opacity: 0; }
  3%   { opacity: 1; }
  18%  { transform: translate(70vw, 38vh) rotate(-28deg); opacity: 0; }
  100% { transform: translate(70vw, 38vh) rotate(-28deg); opacity: 0; }
}

/* H1 — shimmering gradient sweep op regel 2 + subtiele glow */
[data-hero-h1] { position: relative; }
[data-hero-h1] .hero-h1-a {
  display: inline-block;
  color: white;
  text-shadow: 0 2px 30px rgba(255,255,255,0.15);
  animation: heroFadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) both;
}
[data-hero-h1] .hero-h1-b {
  display: inline-block;
  position: relative;
  color: #B794FF;
  filter: drop-shadow(0 4px 24px rgba(139, 92, 246, 0.45));
  animation: heroFadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) 0.12s both;
  font-style: italic;
}
/* underline under hero-h1-b removed */
@keyframes heroUnderline {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 0.85; }
}
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroShimmer {
  0%, 15%  { background-position: 100% 0; }
  50%      { background-position: -50% 0; }
  85%, 100%{ background-position: -50% 0; }
}
.hero-sub {
  animation: heroFadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) 0.25s both;
}
.hero-cta {
  animation: heroFadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) 0.4s both;
}

/* CTA button — groene glow-halo pulse + shine sweep */
.hero-cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-right: 26px !important;
}
.hero-cta-btn::before {
  /* halo */
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63,183,117,0.55) 0%, rgba(63,183,117,0) 70%);
  filter: blur(10px);
  z-index: -1;
  opacity: 0.85;
  animation: ctaHalo 2.8s ease-in-out infinite;
}
.hero-cta-btn::after {
  /* shine sweep */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.0) 20%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.0) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: ctaShine 3.6s ease-in-out 1.8s infinite;
  pointer-events: none;
}
.hero-cta-btn:hover { transform: translateY(-2px) !important; }
.hero-cta-btn:hover::before { opacity: 1; animation-duration: 1.4s; }
.hero-cta-btn svg { transition: transform 0.25s ease; }
.hero-cta-btn:hover svg { transform: translateX(3px); }
@keyframes ctaHalo {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
@keyframes ctaShine {
  0%   { left: -40%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-meteor, .hero-cta-btn::before, .hero-cta-btn::after,
  [data-hero-h1] .hero-h1-b { animation: none !important; }
  [data-hero-h1] .hero-h1-b {
    background: white;
    -webkit-background-clip: text;
            background-clip: text;
  }
}

.hero-sub-accent { color: #6B4FE8; font-weight: 700; }


/* Hero pill — frosted capsule around sub + cta (matches nav-links) */
.hero-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 30px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.08),
    0 8px 24px -8px rgba(15,27,61,0.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  position: relative;
  max-width: 560px;
}
.hero-pill .hero-sub { margin: 0; }
.hero-pill .hero-cta { margin: 0; }
@media (max-width: 700px){
  .hero-pill { padding: 18px 20px 20px; border-radius: 22px; }
}


/* Pricing shell — transparent frosted container (matches hero-pill) */
.price-shell {
  margin: 32px auto 0;
  max-width: 1040px;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.28) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(15,27,61,0.04),
    0 18px 50px -20px rgba(15,27,61,0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.price-shell .price-grid { margin-top: 0; }
@media (max-width: 780px){
  .price-shell { padding: 18px; border-radius: 28px; }
}



@media (max-width: 640px){
  .nav-pill-links { display: none; }
  .nav-pill-sep { display: none; }
}

.nav-pill-cta .nav-signup {
  padding: 9px 18px !important;
  font-size: 14px;
  border-radius: 16px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 2px rgba(15,27,61,0.25),
    0 6px 14px -6px rgba(15,27,61,0.4);
}
.nav-pill-cta .nav-login { border-radius: 14px; }

/* Nav pill — stat-style gradient capsule (matches app dashboard pills) */
.nav .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px 7px 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #4F6EE8 0%, #3A5BD9 55%, #2C49BF 100%);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(255,255,255,0.08),
    inset 0 -10px 18px -8px rgba(15,27,61,0.35),
    0 10px 24px -10px rgba(58,91,217,0.55),
    0 2px 6px -2px rgba(15,27,61,0.3);
  position: relative;
  overflow: hidden;
}
.nav .nav-pill::before {
  content:'';
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 55%;
  border-radius: 17px 17px 55% 55% / 17px 17px 120% 120%;
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0) 85%);
  pointer-events: none;
  z-index: 0;
}
.nav .nav-pill > * { position: relative; z-index: 1; }

.nav-pill-sep { background: rgba(255,255,255,0.28) !important; }
.nav-pill-cta .nav-signup {
  background: rgba(255,255,255,0.95) !important;
  color: #1E3A8A !important;
  border-radius: 14px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(15,27,61,0.08),
    0 4px 10px -4px rgba(15,27,61,0.3) !important;
}


/* === Nav pill force layout === */
.nav .nav-pill { display: inline-flex !important; flex-wrap: nowrap !important; align-items: center !important; gap: 8px !important; }
.nav .nav-pill-links {
  display: inline-flex !important;
  align-items: center !important;
  gap: 20px !important;
}
.nav .nav-pill-links a {
  color: white !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  white-space: nowrap;
  opacity: 0.95;
}
.nav .nav-pill-sep {
  display: inline-block !important;
  width: 1px !important;
  height: 20px !important;
  background: rgba(255,255,255,0.28) !important;
  margin: 0 4px !important;
  flex-shrink: 0;
}
.nav .nav-pill-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0;
}
.nav .nav-pill-cta .nav-login {
  color: white !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  padding: 6px 10px !important;
  white-space: nowrap;
}
.nav .nav-pill-cta .nav-signup {
  padding: 8px 16px !important;
  font-size: 13.5px !important;
  white-space: nowrap;
}
.nav .nav-pill /* === Nav pill — LIGHT stat-card style (blue variant from app) === */
.nav .nav-pill {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 55%, rgba(219,234,254,0.6) 100%) !important;
  border: 1px solid rgba(191,219,254,0.7) !important;
  border-radius: 14px !important;
  padding: 7px 9px 7px 18px !important;
  box-shadow:
    0 10px 24px rgba(76, 93, 156, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden !important;
  position: relative !important;
}
.nav .nav-pill::before {
  /* glow orb top-right */
  content:'' !important;
  position: absolute !important;
  top: -24px; right: -24px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(96,165,250,0.10) !important;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  inset: auto -24px auto auto !important;
}
.nav .nav-pill > * { position: relative; z-index: 1; }

.nav .nav-pill-links a,
.nav .nav-pill-cta .nav-login {
  color: #1E3A8A !important;
  opacity: 0.92 !important;
  text-shadow: none !important;
}
.nav .nav-pill-links a:hover,
.nav .nav-pill-cta .nav-login:hover { opacity: 1 !important; color: #2563EB !important; }

.nav .nav-pill-sep {
  background: rgba(30,58,138,0.15) !important;
}

.nav .nav-pill-cta .nav-signup {
  background: linear-gradient(180deg, #3B82F6, #2563EB) !important;
  color: white !important;
  border-radius: 10px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 4px 10px -4px rgba(37,99,235,0.5) !important;
}


/* === Hero pill — LIGHT stat-card style (matches nav-pill) === */
.hero-pill {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 55%, rgba(219,234,254,0.6) 100%) !important;
  border: 1px solid rgba(191,219,254,0.7) !important;
  border-radius: 14px !important;
  padding: 22px 28px 24px !important;
  box-shadow:
    0 18px 40px rgba(76,93,156,0.18),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden !important;
  position: relative !important;
}
.hero-pill::before {
  content:'' !important;
  position: absolute !important;
  top: -28px; right: -28px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(96,165,250,0.12) !important;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  inset: auto -28px auto auto !important;
}
.hero-pill > * { position: relative; z-index: 1; }

.hero-pill .hero-sub {
  color: #1E3A8A !important;
  text-shadow: none !important;
}
.hero-pill .hero-sub-accent {
  color: #6B4FE8 !important;
  background: none !important;
  -webkit-text-fill-color: #6B4FE8 !important;
}


/* === Hero CTA — match stat-card rounded-rect style === */
.hero-pill .hero-cta-btn {
  border-radius: 14px !important;
  padding: 14px 22px !important;
  background: linear-gradient(180deg, #3B82F6, #2563EB) !important;
  color: white !important;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 2px rgba(15,27,61,0.15),
    0 10px 24px -8px rgba(37,99,235,0.55),
    0 2px 6px -2px rgba(15,27,61,0.2) !important;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  position: relative;
}
.hero-pill .hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 100%);
  border-radius: 14px 14px 60% 60% / 14px 14px 120% 120%;
  pointer-events: none;
}
.hero-pill .hero-cta-btn > * { position: relative; z-index: 1; }


/* === Hero CTA — green variant === */
.hero-pill .hero-cta-btn {
  background: linear-gradient(180deg, #10B981, #059669) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 2px rgba(6,78,59,0.18),
    0 10px 24px -8px rgba(5,150,105,0.55),
    0 2px 6px -2px rgba(15,27,61,0.2) !important;
}


/* === Hero H1 part-B — white to mint gradient === */
.hero-h1-b {
  background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(167,243,208,0.28));
}


/* ============= Language picker ============= */
/* details-based lang picker */


/* Language picker */
.lang-picker {
  position: relative;
  display: inline-block;
  margin-left: 2px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
  pointer-events: none; /* clicks go to the invisible select on top */
}
.lang-picker:hover .lang-btn {
  background: var(--bg-2);
  border-color: var(--primary-soft);
}
.lang-flag {
  display: inline-flex;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15,27,61,0.08);
  flex: 0 0 auto;
}
.lang-flag svg { width: 100%; height: 100%; display: block; }
.lang-code { letter-spacing: 0.04em; }
.lang-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 16px;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}


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



/* ——— Nav chips: 2-button compact nav ——— */
.nav-chips {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-chip {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 112px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  color: white;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.nav-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.12) 42%, rgba(255,255,255,0) 52%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  z-index: 2;
}
.nav-chip::after {
  content: "";
  position: absolute;
  top: 1px; left: 8%; right: 8%;
  height: 40%;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 100%);
  filter: blur(0.3px);
  pointer-events: none;
  z-index: 3;
  opacity: 0.85;
}
.nav-chip:hover { transform: translateY(-1px); filter: brightness(1.05); }
.nav-chip:active { transform: translateY(0); filter: brightness(0.97); }
.nav-chip > * { position: relative; z-index: 4; }
.nav-chip .nav-chip-ico { display: inline-flex; }
.nav-chip .nav-chip-ico svg { width: 18px; height: 18px; display: block; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25)); }
.nav-chip .nav-chip-label { display: block; }
.nav-chip-login {
  background: linear-gradient(180deg, #8A6EFF 0%, #6B4FE8 35%, #4E35C9 70%, #3B269E 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -2px 3px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 6px 14px -4px rgba(75,53,201,0.55),
    0 2px 4px rgba(15,27,61,0.25) !important;
}
.nav-chip-login:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 3px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 10px 20px -4px rgba(75,53,201,0.65),
    0 3px 6px rgba(15,27,61,0.28) !important;
}
.nav-chip-signup {
  background: linear-gradient(180deg, #3ED6A8 0%, #26B88F 35%, #109772 70%, #0A7E5D 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -2px 3px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 6px 14px -4px rgba(14,158,115,0.55),
    0 2px 4px rgba(15,27,61,0.25) !important;
}
.nav-chip-signup:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 3px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 10px 20px -4px rgba(14,158,115,0.65),
    0 3px 6px rgba(15,27,61,0.28) !important;
}

/* Taalpicker iets kleiner */
.lang-picker { transform: scale(0.70); transform-origin: center; }

/* ——— MOBILE ——— */
@media (max-width: 860px) {
  .logo img, .logo-lg img { height: 80px !important; width: auto !important; }
  .nav-inner { gap: 10px; align-items: center; }
  .nav-pill {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    gap: 8px !important;
  }
  .nav-chips { gap: 6px !important; }
  .nav-chip { min-width: 0 !important; width: auto !important; height: 40px !important; padding: 0 14px !important; font-size: 13px !important; border-radius: 11px !important; gap: 6px !important; }
  .nav-chip .nav-chip-ico svg { width: 16px; height: 16px; }
  .lang-picker { transform: scale(0.64); }

  /* Hero content centreren op mobiel */
  .hero h1,
  .hero .hero-sub,
  .hero [data-hero-h1] { text-align: center !important; }
  .hero .hero-cta { justify-content: center !important; display: flex !important; }
  .hero-pill { align-items: center !important; text-align: center !important; width: 100% !important; justify-content: center !important; }
  .hero .container,
  .hero-copy { text-align: center !important; align-items: center !important; }
  .hero-cta-btn { margin-left: auto !important; margin-right: auto !important; }

  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden !important; }
}

@media (max-width: 480px) {
  .logo img, .logo-lg img { height: 72px !important; }
  .nav-chip { height: 36px !important; padding: 0 11px !important; font-size: 12px !important; gap: 5px !important; }
  .nav-chip .nav-chip-ico svg { width: 15px; height: 15px; }
  .nav-chip .nav-chip-label { letter-spacing: -0.01em; }
  .lang-picker { transform: scale(0.6); }
}

/* Hero CTA override — teal i.p.v. groen */
.hero-cta-btn.btn-primary {
  background: linear-gradient(180deg, #2FB8A8 0%, #1E8C86 100%) !important;
  box-shadow: 0 6px 16px -4px rgba(30, 140, 134, 0.5), inset 0 1px 0 rgba(255,255,255,0.22) !important;
}
.hero-cta-btn.btn-primary:hover {
  box-shadow: 0 10px 22px -4px rgba(30, 140, 134, 0.6) !important;
}
.hero-cta-btn::before {
  background: radial-gradient(circle, rgba(47,184,168,0.55) 0%, rgba(47,184,168,0) 70%) !important;
}

/* ——————————————————— MOBILE POLISH (user feedback) ——————————————————— */
/* 1) Logo grooter op mobiel; 2) hero-tekst niet achter header; 3) blauwe bg niet te ruim onder telefoon; 4) login chip zichtbaar */
@media (max-width: 860px) {
  /* Bigger logo on mobile (user: "logo moet grooooter") */
  .logo img,
  .logo-lg img { height: 128px !important; }

  /* More breathing room at top so hero text clears the header stack */
  .hero { padding: 180px 0 24px !important; }

  /* Shrink the blue area under the phone — less empty blue space */
  .hero-bg { bottom: -40px !important; }
}

@media (max-width: 640px) {
  /* On narrow phones: bigger logo still, and tighten further */
  .logo img,
  .logo-lg img { height: 72px !important; }

  /* Nav chips row must always show the login chip (chip-5) */
  .nav-chips {
    flex-wrap: nowrap !important;
    overflow-x: visible !important;
  }
  .nav-chip-5 {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Hero padding on narrow phones: enough clearance for 2-row header */
  .hero { padding: 170px 0 20px !important; }

  /* Trim the blue wash at bottom further on narrow phones */
  .hero-bg { bottom: -20px !important; }
  .hero-grid { gap: 14px !important; }
}


/* ——————————————————— MOBILE DENSITY FIX ——————————————————— */
/* User ervaart "eindeloos scrollen" — verminder verticale padding tussen secties op mobiel */
@media (max-width: 640px) {
  section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .pricing { padding-top: 48px !important; padding-bottom: 48px !important; }
  .price-card { padding: 28px 22px !important; }
  .price-card h3 { font-size: 20px !important; }
  .split { padding-top: 48px !important; padding-bottom: 48px !important; gap: 32px !important; }
  .audience-section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .features-grid { padding-top: 48px !important; padding-bottom: 48px !important; }
  .faq-section { padding-top: 56px !important; padding-bottom: 56px !important; }
  footer { padding-top: 48px !important; padding-bottom: 32px !important; }
}


/* Lang picker — invisible select layered over the visible button */
.lang-picker select,
.lang-picker .lang-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  font: inherit;
  z-index: 2;
}

