:root {
  --f: #1f4038;
  --f-mid: #2e5947;
  --f-soft: #3d7060;
  --sage-glow: #eaf1ee;
  --rose: #b5405a;
  --rose-h: #c94d68;
  --rose-s: #fdeaee;
  --cream: #faf7f2;
  --linen: #efe9e0;
  --paper: #f5f1ea;
  --ink: #0f1c16;
  --ink-2: #1d2e26;
  --muted: #547060;
  --ml: #8faaa0;
  --wa: #25d366;
  --orange: #e8700a;
  --sh-xs: 0 2px 8px rgba(15, 28, 22, .08);
  --sh-md: 0 10px 36px rgba(15, 28, 22, .13);
  --sh-lg: 0 24px 64px rgba(15, 28, 22, .18);
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 100px;
  --ease: cubic-bezier(.22, .8, .15, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.015em;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.serif {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 80;
}

.c {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.up,
.left,
.right,
.sg > * {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.up {
  transform: translateY(24px);
}

.left {
  transform: translateX(-24px);
}

.right {
  transform: translateX(24px);
}

.sg > * {
  transform: translateY(18px);
}

.up.v,
.left.v,
.right.v,
.sg.v > * {
  opacity: 1;
  transform: none;
}

.sg.v > *:nth-child(1) { transition-delay: 0s; }
.sg.v > *:nth-child(2) { transition-delay: .07s; }
.sg.v > *:nth-child(3) { transition-delay: .14s; }
.sg.v > *:nth-child(4) { transition-delay: .21s; }
.sg.v > *:nth-child(5) { transition-delay: .28s; }
.sg.v > *:nth-child(6) { transition-delay: .35s; }

.topbar {
  background: var(--f);
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

.tb-dot,
.hero-dot,
.pvb-dot,
.tick-pulse {
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}

.tb-dot {
  width: 8px;
  height: 8px;
  background: #34d27a;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 210, 122, .65); }
  70% { box-shadow: 0 0 0 9px rgba(52, 210, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 210, 122, 0); }
}

.tb-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tb-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  transition: color .15s;
}

.tb-links a:hover,
.footer-bot a:hover,
.fc ul li a:hover {
  color: #fff;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--pill);
}

.nav {
  background: #fff;
  border-bottom: 1.5px solid var(--linen);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .25s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(15, 28, 22, .1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--pill);
  transition: all .15s;
}

.nav-links a:hover {
  background: var(--sage-glow);
  color: var(--f);
}

.nav-links a.active {
  color: var(--f);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-btn-ghost,
.btn-outline,
.btn-outline-w,
.btn-ghost-white,
.btn-f,
.btn-r,
.btn-white,
.btn-hero-cv,
.btn-hero-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--pill);
  transition: all .2s var(--ease);
  font-weight: 700;
}

.nav-btn-ghost {
  font-size: 14px;
  color: var(--f);
  border: 1.5px solid var(--f);
  padding: 9px 18px;
}

.nav-btn-ghost:hover,
.btn-outline:hover {
  background: var(--f);
  color: #fff;
}

.nav-btn-rose,
.btn-r,
.btn-hero-search,
.f-btn {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 14px rgba(181, 64, 90, .25);
}

.nav-btn-rose {
  font-size: 14px;
  padding: 9px 20px;
}

.nav-btn-rose:hover,
.btn-r:hover,
.btn-hero-search:hover,
.f-btn:hover {
  background: var(--rose-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 64, 90, .4);
}

/* ── Button individual styles (padding / size / color) ── */
.btn-r {
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  text-decoration: none;
}

.btn-f {
  background: var(--f);
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(31, 64, 56, .22);
}

.btn-f:hover {
  background: #173229;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 64, 56, .35);
}

.btn-outline {
  background: transparent;
  color: var(--f);
  font-size: 15px;
  padding: 14px 28px;
  border: 2px solid var(--f);
  text-decoration: none;
}

.btn-outline-w {
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: var(--rose);
  font-size: 15px;
  padding: 14px 28px;
  text-decoration: none;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .25);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, .5);
  text-decoration: none;
}

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

.cta-band-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero {
  min-height: 100svh;
  background: var(--f-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.92) brightness(1.02);
  transform-origin: 60% center;
  animation: bgDrift 13s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.11) translate3d(2%, -1%, 0); }
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(31, 64, 56, .84) 0%, rgba(31, 64, 56, .64) 44%, rgba(250, 247, 242, .14) 80%, transparent 100%), linear-gradient(0deg, rgba(31, 64, 56, .7) 0%, rgba(250, 247, 242, .06) 64%, transparent 100%);
}

.hero-cutout {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95%;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(-30px 0 60px rgba(0, 0, 0, .45));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .76);
  margin-bottom: 20px;
}

.hero-dot,
.tick-pulse {
  width: 7px;
  height: 7px;
  background: #fff;
}

