/* ============================================================
   DirectSMS van Provalue — Marketing site
   Built on the Provalue DirectSMS design system tokens.
   ============================================================ */

:root {
  --navy: #1E2878;
  --navy-700: #2A357A;
  --navy-600: #3B4690;
  --navy-500: #4F5AA8;
  --navy-100: #E4E7F4;
  --navy-50: #F2F4FB;

  --gray-900: #1F2024;
  --gray-800: #2F3137;
  --gray-700: #4A4D54;
  --gray-600: #6B6E76;
  --gray-500: #8C8F97;
  --gray-400: #B4B7BD;
  --gray-300: #D6D8DD;
  --gray-200: #E7E9EC;
  --gray-100: #F2F3F5;
  --gray-50: #F8F9FB;
  --white: #FFFFFF;

  --green: #2E7D4A;
  --green-bg: #E3F2E8;
  --amber: #B5781A;

  --fg-1: var(--gray-900);
  --fg-2: var(--gray-700);
  --fg-3: var(--gray-600);

  --shadow-1: 0 1px 2px rgba(31, 32, 36, .06), 0 1px 1px rgba(31, 32, 36, .04);
  --shadow-2: 0 4px 16px rgba(31, 32, 36, .08), 0 1px 3px rgba(31, 32, 36, .05);
  --shadow-3: 0 18px 50px rgba(30, 40, 120, .18), 0 4px 12px rgba(31, 32, 36, .08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg-1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  margin: 0;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.kicker--center {
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-700);
  box-shadow: 0 8px 22px rgba(30, 40, 120, .28);
}

.btn--primary:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy-50);
}

.btn--white {
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn--ghost-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn--sm {
  height: 42px;
  padding: 0 18px;
  font-size: 14.5px;
}

.btn--lg {
  height: 56px;
  padding: 0 30px;
  font-size: 17px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.site-header .logo img {
  height: 38px;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: 12px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-2);
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}

.site-nav a:hover {
  color: var(--navy);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .login {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-2);
  padding: 0 6px;
}

.header-actions .login:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% -10%, var(--navy-50), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
}

.hero h1 .accent {
  color: var(--navy);
}

.hero .lead {
  margin-top: 22px;
  font-size: 20px;
  color: var(--fg-2);
  max-width: 30em;
  line-height: 1.55;
}

.hero .lead b {
  color: var(--fg-1);
  font-weight: 600;
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-3);
  font-size: 14.5px;
}

.hero-trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-bg);
}

/* phone visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 300px;
  background: #0d0e12;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-3);
  z-index: 2;
}

.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0d0e12;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone__screen {
  background: linear-gradient(180deg, #f4f5f8, #eceef3);
  border-radius: 32px;
  min-height: 540px;
  padding: 44px 16px 24px;
}

.sms-day {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-weight: 600;
}

.sms {
  background: #fff;
  border-radius: 18px 18px 18px 6px;
  padding: 13px 15px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--gray-800);
  box-shadow: 0 2px 8px rgba(31, 32, 36, .07);
  max-width: 86%;
  margin-bottom: 6px;
  opacity: 1;
  animation: pop .5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .sms {
    animation: none;
  }
}

.sms__from {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: .01em;
}

.sms__meta {
  font-size: 11px;
  color: var(--gray-400);
  margin: 2px 0 18px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sms__meta svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}

@keyframes pop {
  from {
    transform: translateY(10px) scale(.98);
  }

  to {
    transform: none;
  }
}

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  padding: 14px 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .big {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 12.5px;
  color: var(--fg-3);
  line-height: 1.25;
}

.hero-badge--a {
  top: 64px;
  left: -8px;
  animation: float 5s ease-in-out infinite;
}

.hero-badge--b {
  bottom: 56px;
  right: -10px;
  animation: float 5s ease-in-out infinite .8s;
}

.hero-badge .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge .ic svg {
  width: 20px;
  height: 20px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* ============================================================
   Logos / trust strip
   ============================================================ */
.trust-strip {
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}