.hero-h1 {
  font-size: clamp(54px, 7vw, 106px);
  color: #fff;
  max-width: 760px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(15, 28, 22, .3);
}

.hero-h1 .serif-word {
  display: block;
  margin-bottom: 4px;
  font-size: .62em;
  color: rgba(250, 247, 242, .9);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}

.hero-h1 .accentline {
  display: block;
  color: var(--rose);
}

.hero-lead {
  max-width: 620px;
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-panel {
  background: rgba(250, 247, 242, .15);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(250, 247, 242, .28);
  border-radius: var(--r-xl);
  padding: 26px;
  max-width: 540px;
  margin-top: 28px;
}

.hero-panel h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}

.hero-panel p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-panel-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.hf {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hf label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.hf input,
.hf select,
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  border-radius: var(--r);
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.hf input::placeholder,
.hf select,
.f-group input::placeholder,
.f-group textarea::placeholder {
  color: rgba(255, 255, 255, .34);
}

.hf input:focus,
.hf select:focus,
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 3px rgba(181, 64, 90, .15);
}

.hero-panel-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-hero-search {
  width: 100%;
  border: 0;
  padding: 13px 20px;
}

.btn-hero-search svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-hero-cv {
  border: 1.5px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 13px 18px;
}

.btn-hero-cv:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn-outline-w:hover,
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
}

.lead-list,
.signup-benefits,
.footer-links-inline,
.footer-socials,
.faq-help-ctas,
.hero-badges,
.contact-cards,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-list {
  list-style: none;
  flex-direction: column;
  margin-top: 18px;
}

.lead-list li,
.signup-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .84);
  font-size: 14.5px;
}

.lead-list li::before,
.signup-benefits li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--rose);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11L3 7.5l1.4-1.4L6.5 8.2 11.6 3l1.4 1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  margin-top: 2px;
}

.hero-strip {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, rgba(20, 36, 31, .72) 0%, rgba(33, 56, 49, .8) 100%);
  border-top: 1px solid rgba(250, 247, 242, .18);
  backdrop-filter: blur(18px) saturate(1.05);
}

.hero-strip-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-strip-inner::-webkit-scrollbar {
  display: none;
}

.hs-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  color: rgba(250, 247, 242, .98);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-band {
  background: var(--rose);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 0 30px;
}

.section,
.intro,
.process,
.sectors,
.testimonials,
.faq-direct,
.signup,
.contact-section,
.cta-band {
  padding: 88px 0;
}

.intro {
  background: var(--cream);
}

.paper {
  background: var(--paper);
}

.white {
  background: #fff;
}

.kicker,
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rose);
}

.section-h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  color: var(--ink);
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin-top: 14px;
}

.intro-grid,
.process-inner,
.signup-grid,
.contact-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.info-grid,
.card-grid,
.testi-grid,
.sectors-grid {
  display: grid;
  gap: 18px;
}

.info-grid,
.card-grid,
.testi-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.feature-card,
.testi-card,
.contact-card,
.faq-item,
.form-box,
.surface-card {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--linen);
  background: #fff;
}

.info-card,
.feature-card,
.testi-card,
.surface-card {
  padding: 26px 22px;
  transition: all .25s var(--ease);
}

.info-card:hover,
.feature-card:hover,
.testi-card:hover,
.surface-card:hover,
.sector-card:hover,
.sector-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-glow);
  color: var(--f);
  margin-bottom: 16px;
  font-size: 20px;
}

.info-card strong,
.feature-card h3,
.surface-card h3 {
  display: block;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
}

.info-card p,
.feature-card p,
.surface-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pill-list {
  margin-top: 16px;
}

.pill-list span,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 700;
}

.pill-list span {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .15);
}

.tag {
  background: var(--sage-glow);
  color: var(--f-soft);
}

.process {
  background: #fff;
}

.process-visual {
  position: relative;
  min-height: 510px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ef 0%, #efe8de 100%);
  border: 1px solid rgba(15, 28, 22, .08);
  box-shadow: 0 24px 50px rgba(15, 28, 22, .1);
}

.process-visual img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.process-visual:hover img {
  transform: scale(1.02);
}

.pvb {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(15, 28, 22, .12);
}

.pvb-dot {
  width: 11px;
  height: 11px;
  background: #34d27a;
  box-shadow: 0 0 0 6px rgba(52, 210, 122, .12);
}

.pvb-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.ps-item {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1.5px solid var(--linen);
}

.ps-item:last-child {
  border-bottom: 0;
}

.ps-num {
  width: 48px;
  flex-shrink: 0;
  text-align: right;
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--linen);
}

.ps-item:hover .ps-num {
  color: var(--rose);
}