.trust-strip .wrap {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip .label {
  font-size: 13.5px;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-strip .sectors {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip .sector {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--fg-2);
  font-size: 15px;
}

.trust-strip .sector svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section {
  padding: 92px 0;
}

.section-head {
  max-width: 640px;
}

.section-head--center {
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 16px;
}

.section-head p {
  margin-top: 18px;
  font-size: 19px;
  color: var(--fg-2);
  line-height: 1.55;
}

/* ---------- Stat band ---------- */
.statband {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}

.statband .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.statband .n {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.statband .l {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.4;
}

.statband .sep {
  width: 1px;
  background: rgba(255, 255, 255, .16);
}

/* ---------- Features ---------- */
.features {
  background: var(--gray-50);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.feature {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--navy-100);
}

.feature .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature .ic svg {
  width: 25px;
  height: 25px;
}

.feature h3 {
  font-size: 20px;
}

.feature p {
  margin-top: 10px;
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- No-show split ---------- */
.split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 16px;
}

.split .lead {
  margin-top: 18px;
  font-size: 19px;
  color: var(--fg-2);
}

.checks {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.checks li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--fg-1);
}

.checks .tick {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.checks .tick svg {
  width: 15px;
  height: 15px;
}

.split-cta {
  margin-top: 34px;
}

.bigstat-card {
  background: linear-gradient(150deg, var(--navy) 0%, #161d5e 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-3);
}

.bigstat-card .row {
  display: flex;
  gap: 40px;
}

.bigstat-card .n {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.bigstat-card .n.sm {
  font-size: 46px;
}

.bigstat-card .l {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.4;
}

.bigstat-card .quote {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.bigstat-card .by {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
}

/* ---------- Sectors ---------- */
.sectors-sec {
  background: var(--gray-50);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.sector-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sector-card.link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--navy-100);
}

.sector-card .ic {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-card .ic svg {
  width: 27px;
  height: 27px;
}

.sector-card h3 {
  font-size: 18px;
}

.sector-card p {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--fg-3);
}

.sector-card .arrow {
  margin-left: auto;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .18s ease;
}

.sector-card.link:hover .arrow {
  opacity: 1;
  transform: none;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 54px;
  position: relative;
}

.step {
  position: relative;
}

.step .num {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy-100);
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 19px;
}

.step p {
  margin-top: 9px;
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--gray-50);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
  align-items: start;
}

.price {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
}

.price.featured {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-2);
}

.price .tag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.price .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.price .credits {
  margin-top: 16px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.price .credits span {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0;
}

.price .from {
  margin-top: 8px;
  font-size: 16px;
  color: var(--fg-2);
}

.price .from b {
  color: var(--fg-1);
  font-size: 22px;
  font-weight: 800;
}

.price ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.price li {
  display: flex;
  gap: 11px;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.45;
}

.price li .tick {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.price li .tick svg {
  width: 12px;
  height: 12px;
}

.price .btn {
  margin-top: 28px;
  width: 100%;
}

.price-note {
  text-align: center;
  margin-top: 30px;
  color: var(--fg-3);
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  text-align: left;
  font-size: 19px;
  font-weight: 600;
  color: var(--fg-1);
}

.faq-q .chev {
  margin-left: auto;
  flex: 0 0 24px;
  color: var(--navy);
  transition: transform .2s ease;
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-a-inner {
  padding: 0 4px 26px 42px;
  color: var(--fg-2);
  font-size: 16.5px;
  line-height: 1.6;
}

.faq-a-inner b {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Final CTA ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(79, 90, 168, .5), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, #141a52 100%);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.cta-band p {
  margin: 18px auto 0;
  font-size: 20px;
  color: rgba(255, 255, 255, .82);
  max-width: 36em;
}

.cta-band .hero-cta {
  justify-content: center;
  margin-top: 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, .66);
  padding: 64px 0 32px;
  font-size: 15px;
}

.site-footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer .logo-white img {
  height: 40px;
  margin-bottom: 18px;
}

.site-footer .blurb {
  max-width: 26em;
  line-height: 1.6;
}

.site-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
  font-weight: 700;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .contact a {
  color: #fff;
  font-weight: 600;
}

.site-footer .bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

/* ============================================================
   Sub-page: breadcrumb + compact page hero
   ============================================================ */
.breadcrumb {
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb .sep {
  color: var(--gray-300);
}

.page-hero {
  background:
    radial-gradient(1000px 500px at 82% -10%, var(--navy-50), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}

.page-hero .breadcrumb {
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
}

.page-hero h1 .accent {
  color: var(--navy);
}

.page-hero .lead {
  margin-top: 20px;
  font-size: 19.5px;
  color: var(--fg-2);
  max-width: 30em;
  line-height: 1.55;
}

.page-hero .lead b {
  color: var(--fg-1);
  font-weight: 600;
}

/* ---------- Use-case message cards ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.msg-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.msg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--navy-100);
}

.msg-card .tagrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.msg-card .tagrow .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-card .tagrow .ic svg {
  width: 21px;
  height: 21px;
}

.msg-card .tagrow .t {
  font-size: 16px;
  font-weight: 700;
}

.msg-bubble {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px 14px 14px 5px;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-800);
}

.msg-bubble .from {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.msg-card .when {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.msg-card .when svg {
  width: 14px;
  height: 14px;
  color: var(--navy-500);
}

/* ---------- Other sectors strip ---------- */
.othersectors {
  background: var(--gray-50);
}

.othersectors .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.othersectors .chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.othersectors .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-2);
  transition: all .15s ease;
}

.othersectors a.chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

.othersectors .chip svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-1);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row.two>div {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fg-1);
}

.form-row input,
.form-row textarea,
.form-row select {
  font-family: inherit;
  font-size: 16px;
  color: var(--fg-1);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(79, 90, 168, .18);
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-tile {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-tile .ic {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-tile .ic svg {
  width: 22px;
  height: 22px;
}

.contact-tile h3 {
  font-size: 17px;
}

.contact-tile p {
  margin-top: 4px;
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.5;
}

.contact-tile a {
  color: var(--navy);
  font-weight: 600;
}

.form-note {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================================
   Hero with person cut-out (commercial variant)
   ============================================================ */
.hero-photo {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo .blob {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--navy-100), var(--navy-50) 70%);
}

.hero-photo .person {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  display: block;
}

.float-sms {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px 16px 16px 5px;
  padding: 13px 15px;
  box-shadow: var(--shadow-3);
  width: 256px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--gray-800);
  animation: pop .5s ease both;
}

.float-sms .from {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.float-sms .meta {
  margin-top: 8px;
  font-size: 11px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.float-sms .meta svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}

.float-sms--hero {
  left: -6px;
  bottom: 88px;
}

@media (prefers-reduced-motion: reduce) {
  .float-sms {
    animation: none;
  }
}

/* ============================================================
   Media frame — real photo with floating overlays (afspraken)
   ============================================================ */
.media-frame {
  position: relative;
}

.media-frame .pic {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 5 / 4;
}

.media-frame .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  top: -20px;
  right: -14px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-badge .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-badge .ic svg {
  width: 21px;
  height: 21px;
}

.media-badge .big {
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}

.media-badge .lbl {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}

.media-sms {
  position: absolute;
  left: -24px;
  bottom: 26px;
  z-index: 2;
  width: 252px;
  background: #fff;
  border-radius: 16px 16px 16px 5px;
  padding: 13px 15px;
  box-shadow: var(--shadow-3);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--gray-800);
}

.media-sms .from {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.media-sms .meta {
  margin-top: 7px;
  font-size: 11px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.media-sms .meta svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.quote-card {
  margin-top: 34px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 24px 26px;
}

.quote-card p {
  font-size: 17.5px;
  line-height: 1.5;
  font-weight: 500;
}

.quote-card .by {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ============================================================
   Reviews slider (Trustpilot-style)
   ============================================================ */
.reviews {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.reviews .wrap {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 36px;
  align-items: center;
}

.rev-summary {
  text-align: left;
}

.rev-summary .word {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.rev-summary .count {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 12px 0 14px;
}

.rev-summary .tp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
}

.rev-summary .tp svg {
  width: 18px;
  height: 18px;
  color: #00b67a;
}

.tp-stars {
  display: inline-flex;
  gap: 3px;
}

.tp-stars .s {
  width: 30px;
  height: 30px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-stars .s svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
}

.tp-stars.sm .s {
  width: 22px;
  height: 22px;
}

.tp-stars.sm .s svg {
  width: 15px;
  height: 15px;
}

.rev-slider {
  position: relative;
  min-width: 0;
}

.rev-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rev-track::-webkit-scrollbar {
  display: none;
}

.rev-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}

.rev-card .stars-row {
  margin-bottom: 14px;
}

.rev-card h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.rev-card p {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
}

.rev-card .who {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--fg-3);
}

.rev-card .who b {
  color: var(--fg-1);
  font-weight: 600;
}

.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: all .15s ease;
  z-index: 2;
}

.rev-nav:hover {
  border-color: var(--navy);
  background: var(--navy-50);
}

.rev-nav svg {
  width: 20px;
  height: 20px;
}

.rev-nav--prev {
  left: -20px;
}

.rev-nav--next {
  right: -20px;
}

/* ============================================================
   Use-case 4-blocks (cm.com-style)
   ============================================================ */
.usecases {
  background: var(--gray-50);
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.uc-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--navy-100);
}

.uc-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.uc-card .ic svg {
  width: 26px;
  height: 26px;
}

.uc-card h3 {
  font-size: 19px;
}

.uc-card p {
  margin-top: 10px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}

.uc-card .more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uc-card .more svg {
  width: 16px;
  height: 16px;
  transition: transform .15s ease;
}

.uc-card:hover .more svg {
  transform: translateX(3px);
}

/* ============================================================
   Registration page
   ============================================================ */
.reg-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 52px 28px 84px;
}

.reg-back {
  font-size: 14px;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
}

.reg-back:hover {
  color: var(--navy);
}

.reg-back svg {
  width: 16px;
  height: 16px;
}

.reg-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.reg-form {
  padding: 44px 44px 40px;
}

.reg-form h1 {
  font-size: 30px;
  letter-spacing: -.02em;
}

.reg-form .sub {
  margin-top: 10px;
  color: var(--fg-2);
  font-size: 16px;
}

.reg-form .divider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 22px;
}

.reg-form .divider-row .ln {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.reg-form .divider-row span {
  font-size: 12.5px;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.reg-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 18px 0 6px;
}

.reg-check input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
  flex: 0 0 17px;
}

.reg-check label {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

.reg-check a {
  color: var(--navy);
  font-weight: 600;
}

.reg-aside {
  background: linear-gradient(162deg, var(--navy) 0%, #141a52 100%);
  color: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
}

.reg-aside .gift {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.reg-aside .gift svg {
  width: 16px;
  height: 16px;
}

.reg-aside h2 {
  font-size: 26px;
  margin-top: 22px;
  letter-spacing: -.02em;
}

.reg-benefits {
  margin-top: 24px;
  display: grid;
  gap: 15px;
}

.reg-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.45;
}

.reg-benefits .tick {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-benefits .tick svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.reg-aside .mini-sms {
  margin-top: auto;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px 14px 14px 5px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
}

.reg-aside .mini-sms .from {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 5px;
}

.reg-aside .trust {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.reg-aside .trust svg {
  width: 15px;
  height: 15px;
}

.reg-success {
  text-align: center;
  padding: 60px 44px;
  max-width: 520px;
  margin: 0 auto;
}

.reg-success .badge-ok {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.reg-success .badge-ok svg {
  width: 36px;
  height: 36px;
}

.reg-success h1 {
  font-size: 28px;
}

.reg-success p {
  margin-top: 12px;
  color: var(--fg-2);
  font-size: 16.5px;
  line-height: 1.6;
}

.reg-success .btn {
  margin-top: 28px;
}

/* registration — grouped fields, aanhef, package picker */
.reg-group-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 30px 0 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--gray-200);
}

.reg-group-title:first-of-type {
  margin-top: 6px;
}

.req {
  color: #B5302A;
}

.seg {
  display: flex;
  gap: 10px;
}

.seg label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.seg label:hover {
  border-color: var(--navy-500);
}

.seg input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seg label:has(input:checked) {
  border-color: var(--navy);
  background: var(--navy-50);
  color: var(--navy);
  font-weight: 600;
}

.pkg-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pkg-opt {
  position: relative;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  padding: 18px 14px 16px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.pkg-opt:hover {
  border-color: var(--navy-500);
}

.pkg-opt:has(input:checked) {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
  background: var(--navy-50);
}

.pkg-opt input {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

.pkg-opt .tag {
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.pkg-opt .nm {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
  padding-right: 24px;
}

.pkg-opt .cr {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
  letter-spacing: -.02em;
}

.pkg-opt .cr small {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-3);
  display: block;
  letter-spacing: 0;
  margin-top: 2px;
}

.pkg-opt .pr {
  font-size: 13.5px;
  color: var(--fg-2);
  margin-top: 8px;
  font-weight: 600;
}

.reg-steps {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.reg-steps li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.reg-steps .no {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-steps .tx {
  font-size: 15.5px;
  line-height: 1.4;
  padding-top: 3px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .uc-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .rev-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .rev-nav--prev {
    left: -8px;
  }

  .rev-nav--next {
    right: -8px;
  }

  .reg-card {
    grid-template-columns: 1fr;
  }

  .reg-aside {
    order: -1;
  }

  .hero-photo {
    min-height: 0;
    margin-top: 8px;
  }

  .hero-photo .blob {
    width: 360px;
    height: 360px;
  }

  .media-frame {
    max-width: 520px;
    margin: 0 auto;
  }

  .page-hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero .hero-visual {
    order: -1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 56px;
  }

  .hero-visual {
    order: -1;
  }

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

  .feature-grid,
  .sector-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 26px;
  }

  .statband .grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .statband .sep {
    display: none;
  }

  .site-footer .top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .float-sms--hero {
    left: 0;
    bottom: 12px;
    width: 220px;
  }

  .media-sms {
    left: 0;
    width: 210px;
  }

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

  .rev-card {
    flex: 0 0 100%;
  }

  .pkg-options {
    grid-template-columns: 1fr;
  }

  .reg-form {
    padding: 32px 24px;
  }

  .reg-aside {
    padding: 32px 24px;
  }

  section {
    padding: 64px 0;
  }

  .feature-grid,
  .sector-grid,
  .price-grid,
  .statband .grid {
    grid-template-columns: 1fr;
  }

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

  .othersectors .wrap {
    justify-content: flex-start;
  }

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

  .bigstat-card .row {
    gap: 28px;
  }

  .bigstat-card .n {
    font-size: 48px;
  }

  .hero-cta .btn,
  .cta-band .btn {
    flex: 1;
  }

  .site-footer .top {
    grid-template-columns: 1fr;
  }

  .header-actions .login {
    display: none;
  }
}