.ps-title {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

.ps-desc {
  font-size: 15px;
  color: var(--muted);
}

.sectors {
  background: #fff;
}

.sectors-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sector-card,
.sector-card-dark {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
}

.sector-card {
  display: flex;
  align-items: flex-end;
  background: var(--f);
}

.sector-card.tall {
  min-height: 410px;
}

.sector-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.sector-card:hover img {
  transform: scale(1.06);
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 28, 22, .08), rgba(15, 28, 22, .76));
}

.sector-body {
  position: relative;
  z-index: 2;
  padding: 22px 20px 20px;
  color: #fff;
}

.sector-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--pill);
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 11px;
  font-weight: 700;
}

.sector-card h4,
.sector-card-dark h4 {
  font-size: clamp(34px, 3vw, 50px);
  color: #fff;
  margin-bottom: 8px;
}

.sector-card p,
.sector-card-dark p {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.55;
}

.sector-card-dark {
  background: var(--f);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sector-card-dark-body {
  padding: 34px;
  color: #fff;
}

.testimonials {
  background: var(--cream);
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: var(--rose-s);
  line-height: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f4b800;
}

.testi-quote {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-2);
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1.5px solid var(--linen);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  color: var(--f);
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.testi-role {
  font-size: 13px;
  color: var(--ml);
}

.faq-direct {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}

.faq-help {
  background: var(--f);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-help h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
}

.faq-help p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.faq-help .faq-help-ctas {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: var(--sh-xs);
  border-color: var(--f-soft);
}

.faq-q {
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--rose);
  transition: transform .25s var(--ease);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.signup {
  background: var(--f-mid);
}

.signup-copy h2,
.signup-copy p,
.signup-copy .kicker,
.contact-dark h2,
.contact-dark p {
  color: #fff;
}

.signup-copy h2,
.cta-band h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  margin-bottom: 20px;
  color: #fff;
}

.signup-copy p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.signup-punch {
  display: block;
  margin: 22px 0;
  padding-left: 16px;
  border-left: 3px solid rgba(250, 247, 242, .92);
  color: rgba(250, 247, 242, .94);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.form-box {
  padding: 36px;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.form-h {
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.form-s {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f-group {
  margin-bottom: 14px;
}

.f-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.f-group select,
.hf select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M6 8l4 4 4-4' stroke='rgba(255,255,255,.88)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

.f-group select option,
.hf select option {
  color: var(--ink);
  background: #fff;
}

.f-group textarea {
  min-height: 100px;
  resize: vertical;
}

.f-btn {
  width: 100%;
  border: 0;
  padding: 16px 24px;
  font-size: 15px;
}

.f-priv {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

.contact-section {
  background: #fff;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  box-shadow: var(--sh-xs);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: #fff;
}

.contact-card-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ml);
}

.contact-card-value {
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  margin-top: 2px;
}

.contact-surface {
  border-radius: var(--r-xl);
  border: 1.5px solid var(--linen);
  padding: 28px;
  box-shadow: var(--sh-md);
}

.contact-surface .form-h {
  color: var(--ink);
}

.contact-surface .form-s,
.contact-surface .f-group label {
  color: var(--muted);
}

.contact-surface .f-group input,
.contact-surface .f-group select,
.contact-surface .f-group textarea {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--linen);
}

.contact-surface .f-group select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M6 8l4 4 4-4' stroke='rgba(15,28,22,.78)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.cta-band {
  background: var(--rose);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: 'VOORUIT';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 220px;
  color: rgba(255, 255, 255, .07);
  white-space: nowrap;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band p {
  max-width: 460px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .6);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .fb-logo {
  height: 48px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-socials {
  margin-top: 20px;
}

.fs-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-link svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, .65);
}

.fc h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc ul li a,
.footer-bot a {
  color: rgba(255, 255, 255, .6);
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .35);
  animation: waPulse 2.8s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.65); opacity: 0; }
}

.mob-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  padding: 10px 14px;
  gap: 8px;
  background: #fff;
  border-top: 1px solid var(--linen);
  box-shadow: 0 -8px 30px rgba(15, 28, 22, .12);
}

.mob-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  border-radius: var(--pill);
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.mob-cta-call {
  background: var(--rose);
}

.mob-cta-wa {
  background: var(--wa);
}

@media (max-width: 1100px) {
  .intro-grid,
  .process-inner,
  .signup-grid,
  .contact-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .card-grid,
  .testi-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-help {
    position: static;
  }

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

@media (max-width: 900px) {
  .nav-links,
  .hero-cutout,
  .process-visual,
  .wa-float {
    display: none;
  }

  .mob-cta-bar {
    display: flex;
  }

  .footer {
    padding-bottom: 90px;
  }

  .hero-panel-fields,
  .hero-panel-cta,
  .f-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 96px;
  }
}

@media (max-width: 700px) {
  .info-grid,
  .card-grid,
  .testi-grid,
  .sectors-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .cta-band-inner,
  .topbar-inner,
  .nav-inner,
  .footer-bot {
    align-items: flex-start;
  }
}
