@import url('https://fonts.googleapis.com/css2?family=Anton&family=Google+Sans+Code:ital,wght,MONO@0,300..800,1;1,300..800,1&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

@font-face {
  font-family: 'Tomato Grotesk';
  src: url('fonts/Tomato Grotesk Font Family/TomatoGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #999999;
  --gray-600: #555555;
  --accent: #0a0a0a;
  --radius: 12px;
  --radius-lg: 24px;

  /* === BUTTON TOKENS === */
  --btn-font-size: 13px;
  --btn-font-weight: 300;
  --btn-border: 1.5px solid var(--black);
  --btn-radius: 0;
  --btn-padding: 12px 36px;
  --btn-transition: background 0.2s, color 0.2s;
}

html { scroll-behavior: smooth; }
button { font-family: 'Google Sans', sans-serif; }

.hero-title,
.waitlist-hero-title,
.calc-hero-title,
.features-hero-title,
.pricing-hero-title,
.p-hero-title,
.p-problem-title,
.p-faq-title,
.wig-title,
.feature-title,
.footer-title,
.home-calc-title,
.data-stats-title,
.np-card-name,
.np-section-label,
.biz-calc-title,
.ds-sub-title {
  font-family: "Google Sans", sans-serif;
}

.wig-step-text p {
  font-family: "Google Sans", sans-serif;
}

.hero-sub,
.waitlist-hero-sub,
.calc-hero-sub,
.p-hero-sub,
.ds-sub-desc,
.wig-desc,
.wig-desc-label,
.feature-desc,
.footer-desc,
.pricing-desc,
.p-problem-desc,
.wig-step-num,
.wig-step-text,
.home-calc-field label,
.hc-input-prefix,
.hc-currency-select,
.metric-big,
.metric-currency,
.bottom-box,
.bottom-op,
.biz-roi-note,
.biz-roi-box,
.privacy-card-body p,
.p-faq-answer p {
  font-family: "Google Sans Code", monospace;
}

body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 100;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.navbar.hidden {
  transform: translateY(-100%);
}

/* offset body for fixed navbar */
body { padding-top: 64px; }
body.home { padding-top: 0; }

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 44px;
  margin-left: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a.nav-active { color: #000000; font-weight: 400; }

/* === BUTTONS === */
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--black);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--black);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* === LOGO ICON (navbar) === */
.logo-icon {
  display: flex;
  align-items: center;
  color: var(--black);
  flex-shrink: 0;
}

.logo-icon img:first-child {
  width: 28px;
  height: 28px;
}

.logo-wordmark {
  height: 22px;
  width: auto;
  margin-left: 14px;
}

/* === NAVBAR WAITLIST BUTTON === */
.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  color: var(--black);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  border: var(--btn-border);
  border-radius: var(--btn-radius);
  padding: 8px 0;
  width: 185px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-waitlist:hover {
  background: var(--black);
  color: var(--white);
}

.btn-waitlist-text {
  display: inline;
}

.btn-waitlist-arrow {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  color: #ffffff;
  margin-left: 8px;
}

.btn-waitlist:hover .btn-waitlist-arrow {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

/* === HOME PAGE GRID BACKGROUND === */
body.home .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

body.home .navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.hero {
  background-image:
    linear-gradient(to right, #f2f2f2 1px, transparent 1px),
    linear-gradient(to bottom, #f2f2f2 1px, transparent 1px);
  background-size: 33.333% 420px;
  background-color: var(--white);
}

/* === HERO === */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Tomato Grotesk', sans-serif;
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 500;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
  z-index: 1;
}

.hero-intro {
  position: absolute;
  bottom: calc(50% + clamp(40px, 6.5vw, 100px) + 18px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 300;
  color: #4361ee;
  white-space: nowrap;
  z-index: 1;
  background: #eef0fb;
  padding: 8px 22px;
  border-radius: 16px;
}

.hero-sub {
  position: absolute;
  top: calc(50% + clamp(40px, 6.5vw, 100px) + 16px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  color: #374151;
  white-space: nowrap;
  z-index: 1;
  text-align: center;
}

/* === TICKER (inside hero) === */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 36px 0;
  z-index: 1;
}

.ticker {
  display: flex;
  gap: 80px;
  animation: ticker-scroll 20s linear infinite;
  width: max-content;
}

.ticker span {
  font-size: 15px;
  color: var(--gray-400);
  white-space: nowrap;
}

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

/* === STATS === */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.stat { text-align: center; }

.stat h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
}

.stat p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 160px;
  margin: 0 auto;
}

/* === HOW IT WORKS === */
.how-it-works { padding: 100px 60px; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-600);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 36px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 80px 60px;
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* === FOOTER === */
.footer {
  background: var(--white);
  border-top: 1px solid #141313;
  overflow: hidden;
}

.footer-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  padding: 160px 60px 80px;
}

.footer-left {
  padding-right: 60px;
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer-joined {
  font-size: 18px;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-email-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 28px;
  max-width: 460px;
}

.footer-email-input-wrap {
  flex: 1;
  background: var(--white);
  border: 1px solid #000;
}

.footer-email-input-wrap input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: var(--black);
}

.footer-email-form button {
  background: #D5E6D4;
  color: #1a1a1a;
  border: 1.5px solid #D5E6D4;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 15px 52px;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.footer-email-form button .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.footer-email-form button:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

.footer-email-form button:hover {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  margin-right: 4px;
}

.footer-social a {
  color: var(--black);
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { opacity: 0.5; }

.footer-divider-line {
  width: 1px;
  background: var(--black);
  align-self: stretch;
  margin-top: -60px;
  margin-bottom: -60px;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.footer-nav-col a {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
  width: fit-content;
}

.footer-nav-col a:hover { opacity: 0.5; }

.footer-pinwheel {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  align-self: center;
}

.footer-pinwheel svg {
  width: 100%;
  height: 100%;
}

.footer-wordmark-wrap {
  overflow: hidden;
  height: max(320px, min(21vw, 404px));
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.footer-wordmark {
  font-family: 'Google Sans', sans-serif;
  font-size: min(43vw, 830px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.82;
  color: var(--black);
  white-space: nowrap;
  margin-top: max(4px, calc(320px - min(19.68vw, 378px) + 10px));
}

.footer-credit {
  position: absolute;
  top: max(4px, calc(320px - min(19.68vw, 378px)));
  right: 5vw;
  text-align: right;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--black);
  white-space: nowrap;
  z-index: 1;
}

.footer-credit-link {
  color: inherit;
  text-decoration: none;
}

.footer-credit-slym {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 13px;
  text-decoration: underline;
}

/* === DS INTRO === */
.ds-intro {
  background: var(--white);
  transition: background-color 0.45s ease;
  padding: 160px 100px 160px;
}

.ds-intro--dark {
  background: #0a0a0a;
}

.ds-intro .ds-headline {
  max-width: 1100px;
  margin-bottom: 0;
}

.ds-intro .ds-text {
  font-size: clamp(18px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 0;
}

.ds-intro .ds-sentence {
  color: #0a0a0a;
  transition: color 0.5s ease;
}

.ds-intro--dark .ds-sentence {
  color: rgba(255,255,255,0.18);
}

.ds-intro--dark .ds-sentence.ds-sentence-on {
  color: #ffffff;
}

/* === DARK STATEMENT === */
.ds-pin-wrap {
  position: relative;
}

.dark-statement {
  background: #0a0a0a;
  padding: 20px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.ds-headline {
  max-width: 1100px;
  margin-bottom: 0;
}

.ds-text-wrap {
  position: relative;
}

.ds-text {
  font-size: clamp(18px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 0;
}

.ds-sentence {
  color: #0a0a0a;
  transition: color 0.5s ease;
}

.dark-statement .ds-sentence {
  color: rgba(255,255,255,0.18);
}

.dark-statement .ds-sentence.ds-sentence-on {
  color: #ffffff;
}


.ds-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.ds-left-wrap {
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.ds-left {
  width: 460px;
}

.ds-slides-wrap {
  position: relative;
  width: 100%;
}

/* === DS STEP INDICATORS === */
.ds-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 2px;
}

.ds-step {
  width: 1.5px;
  height: 44px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1px;
  transition: background 0.45s ease;
}

.ds-step--active {
  background: rgba(0, 0, 0, 0.8);
}

.dark-statement .ds-step {
  background: rgba(255, 255, 255, 0.18);
}

.dark-statement .ds-step--active {
  background: rgba(255, 255, 255, 0.9);
}

/* === DS SLIDE TRACK (scroll-driven) === */
.ds-slides-track {
  will-change: transform;
}

.ds-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* height set by JS */
}

.ds-sub-title {
  font-size: 38px;
  font-weight: 500;
  color: #0a0a0a;
  transition: color 0.5s ease;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.ds-sub-desc {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  transition: color 0.5s ease;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.ds-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(0,0,0,0.75);
  text-decoration: none;
  transition: color 0.5s ease;
  margin-top: 48px;
}

.ds-link:hover .ds-link-box {
  opacity: 0.8;
}

.ds-link-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 0;
  flex-shrink: 0;
  transition: opacity 0.25s ease, background 0.5s ease;
  color: #ffffff;
}

.dark-statement .ds-link {
  color: rgba(255,255,255,0.75);
}

.dark-statement .ds-link-box {
  background: #ffffff;
  color: #0a0a0a;
}

.ds-visual {
  width: 420px;
  min-height: 560px;
  background: #e8e8e8;
  transition: background 0.5s ease;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ds-visual-img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.dark-statement .ds-sub-title {
  color: #ffffff;
}

.dark-statement .ds-sub-desc {
  color: rgba(255,255,255,0.5);
}

.dark-statement .ds-visual {
  background: #1a1a1a;
}

/* === WHAT IS GOOME === */
.what-is-goome {
  padding: 80px 100px 340px;
  background: var(--white);
}

.wig-title {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 80px 0;
  width: 70vw;
}

.wig-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  max-width: 620px;
  line-height: 1.65;
  margin: 44px 0 20px 0;
}

.wig-desc-label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Google Sans', sans-serif;
  color: #0E260C;
  margin-bottom: 10px;
}

.wig-privacy-link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.wig-highlight {
  color: var(--black);
}

.wig-mobile-cta {
  display: none;
}

.wig-carousel {
  display: none;
}

.wig-content {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: stretch;
}

.wig-illustration {
  border: 1px solid #000;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  background: #fafafa;
}

.wig-illustration-label {
  font-size: 13px;
  color: var(--gray-400);
}

.wig-illu-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 240px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wig-illu-img--active {
  opacity: 1;
}

.wig-illu-img--small {
  padding: 265px;
}

.wig-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.wig-step {
  border: none;
  border-bottom: 2px solid var(--gray-200);
  border-radius: 0;
  padding: 28px 0;
  margin-bottom: 0;
  flex: unset;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0.38;
  cursor: pointer;
  transition: opacity 0.35s ease;
  background: none;
}

.wig-step:not(.wig-step--active):hover {
  opacity: 0.6;
}

.wig-step--active {
  opacity: 1;
}

.wig-step:last-of-type {
  border-bottom: none;
}

.wig-step--active .wig-step-num {
  background: #0E260C;
}

.wig-step-num {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wig-step:not(.wig-step--active) .wig-step-num {
  background: #0E260C;
  border: none;
  color: var(--white);
}

.wig-step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #141313;
}

.wig-step-text p {
  font-size: 13px;
  color: #141313;
  line-height: 1.55;
}

.wig-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 0;
  text-align: center;
  border: 1.5px solid #1a1a1a;
  border-radius: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  background: #0E260C;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.wig-cta .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.wig-cta:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

.wig-cta:hover {
  background: transparent;
  color: #1a1a1a;
}

/* === HOME CALCULATOR === */
.home-calculator {
  padding: 240px 40px 300px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}


.home-calc-title {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 12px;
  text-align: center;
}

.home-calc-intro {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 48px;
  text-align: center;
}

.home-calc-box {
  background-color: transparent;
  max-width: 1400px;
  margin: 0 auto;
}

.hc-section-label { display: none; }
.hc-mobile-cta-btn { display: none; }
.home-calc-results { display: contents; }
.home-calc-bottom--mobile { display: none; }

.home-calc-grid {
  display: grid;
  grid-template-columns: 9fr 5.5fr 5.5fr;
  gap: 16px;
}

.home-calc-left,
.home-calc-col {
  padding: 32px 40px 40px;
  border: 1px solid var(--black);
  background: #fafafa;
}

.home-calc-col--last {
  border: 1px solid var(--black);
}

.home-calc-col--green {
  background: #FAFFFB;
}

.home-calc-above-divider {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-calc-col .home-calc-above-divider {
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 36px;
}

.home-calc-divider--spaced {
  margin: 28px 0;
}


.home-calc-toggle {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  padding: 9px 22px;
  border: var(--btn-border);
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  cursor: pointer;
  transition: var(--btn-transition);
}

.toggle-btn.active {
  background: var(--black);
  color: var(--white);
}

.home-calc-mode-desc {
  font-size: 14.5px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  width: 75%;
  min-height: 110px;
}

.home-calc-mode-desc u {
  color: #111111;
}

.home-calc-divider {
  border: none;
  border-top: 1px solid var(--black);
  margin: 0 0 24px;
}

.home-calc-field {
  margin-top: 0;
  margin-bottom: 20px;
}

.home-calc-field label {
  font-size: 12px;
  color: var(--gray-600);
  display: block;
  margin-bottom: 8px;
}

.home-calc-field input {
  width: 60%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: "Google Sans Code", monospace;
  color: var(--black);
  background-color: var(--white);
  background-image:
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px);
  background-size: 3px 1px, 3px 1px, 1px 3px, 1px 3px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  border: none;
  outline: none;
}

.home-calc-field input:focus {
  background-image: none;
  border: 0.5px solid #000;
}

.hc-input-wrap {
  display: flex;
  align-items: center;
  width: 60%;
  border: none;
  background-image:
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px);
  background-size: 3px 1px, 3px 1px, 1px 3px, 1px 3px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
}

.hc-input-wrap:focus-within {
  background-image: none;
  border: 0.5px solid #000;
}

.hc-input-prefix {
  padding: 10px 0 10px 14px;
  font-size: 15px;
  color: var(--gray-600);
}

.hc-input-wrap input {
  background: none;
  background-image: none;
  border: none;
  padding-left: 4px;
  width: 100%;
}

.home-calc-col h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 0;
}

.home-calc-metric {
  margin-bottom: 44px;
}

.metric-label {
  font-family: 'Google Sans', sans-serif;
  font-size: 12px;
  color: var(--gray-600);
  display: block;
  margin-bottom: 6px;
}

.metric-value-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-big {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1;
}

.metric-unit { font-family: 'Google Sans', sans-serif; font-size: 12px; color: #aaaaaa; }
.metric-currency { font-size: 13px; color: var(--gray-600); }

.metric-eq {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  margin: 4px 0;
  padding-left: 16px;
}

/* Bottom bar */
.home-calc-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--black);
  background: #f0f7f0;
  padding: 20px 32px;
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}

.home-calc-bottom-roi {
  text-align: left;
  justify-self: end;
}

.bottom-label {
  font-family: 'Google Sans', sans-serif;
  font-size: 12px;
  color: var(--gray-600);
  display: block;
  margin-bottom: 10px;
}

.bottom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.bottom-box {
  border: none;
  background-color: var(--white);
  background-image:
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px);
  background-size: 3px 1px, 3px 1px, 1px 3px, 1px 3px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
}

.bottom-box--green {
  background-color: #cdefcf;
}

.bottom-op {
  font-size: 13px;
  color: var(--gray-600);
  white-space: nowrap;
}

/* === PRIVACY SECTION === */
.privacy-section {
  padding: 240px 60px 240px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.privacy-header {
  margin-bottom: 48px;
}

.privacy-heading {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.privacy-subheading {
  font-size: 14px;
  color: var(--gray-600);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.privacy-card {
  background: var(--gray-100);
  border: none;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.privacy-card-illustration {
  flex: none;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 44px 56px;
}

.privacy-card-illustration img {
  width: 60%;
  max-height: 140px;
  object-fit: contain;
}

.privacy-card-body {
  padding: 40px 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-card-body h3 {
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

.privacy-card-body p {
  font-size: 17px;
  font-weight: 300;
  color: #777777;
  line-height: 1.55;
  margin: 0;
  max-width: 80%;
}

/* Kept for other uses */
.psq-pink   { background: #f2c4c4; }
.psq-yellow { background: #f0e09a; }
.psq-green  { background: #c4e0bc; }
.psq-blue   { background: #bcd0f0; }
.psq-gray   { background: #e4e4e4; }

.privacy-cards-mobile {
  display: none;
}

.privacy-card-m {
  position: relative;
  border: 1px solid var(--black);
  background: var(--gray-100);
  padding: 20px;
  aspect-ratio: 1;
  width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.privacy-card-m .pcard-squares {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: auto !important;
  height: auto !important;
}

.privacy-card-m .pcard-squares .psq {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 20px !important;
  height: 20px !important;
}

.privacy-card-m h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}

.privacy-card-m p {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 80px 60px 60px;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 520px;
}

/* === DATA STATS SECTION === */
.data-stats {
  padding: 240px 40px 200px;
  max-width: 1400px;
  margin: 0 auto;
}

.data-stats-title {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
}

.data-stats-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 48px;
}

.data-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.data-stat-card {
  background: var(--white);
  border: 1px solid #171717;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.data-stat-card .privacy-card-illustration {
  height: 380px;
  background: var(--white);
}

.data-stat-card .privacy-card-illustration img {
  width: 70%;
  max-height: 200px;
}

.data-stat-card .data-stat-body {
  padding: 28px 32px 32px;
  border-top: 1px solid #171717;
}

.data-stat-illustration {
  width: 100%;
  height: 340px;
  padding-bottom: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.data-stat-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.data-stat-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.data-stat-number {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #111111;
}

.data-stat-desc {
  font-family: "Google Sans Code", monospace;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  line-height: 1.6;
  max-width: 90%;
}

/* === PRICING PAGE === */
.pricing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72vh;
  text-align: center;
}

.pricing-hero-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

.pricing-section {
  padding: 0 40px 240px;
  margin-top: -110px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-col {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1.4px solid #111;
}

.pricing-col-header {
  padding: 28px 24px 32px;
  font-size: 18px;
  font-weight: 300;
  color: #111;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-col-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #111 0, #111 2px, transparent 2px, transparent 3px);
  background-size: 3px 2px;
  background-repeat: repeat-x;
}

.pricing-col-header--pink   { background: #fce8e8; }
.pricing-col-header--blue   { background: #dce8ff; }
.pricing-col-header--purple { background: #d5d9f5; }

.pricing-col-body {
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 440px;
}

.pricing-price-block {
  height: 120px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-price {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.pricing-period {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  vertical-align: middle;
  margin-left: 1px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--black);
  line-height: 1.65;
}

.pricing-min-tijd {
  border-top: 1px solid #171717;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  flex: 1;
}

.pricing-min-label {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 4px;
}

.pricing-min-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}

.pricing-col-footer {
  margin-top: auto;
  padding-top: 24px;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 12px;
  background: var(--black);
  color: var(--white);
  border: 1.4px solid var(--black);
  font-size: 13px;
  font-weight: 200;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.25s ease, color 0.25s ease;
  box-sizing: border-box;
}

.pricing-btn:hover {
  opacity: 1;
  background: var(--white);
  color: var(--black);
}

.pricing-btn .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.pricing-btn:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

/* === CONTACT PAGE === */
.contact-section {
  height: calc(100vh - 64px);
  box-sizing: border-box;
  padding: 120px 40px 0;
  position: relative;
  overflow: hidden;
}

.contact-page {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.contact-page .waitlist-hero-title {
  font-size: clamp(46px, 6.8vw, 92px);
  letter-spacing: -2px;
}

.contact-page .waitlist-hero-sub {
  font-size: 14px;
}

.contact-page .waitlist-text {
  padding-top: 120px;
  padding-bottom: 90px;
}

.contact-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-form-box {
  flex: 1;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.contact-form-box textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 240px;
  padding: 18px;
  border: 1px solid #000;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  resize: none;
  outline: none;
  margin-bottom: 16px;
}

.contact-form-box textarea::placeholder {
  color: #aaa;
}

.contact-form-row {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 8px;
}

.contact-form-row input {
  flex: 1.2;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid #000;
  outline: none;
  box-sizing: border-box;
  font-family: 'Google Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
}

.contact-form-row input::placeholder {
  color: #aaa;
}

.contact-form-row button {
  flex: 0.8;
  padding: 15px 16px;
  background: #1a1a1a;
  color: var(--white);
  border: 1.5px solid #1a1a1a;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  overflow: hidden;
}

.contact-form-row button:hover {
  background: transparent;
  color: #1a1a1a;
}

.contact-form-row button .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.contact-form-row button:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

.contact-section-2 {
  padding: 120px 40px;
  box-sizing: border-box;
}

.contact-arches {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 0;
}

.contact-arch {
  border: 1px dashed #000000;
  border-radius: 999px 999px 0 0;
  border-bottom: none;
  flex-shrink: 0;
}

.contact-arch--yellow  { width: 200px; height: 200px; background: #fdf5d0; margin-left: 0; border-radius: 0 999px 0 0; border-left: none; border-bottom: none; }
.contact-arch--blue-sm { width: 160px; height: 110px; background: #dce8ff; }
.contact-arch-gap      { flex: 1; }
.contact-arch--pink    { width: 140px; height: 140px; background: #fce8e8; }
.contact-arch--green   { width: 220px; height: 190px; background: #dff0e3; }
.contact-arch--blue-lg { width: 150px; height: 110px; background: #dce8ff; margin-left: 100px; margin-right: 0; border-radius: 999px 0 0 0; border-right: none; border-bottom: none; }

/* === WAITLIST HERO === */
/* === WAITLIST PAGE === */
.waitlist-page {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.wl-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  pointer-events: none;
  z-index: 0;
}

.wl-deco--left  { left: -110px; }
.wl-deco--right { right: -110px; top: 42%; transform: translateY(-50%); }

.wl-deco-grid {
  display: grid;
  grid-template-columns: 200px 175px;
  grid-template-rows: 200px 175px;
  gap: 6px;
}

.wl-deco--left  .wl-deco-grid { transform: rotate(-6deg); }
.wl-deco--right .wl-deco-grid { transform: rotate(6deg); }

.wl-rect { background: #D5E6D4; }

.wl-rect--a { width: 200px; height: 200px; }
.wl-rect--b { width: 142px; height: 142px; justify-self: start; align-self: end; }
.wl-rect--c { width: 130px; height: 130px; justify-self: end;   align-self: start; }
.wl-rect--d { width: 175px; height: 175px; }

.wl-deco--left  .wl-rect--a { transform: translateX(90px); }
.wl-deco--left  .wl-rect--b { width: 105px; height: 105px; transform: translateX(90px); }
.wl-deco--left  .wl-rect--c { width: 175px; height: 175px; }
.wl-deco--left  .wl-rect--d { width: 135px; height: 135px; }
.wl-deco--right .wl-deco-grid { grid-template-columns: 135px 200px; grid-template-rows: 200px 175px; }
.wl-deco--right .wl-rect--a { width: 78px; height: 78px; transform: translateX(-28px); justify-self: end; align-self: end; }
.wl-deco--right .wl-rect--b { width: 165px; height: 165px; transform: translateX(-28px); }
.wl-deco--right .wl-rect--c { width: 135px; height: 135px; }
.wl-deco--right .wl-rect--d { width: 175px; height: 175px; justify-self: start; align-self: start; }

.waitlist-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 40px 120px;
}

.waitlist-hero-title {
  font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 20px;
  color: #000;
  letter-spacing: -2px;
  -webkit-font-smoothing: antialiased;
}

.waitlist-hero-sub {
  font-family: 'Google Sans Code', monospace;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}

.waitlist-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0;
  gap: 0;
  position: relative;
}

.waitlist-hero-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 60px;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .waitlist-hero-form { padding-bottom: 0 !important; }
}

.waitlist-hero-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 22px;
  border: 1px solid #000;
  outline: none;
  font-family: 'Google Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #000;
  background-color: #fff;
}

.waitlist-hero-form input::placeholder {
  color: #999;
}

.waitlist-hero-form input:focus {
  outline: none;
  border: 1px solid #000;
  box-shadow: none;
}

.waitlist-hero-form button {
  white-space: nowrap;
  padding: 15px 56px;
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  transition: background 0.25s, color 0.25s;
}

.waitlist-hero-form button .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.waitlist-hero-form button:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

.waitlist-hero-form button:hover {
  background: transparent;
  color: #111;
  border-color: #111111;
}

/* === CONTACT FORM === */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #000;
  outline: none;
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  background-color: #fff;
  resize: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  background-color: #fff;
  background-image: none;
  border: 0.5px solid #000;
  box-shadow: none;
}

.contact-form-box input::placeholder {
  color: #999;
}

.contact-form-box textarea::placeholder {
  color: #111111;
}

.contact-form-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.contact-form-box textarea {
  min-height: 140px;
}

/* Decorative shapes */
.wl-shape {
  flex-shrink: 0;
}

.wl-shape--yellow {
  width: 200px;
  height: 200px;
  background: #FFF2D0;
  border-radius: 0 200px 0 0;
  border-left: none;
  border: 1px solid #111;
  border-bottom: none;
  align-self: flex-end;
}

.wl-shapes-right {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  position: relative;
}

.wl-shape--green {
  width: 150px;
  height: 170px;
  background: #FFEEEA;
  border-radius: 150px 150px 0 0;
  border: 1px solid #111;
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.wl-shape--pink {
  width: 260px;
  height: 230px;
  background: #E6FAE8;
  border-radius: 260px 260px 0 0;
  border: 1px solid #111;
  border-bottom: none;
  margin-left: -180px;
  position: relative;
  z-index: 1;
  transform: translateX(60%);
}

/* === FEATURES LIST === */
.features-list {
  padding: 0;
  margin-top: -170px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 60% 1fr;
  height: 100vh;
  padding: 115px 60px 115px 60px;
  gap: 60px;
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: 1fr 60%;
  padding: 115px 60px 115px 60px;
}

.feature-row--reverse .feature-visual {
  order: 2;
}

.feature-row--reverse .feature-text {
  order: 1;
}

.feature-row--reverse .feature-visual-icon {
  top: 24px;
  left: 24px;
  right: auto;
}

.feature-visual {
  background: var(--gray-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.feature-visual--dark {
  background: #403AF5;
  border: 1px solid #171717;
}

.feature-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28% 32%;
  box-sizing: border-box;
}

.feature-visual-sq {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  background: white;
}

.feature-visual-sq--left {
  right: auto;
  left: 24px;
}

.feature-visual-sq--bottom {
  top: auto;
  bottom: 24px;
}

.feature-privacy-svg {
  width: 55%;
  max-width: 320px;
}

.feature-monitor-svg {
  width: 55%;
  max-width: 300px;
}

.feature-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 13px;
}

.feature-visual-icon {
  position: absolute;
  top: 24px;
  right: 24px;
}

.feature-visual--icon-bottom .feature-visual-icon {
  top: auto;
  bottom: 24px;
  right: 24px;
}

.feature-visual--icon-bottom-left .feature-visual-icon {
  top: auto;
  bottom: 24px;
  right: auto;
  left: 24px;
}

.feature-text {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-size: 48px;
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

.feature-desc {
  font-size: 15px;
  color: #141313;
  line-height: 1.4;
  max-width: 400px;
  font-family: 'Google Sans Code', monospace;
  font-weight: 300;
}

/* === FEATURES HERO === */
.features-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 92vh;
  text-align: center;
}

.features-hero-title {
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 200;
  font-variation-settings: 'wght' 150;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
  -webkit-font-smoothing: antialiased;
}

/* === CALCULATOR HERO === */
.calc-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 40px;
  text-align: center;
}

.calc-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.calc-hero-title {
  font-size: clamp(72px, 11vw, 144px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}

.calc-hero-sub {
  font-size: 14px;
  color: #444444;
  font-weight: 300;
  margin: 0;
}

.hero-pijl {
  margin-top: 60px;
  width: 52px;
}

.hero-pijl--md {
  width: 88px;
}

.hero-pijl--lg {
  width: 90px;
}

.hero-pijl img {
  width: 100%;
  height: auto;
  display: block;
}

/* === GRID CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 60px;
}

.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.pricing-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.plan-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: block;
}

.pricing-card.featured .plan-label { color: rgba(255,255,255,0.5); }

.plan-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
  display: block;
}

.pricing-card.featured .plan-period { color: rgba(255,255,255,0.5); }

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .plan-features li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.plan-features li::before { content: "✓"; font-weight: 700; }

.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.pricing-card.featured .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* === CONTACT FORM === */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  font-size: 14px;
  color: var(--gray-600);
}

.contact-detail-item strong {
  display: block;
  color: var(--black);
  margin-bottom: 2px;
}

.form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background-color: var(--white);
  background-image:
    repeating-linear-gradient(90deg, #888 0, #888 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(90deg, #888 0, #888 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(0deg,  #888 0, #888 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(0deg,  #888 0, #888 1.5px, transparent 1.5px, transparent 3px);
  background-size: 3px 1.5px, 3px 1.5px, 1.5px 3px, 1.5px 3px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  color: var(--black);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background-image:
    repeating-linear-gradient(90deg, #0a0a0a 0, #0a0a0a 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(90deg, #0a0a0a 0, #0a0a0a 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(0deg,  #0a0a0a 0, #0a0a0a 1.5px, transparent 1.5px, transparent 3px),
    repeating-linear-gradient(0deg,  #0a0a0a 0, #0a0a0a 1.5px, transparent 1.5px, transparent 3px);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* === CALCULATOR === */
.calculator-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
  align-items: start;
}

.calculator-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calculator-form h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

.calculator-result {
  position: sticky;
  top: 100px;
}

.result-card {
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.result-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.result-metric {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.result-metric:last-of-type { border: none; }

.result-metric .value {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  display: block;
}

.result-metric .label {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
}

/* === WAITLIST === */
.waitlist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 60px;
  align-items: center;
}

.waitlist-content h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.waitlist-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.perk-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}

.waitlist-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.waitlist-form-wrap h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.waitlist-count {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-400);
}

/* === FOCUS BORDER EFFECT === */
input:focus,
textarea:focus {
  border-style: solid !important;
  outline: none;
}

.hc-input-wrap input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.home-calc-field input:focus,
.hc-input-wrap:focus-within,
.hc-currency-select:focus {
  border-color: #999 !important;
  border-width: 1px !important;
  outline: none !important;
  box-shadow: none !important;
}

.hc-currency-select {
  padding: 10px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--black);
  background-color: var(--white);
  background-image:
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(90deg, #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px),
    repeating-linear-gradient(0deg,  #555 0, #555 2px, transparent 2px, transparent 3px);
  background-size: 3px 1px, 3px 1px, 1px 3px, 1px 3px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
}

.footer-email-input-wrap:focus-within {
  background-image: none !important;
  border: 0.5px solid #000;
  box-shadow: none;
}

.footer-email-input-wrap input:focus {
  outline: none !important;
  border: none !important;
}

.contact-form-row input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: inset 0 0 0 1px #000;
}

.contact-form-box textarea:focus {
  border: none !important;
  outline: none !important;
  box-shadow: inset 0 0 0 1px #000;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.hamburger:hover {
  background: #1a1a1a;
}

.hamburger:hover span {
  background: #fff;
}

.hamburger:active {
  background: #333;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #000;
  transition: background 0.2s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85vw;
  background: #fff;
  border-left: 1px solid #000;
  z-index: 1000;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #000;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: #1a1a1a;
  color: #fff;
}

.mobile-menu-logo {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu ul li:first-child a {
  border-top: 1px solid #e0e0e0;
}

.mobile-menu-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.mobile-menu-btn:hover {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

body.features-page .features-carousel { display: none; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .navbar { padding: 24px 24px; }
  .nav-links { display: none; }
  .btn-waitlist { display: inline-flex; order: 1; font-size: 15px; padding: 14px 20px; width: auto; margin-left: 0; }
  .btn-waitlist-arrow { display: none; }
  .hamburger { display: flex; order: 0; margin-left: auto; margin-right: -16px; width: 52px; height: 52px; border: none; }
  .hamburger:hover { background: transparent; }
  .hamburger:hover span { background: #000; }
  .hamburger span { width: 28px; height: 2.5px; }
  .logo-wordmark { display: none; }
  .logo-icon img:first-child { width: 40px; height: 40px; }
  .hero-intro { bottom: calc(50% + 20vw + 20px); }
  .contact-form-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0; }
  .contact-form-row input:nth-child(1),
  .contact-form-row input:nth-child(2) { flex: 1 1 calc(50% - 4px); width: auto; }
  .contact-form-row input:nth-child(3) { flex: 1 1 100%; width: 100%; }
  .contact-form-row button { flex: 1 1 100%; width: 100%; background: #403AF5; color: #ffffff; border-color: #403AF5; }
  .hero { min-height: calc(100vh - 55px); background-image: linear-gradient(to right, #f2f2f2 1px, transparent 1px), linear-gradient(to bottom, #f2f2f2 1px, transparent 1px); background-size: 33.333% 420px; }
  .hero-title { font-size: 20vw; letter-spacing: -2px; }
  .ticker { gap: 48px; }
  .dark-statement { padding: 60px 24px 60px; min-height: auto; }
  .ds-headline { max-width: 95%; }
  .ds-text { font-size: clamp(15px, 4vw, 22px); }
  .ds-body { flex-direction: column; align-items: flex-start; gap: 32px; margin-top: 140px; }
  .ds-sub-title { font-size: 26px; }
  .ds-visual { align-self: center; width: 100%; height: 280px; display: flex; align-items: center; justify-content: center; }
  .ds-visual-icon svg { width: 100px; height: 100px; }
  .stats { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .how-it-works { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 24px; }
  .cta-banner h2 { font-size: 28px; }
  .footer { margin-top: 75px; border-top: 1px solid #111111; }
  body.waitlist-body .footer { margin-top: 0; }
  body.contact-body .footer { margin-top: 0; }
  .footer-upper { grid-template-columns: 1fr; padding: 120px 24px 20px; gap: 40px; }
  .footer-left { padding-right: 0; }
  .footer-social { margin-top: 48px; margin-bottom: 56px; }
  .footer-divider-line { display: none; }
  .footer-right { padding-left: 0; margin-top: -20px; }
  .footer-title { font-size: 40px; font-weight: 300; }
  .footer-desc { font-size: 15px; font-weight: 300; color: #777777; margin-bottom: 2px; max-width: 100%; }
  .footer-joined { font-size: 15px; font-weight: 300; color: #777777; margin-bottom: 10px; max-width: 100%; }
  .footer-nav-col a { font-size: 17px; }
  .footer-email-input-wrap input { font-size: 15px; }
  .footer-email-input-wrap input::placeholder { color: #1a1a1a; opacity: 1; }
  .footer-email-form { gap: 6px; }
  .footer-email-input-wrap { flex: 7; }
  .footer-email-form button { font-size: 15px; flex: 3; }
  .footer-social a svg { width: 22px; height: 22px; }
  .footer-pinwheel { width: 160px; height: 160px; }
  .footer-wordmark-wrap { height: max(180px, 21vw); }
  .footer-wordmark { font-size: 30vw; letter-spacing: -0.01em; margin-top: max(4px, calc(180px - 19.68vw)); }
  .footer-credit { top: max(4px, calc(160px - 19.68vw)); right: 24px; font-size: 14px; }
  .page-hero { padding: 60px 24px 40px; }
  .page-hero h1 { font-size: 36px; }
  .card-grid { padding: 24px; }
  .pricing-grid { grid-template-columns: 1fr; padding: 24px; }
  .contact-section { grid-template-columns: 1fr; padding: 24px; gap: 40px; }
  .calculator-section { grid-template-columns: 1fr; padding: 24px; }
  .waitlist-section { grid-template-columns: 1fr; padding: 24px; gap: 40px; }
  .waitlist-hero-form { flex-wrap: wrap; }
  .waitlist-hero-form input { flex: 1 1 40%; }
  .waitlist-hero-form button { flex: 1 1 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* === WHAT IS GOOME MOBILE === */
  .what-is-goome { padding: 60px 24px 60px; }
  .wig-content { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .wig-steps { order: 1; flex-direction: row; flex-wrap: wrap; gap: 10px; height: auto; }
  .wig-step { flex: 1 1 calc(50% - 5px); margin-bottom: 0; }
  .wig-cta { flex: 1 1 calc(50% - 5px); width: auto; border: 1px solid var(--black); padding: 20px 22px; display: flex; align-items: center; justify-content: center; background: var(--black); color: var(--white); border-radius: 0; }
  .wig-cta:active { background: var(--white); color: var(--black); }
  .wig-illustration { order: 2; min-height: unset; aspect-ratio: 1; width: 100%; }

  /* === HOME CALCULATOR MOBILE === */
  .home-calculator { padding: 60px 24px 80px; }
  .home-calc-title { font-size: 36px; letter-spacing: -1.5px; margin-bottom: 32px; }
  .home-calc-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
  .home-calc-left { grid-column: 1 / -1; padding: 24px; }
  .home-calc-col { padding: 20px 16px; }
  .home-calc-bottom { margin-top: 10px; }
  .home-calc-above-divider { min-height: auto; }
  .home-calc-col .metric-big { font-size: 22px; }
  .home-calc-col .metric-label { font-size: 11px; }
  .home-calc-col .metric-currency { font-size: 12px; }
  .home-calc-col .metric-unit { font-size: 11px; }
  .home-calc-col h3 { font-size: 14px; }
  .home-calc-field input { width: 100%; }
  .hc-input-wrap { width: 100%; }
  .home-calc-bottom { grid-template-columns: 1fr; gap: 20px; }
  .home-calc-bottom-roi { text-align: left; justify-self: start; }
  .bottom-row { flex-wrap: wrap; }

  /* === PRIVACY SECTION MOBILE === */
  .privacy-section { padding: 60px 24px 160px; }
  body.personal .privacy-section { padding: 60px 5vw 160px !important; }
  body.personal .privacy-header { padding: 0; margin-top: 70px; }
  body.personal .privacy-heading { font-size: 42px; letter-spacing: -1px; max-width: 100%; font-weight: 300; }
  .privacy-heading { font-size: 32px; letter-spacing: -1px; font-weight: 300; }
  .privacy-grid { grid-template-columns: 1fr; gap: 24px; }
  .privacy-card-illustration { min-height: 180px; }
  .footer-credit { font-size: 10px; }

  .arrow-slide { display: none !important; }

  .data-stats { padding: 60px 24px 80px; }
  .data-stats-heading { font-size: 28px; margin-bottom: 32px; }

  /* === FEATURES MOBILE === */
  .features-hero-title { letter-spacing: -2px; }
  .features-hero { min-height: 65vh; height: auto; }
  body.features-page .features-list { display: none; }
  body.features-page .features-carousel {
    display: block;
    overflow: hidden;
    margin: 0 -24px;
    padding-top: 100px;
    margin-top: 40px;
    padding-bottom: 16px;
  }
  body.features-page .features-carousel .wig-carousel-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 calc(9vw);
    scrollbar-width: none;
  }
  body.features-page .features-carousel .wig-carousel-track::-webkit-scrollbar { display: none; }
  body.features-page .features-carousel .wig-carousel-item {
    flex: 0 0 90vw;
    scroll-snap-align: center;
    transition: opacity 0.3s ease;
    opacity: 0.35;
  }
  body.features-page .features-carousel .wig-carousel-item.is-active { opacity: 1; }
  body.features-page .features-carousel .wig-carousel-card {
    border: 1px solid #111111;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #ffffff;
  }
  body.features-page .features-carousel .wig-carousel-card img { width: 70%; height: 70%; object-fit: contain; }
  body.features-page .features-carousel .wig-carousel-num {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 14px;
    font-weight: 300;
    color: #111111;
  }
  body.features-page .features-carousel .wig-carousel-item strong {
    display: block;
    font-size: 22px;
    font-weight: 300;
    color: #111111;
    margin-bottom: 8px;
  }
  body.features-page .features-carousel .wig-carousel-item p {
    font-size: 16px;
    font-weight: 300;
    color: #777777;
    line-height: 1.6;
    max-width: 90%;
  }
  .features-list { padding: 0; gap: 0; }
  .feature-row,
  .feature-row--reverse { grid-template-columns: 1fr; height: auto; padding: 40px 24px; gap: 24px; }
  .feature-visual { width: 100%; height: 340px; min-height: unset; order: 1; }
  .feature-text { order: 2; padding: 0; }
  .feature-row--reverse .feature-visual { order: 1; }
  .feature-row--reverse .feature-text { order: 2; }
  .feature-title { font-size: 32px; max-width: 100%; width: 100%; }
  .feature-desc { max-width: 100%; font-size: 15px; }
  .feature-visual-icon { top: 16px; right: 16px; }
  .feature-row--reverse .feature-visual-icon { left: 16px; right: auto; }
  .feature-visual--icon-bottom .feature-visual-icon { bottom: 16px; top: auto; right: 16px; }
  .feature-visual--icon-bottom-left .feature-visual-icon { bottom: 16px; top: auto; left: 16px; right: auto; }
}

/* ============================================================
   PARTICULIEREN PAGE
   ============================================================ */

body.personal { padding-top: 0; }

body.personal .p-hero {
  margin-bottom: -80px;
}
body.business { padding-top: 0; }

/* --- Navbar personal --- */
.navbar--personal {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  justify-content: flex-start;
  gap: 0;
}

.logo-particulier {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}

.nav-links--center {
  flex: 1;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-joined {
  font-size: 13px;
  font-weight: 400;
  color: #171717;
  white-space: nowrap;
  margin-left: auto;
}

.nav-joined + .btn-waitlist {
  margin-left: 0;
}

.btn-waitlist--outline {
  border: 1.5px solid var(--black);
  border-radius: 0;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  white-space: nowrap;
  margin-left: 0;
}

.btn-waitlist--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-waitlist--outline::before { display: none; }

/* --- Hero personal --- */
.p-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 100px;
  background: var(--white);
  margin-top: 64px;
}

.p-hero-title {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 32px;
}

.p-hero-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
}

.p-hero-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 7vw, 110px);
  height: clamp(60px, 7vw, 110px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.p-hero-gap img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.p-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: #000000;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 48px;
}

.p-hero-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-btn-primary,
.p-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--btn-border);
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  cursor: pointer;
  text-decoration: none;
  transition: var(--btn-transition);
}

.p-btn-primary {
  background: var(--black);
  color: var(--white);
}

.p-btn-primary:hover {
  background: var(--black);
  color: var(--white);
  cursor: default;
}

.p-btn-outline {
  background: transparent;
  color: var(--black);
}

.p-btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Problem section --- */
.p-problem {
  background: #fff;
  padding: 0 36px;
}

.p-problem-inner-wrap {
  background: #D5E6D4;
  padding: 160px 80px;
}

body.business .p-problem-inner-wrap {
  background: #403AF5;
}

body.business .p-problem {
  padding: 0 36px;
  background: transparent;
}

body.personal .p-problem {
  padding: 0 36px;
}

body.business .p-hero {
  min-height: calc(100vh - 64px);
  padding: 80px 40px 100px;
  margin-bottom: -80px;
}


/* --- Business logo ticker --- */
.biz-ticker {
  overflow: hidden;
  background: #403AF5;
  padding: 140px 0 20px;
  margin-bottom: 0;
  margin-left: 36px;
  margin-right: 36px;
}

.biz-ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: biz-scroll 18s linear infinite;
}

.biz-ticker-track span {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

@keyframes biz-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

body.business .p-problem-black-box {
  background: #FFFFFF;
}

body.business .p-problem-title,
body.business .p-problem-desc,
body.business .p-problem-link {
  color: #FFFFFF;
}

.p-problem-inline-link {
  color: inherit;
  text-decoration: none;
}

body.business .wig-step--active .wig-step-num,
body.business .wig-step:not(.wig-step--active) .wig-step-num {
  background: #403AF5;
}

body.business .wig-cta {
  background: #403AF5;
  border-color: #403AF5;
}

body.business .wig-cta:hover {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

body.business .wig-desc-label {
  color: #403AF5;
}

body.business .p-problem,
body.business .what-is-goome,
body.business .p-faq,
body.personal .what-is-goome {
  margin-bottom: 80px;
}

body.business .privacy-section {
  margin-bottom: 0;
}

body.business .wig-desc {
  font-size: 16px;
  max-width: 560px;
}

body.business .what-is-goome {
  padding: 60px 100px 340px;
}

.p-problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.p-problem-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-problem-title {
  font-family: 'Google Sans', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 17, "GRAD" -50;
  line-height: 1.2;
  color: #555555;
}

.p-problem-desc {
  font-size: 13px;
  font-weight: 300;
  color: #333333;
  line-height: 1.7;
  max-width: 510px;
}

.p-problem-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  margin-top: 60px;
  align-self: flex-start;
}

.p-problem-link:hover { opacity: 0.6; }

.p-problem-chevron {
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transform: translateY(-3px);
}

.p-problem-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.p-problem-black-box {
  background: #111111;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p-problem-illu {
  width: 35%;
  height: auto;
  object-fit: contain;
}

.p-problem-card {
  background: #fff;
  width: 56%;
  padding: 20px 20px 16px;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.12);
}

.p-problem-card svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Personal: privacy section --- */
body.personal .privacy-section,
body.business .privacy-section {
  border-bottom: none;
  padding: 120px 60px 120px;
}

body.personal .privacy-section { background: #D5E6D4; }
body.business .privacy-section { background: #403AF5; }

body.personal .privacy-card,
body.business .privacy-card {
  border: 1px solid #171717;
  height: auto;
  overflow: hidden;
}

body.personal .privacy-card { background: #D5E6D4; }
body.business .privacy-card { background: #403AF5; border-color: #ffffff; }

body.personal .privacy-card-illustration,
body.business .privacy-card-illustration {
  height: 380px;
  padding: 40px;
}

body.personal .privacy-card-illustration img,
body.business .privacy-card-illustration img {
  width: 70%;
  max-height: 200px;
}

body.personal .privacy-card-body {
  background: #D5E6D4;
  border-top: 1px solid #171717;
  padding: 28px 32px 32px;
}

body.business .privacy-card-body {
  background: #403AF5;
  border-top: 1px solid #ffffff;
  padding: 28px 32px 32px;
}

body.personal .privacy-heading {
  color: #111111;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.personal .privacy-card-body h3,
body.personal .privacy-card-body p {
  color: #111111;
}

body.business .privacy-card-body h3,
body.business .privacy-card-body p {
  color: #ffffff;
}

body.business .privacy-heading {
  color: #ffffff;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.personal .footer-email-input-wrap,
body.business .footer-email-input-wrap,
body.waitlist-body .footer-email-input-wrap,
body.contact-body .footer-email-input-wrap {
  background-image: none;
  border: 1.5px solid #555;
}

body.business .footer,
body.waitlist-body .footer,
body.contact-body .footer {
  border-top: 1px solid #141313;
}

body.personal .footer-email-form button {
  background: #403AF5;
  color: #ffffff;
  border-color: #403AF5;
}

body.business .footer-email-form button {
  background: #403AF5;
  color: #ffffff;
  border-color: #403AF5;
}

body.waitlist-body .footer-email-form button,
body.contact-body .footer-email-form button {
  background: #D5E6D4;
  color: #111111;
  border-color: #D5E6D4;
}

body.personal .footer-email-form button:hover {
  background: transparent;
  color: #111111;
  border-color: #111111;
}

body.business .footer-email-form button:hover {
  background: transparent;
  color: #171717;
  border-color: #171717;
}

body.waitlist-body .footer-email-form button:hover,
body.contact-body .footer-email-form button:hover {
  background: transparent;
  color: #111111;
  border-color: #111111;
}


/* --- FAQ sectie personal --- */
.p-faq {
  padding: 160px 100px;
  background: var(--white);
}

.p-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.p-faq-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #171717;
}

.p-faq-right {
  display: flex;
  flex-direction: column;
}

.p-faq-item:not(:first-child) {
  border-top: 1px solid var(--gray-200);
}

.p-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 400;
  color: #171717;
  text-align: left;
}

.p-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #171717;
}

.p-faq-item.open .p-faq-chevron {
  transform: rotate(180deg);
}

.p-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-faq-answer p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  padding-bottom: 22px;
}

.p-mobile-illu {
  display: none;
}

body.business .home-calc-bottom--mobile { display: none; }
.calc-take-it-back { display: none; }

/* --- Particulieren mobile --- */
@media (max-width: 768px) {
  .biz-ticker { margin-left: 0 !important; margin-right: 0 !important; padding-top: 20px !important; }
  body.business .p-problem { padding: 0 !important; }
  .nav-joined { display: none; }
  .nav-links--center { display: none; }
  .p-hero,
  body.business .p-hero {
    padding: 60px 24px 80px;
    margin-top: 64px;
    text-align: left;
    align-items: flex-start;
  }
  .p-mobile-illu {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 24px 0;
    background: #ffffff;
  }
  .p-mobile-illu img {
    width: 38%;
    max-width: 180px;
    object-fit: contain;
    display: block;
  }
  body.personal .p-problem-visual { display: none; }
  body.business .p-problem-visual { display: none; }

  /* --- Business privacy section mobile (matching personal) --- */
  body.business .privacy-section { padding: 60px 5vw 160px !important; }
  body.business .privacy-header { padding: 0; margin-top: 70px; }
  body.business .privacy-heading { font-size: 42px; letter-spacing: -1px; max-width: 100%; }

  /* --- Business problem section mobile (matching personal) --- */
  body.business .p-problem { border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); }
  body.business .p-problem-inner-wrap { padding: 32px 24px 48px; min-height: auto; display: flex; flex-direction: column; }
  body.business .p-problem-text { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
  body.business .p-problem-title { font-size: clamp(30px, 7.8vw, 48px); font-weight: 300; line-height: 1.15; margin-bottom: auto; padding-top: 10px; padding-bottom: 240px; }
  body.business .p-problem-desc { font-size: 15px; max-width: 100%; margin-top: 0; }
  body.business .p-problem-link { margin-top: auto; font-size: 16px; padding-top: 40px; }

  /* --- What is Goome mobile (personal) --- */
  body.personal .what-is-goome { padding: 120px 24px 60px; }
  body.personal .wig-content { display: none; }
  body.personal .wig-desc {
    font-size: clamp(26px, 7.5vw, 38px);
    font-weight: 300;
    color: #aaaaaa;
    max-width: 88%;
    line-height: 1.3;
    margin: 16px 0 72px;
  }
  body.personal .wig-highlight { color: #111111; font-weight: 400; }
  body.personal .wig-privacy-link { color: #111111; font-weight: 400; }
  body.personal .wig-desc-label { font-size: 17px; color: #555555; margin-bottom: 16px; }
  body.personal .wig-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
  body.personal .wig-cta--mobile {
    display: inline-flex;
    background: #111111;
    color: #ffffff;
    padding: 10px 28px;
    font-size: 16px;
    width: fit-content;
    border: none;
    text-decoration: none;
  }
  body.personal .wig-mobile-joined {
    font-size: 14px;
    color: #333333;
    font-weight: 300;
  }
  body.personal .wig-carousel {
    display: block;
    overflow: hidden;
    margin: 0 -24px;
    border-top: 1px solid #DDDDDD;
    padding-top: 160px;
    margin-top: 160px;
  }
  body.personal .wig-carousel-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 calc(9vw);
    scrollbar-width: none;
  }
  body.personal .wig-carousel-track::-webkit-scrollbar { display: none; }
  body.personal .wig-carousel-item {
    flex: 0 0 90vw;
    scroll-snap-align: center;
  }
  body.personal .wig-carousel-item {
    transition: opacity 0.3s ease;
    opacity: 0.35;
  }
  body.personal .wig-carousel-item.is-active {
    opacity: 1;
  }
  body.personal .wig-carousel-card {
    border: 1px solid #111111;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #ffffff;
  }
  body.personal .wig-carousel-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
  }
  body.personal .wig-carousel-num {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 14px;
    font-weight: 300;
    color: #111111;
  }
  body.personal .wig-carousel-item strong {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #111111;
    margin-bottom: 8px;
  }
  body.personal .wig-carousel-item p {
    font-size: 16px;
    font-weight: 300;
    color: #777777;
    line-height: 1.6;
    max-width: 75%;
  }
  /* --- What is Goome mobile (business) --- */
  body.business .wig-content { display: none; }
  body.business .wig-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
  body.business .wig-cta--mobile {
    display: inline-flex;
    background: #403AF5;
    color: #ffffff;
    padding: 10px 28px;
    font-size: 16px;
    width: fit-content;
    border: 1.5px solid #403AF5;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  body.business .wig-cta--mobile:hover {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
  }
  body.business .wig-mobile-joined {
    display: none;
  }
  /* --- Business calculator mobile layout --- */
  .hc-section-label {
    display: block;
    font-size: 17px;
    font-weight: 300;
    color: #171717;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .hc-section-label--results { margin-top: 24px; }
  .hc-section-label--roi { margin-top: 24px; }
  body.business .home-calc-mode-desc u { color: #171717; }
  body.business .home-calc-mode-desc { width: 100%; font-size: 14.5px; font-weight: 300; letter-spacing: 0.02em; }
  body.business .home-calculator { margin-top: 100px !important; padding-top: 100px !important; border-top: 1px solid #dddddd !important; }
  body.business .biz-calc-title { font-size: clamp(32px, 8.5vw, 42px); font-weight: 300; letter-spacing: 0; text-align: left; margin-bottom: 52px; }
  body.calc-page .calc-hero { min-height: 100vh; }
  body.calc-page .home-calculator { border-top: none !important; margin-top: 0 !important; padding-top: 48px !important; }
  body.calc-page .biz-calc-title { display: none; }
  body.business .home-calc-grid { display: flex !important; flex-direction: column; gap: 0; }
  body.business .home-calc-left { grid-column: unset; padding: 20px; border: 1px solid #111111; }
  body.business .home-calc-field label { font-size: 16px; color: #111111; font-weight: 300; margin-bottom: 10px; }
  body.business .home-calc-field > input { width: 100% !important; border: 1px solid #111111 !important; background-image: none !important; padding: 0 14px; height: 56px; box-sizing: border-box; font-size: 16px; }
  body.business .hc-input-wrap { border: 1px solid #111111 !important; background-image: none !important; padding: 0 14px; flex: 1; width: auto !important; height: 56px; box-sizing: border-box; }
  body.business .hc-input-wrap input { padding: 0 !important; font-size: 16px; }
  body.business .hc-input-prefix { padding: 0 4px 0 0; font-size: 16px; }
  body.business .hc-currency-select { display: block; flex: 0 0 56px; width: 56px !important; height: 56px; box-sizing: border-box; padding: 0; font-size: 15px; text-align: center; text-align-last: center; -webkit-appearance: none; appearance: none; border: 1px solid #111111 !important; }
  body.business .home-calc-field { margin-bottom: 28px; }
  body.business .home-calc-results {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -24px 0;
    padding: 0 24px;
    gap: 12px;
  }
  body.business .home-calc-results::-webkit-scrollbar { display: none; }
  body.business .home-calc-col {
    flex: 0 0 75vw;
    padding: 0;
    border: 1px solid #111111;
    display: flex;
    flex-direction: column;
  }
  body.business .home-calc-col .home-calc-above-divider {
    padding: 24px 20px;
    border-bottom: 1px solid #111111;
  }
  body.business .home-calc-col h3 { font-size: 28px; font-weight: 300; color: #171717; }
  body.business .home-calc-col .home-calc-divider { display: none; }
  body.business .home-calc-col .home-calc-metric { padding: 20px 20px 0; }
  body.business .home-calc-col .metric-label { font-size: 15px; font-weight: 300; color: #111111; margin-bottom: 6px; display: block; }
  body.business .home-calc-col .metric-big { font-size: 28px; font-weight: 300; color: #111111; }
  body.business .home-calc-col .metric-currency { font-size: 28px; font-weight: 300; color: #111111; }
  body.business .home-calc-col .metric-unit { font-size: 14px; font-weight: 300; color: #999999; margin-left: 6px; }
  body.business .home-calc-col--green { background: rgba(64, 58, 245, 0.1) !important; border-color: #111111 !important; }
  body.business .home-calc-col--green .home-calc-above-divider { border-bottom-color: #111111; }
  body.business .home-calc-col--green h3 { color: #171717; }
  body.business .home-calc-col--green .metric-label { color: #111111; }
  body.business .home-calc-col--green .metric-big,
  body.business .home-calc-col--green .metric-currency { color: #111111; }
  body.business .home-calc-col--green .metric-unit { color: #999999; }
  body.business .home-calc-col .metric-value-row { display: flex; align-items: baseline; gap: 0; margin-bottom: 4px; }
  body.business .home-calc-col .metric-eq { display: none; }
  body.business #btn-conservative { display: none; }
  body.business .home-calc-toggle { display: flex; }
  body.business #btn-scientific { flex: 1; }
  body.business .toggle-btn { font-size: 15px; }
  body.business .hc-mobile-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #111111;
    color: #111111;
    padding: 14px 20px;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
  }
  body.business .hc-mobile-cta-btn:hover {
    background: #403AF5;
    border-color: #403AF5;
    color: #ffffff;
  }
  body.business .home-calc-bottom--desktop { display: none; }
  body.business .home-calc-bottom--mobile {
    display: block;
    border: 1px solid #111111;
    padding: 24px 20px;
    margin-top: 0;
  }
  body.business .hc-roi-row-label { font-size: 14px; color: #111111; margin: 0 0 6px; font-weight: 300; }
  body.business .hc-roi-savings { font-size: 32px; font-weight: 300; margin: 0 0 4px; }
  body.business .hc-roi-savings .metric-currency { font-size: 32px; color: inherit; }
  body.business .hc-roi-price-row { font-size: 14px; color: #777777; margin: 6px 0 0; font-weight: 300; }
  body.business .hc-roi-price-row strong { font-size: 20px; font-weight: 300; color: #111111; }
  body.business .hc-roi-price-pre { font-size: 13px; color: #777777; }
  body.business .hc-roi-price-unit { font-size: 13px; color: #777777; }
  body.business .hc-roi-links { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
  body.business .hc-roi-link-main { font-size: 14px; color: #111111; text-decoration: underline; }
  body.business .hc-roi-link-sub { font-size: 14px; color: #403AF5; text-decoration: none; }

  .calc-take-it-back {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    padding: 14px 24px;
    text-decoration: none;
    margin: 48px 0 0;
    border: 1px solid #111111;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .calc-take-it-back:hover {
    background: transparent;
    color: #111111;
  }

  body.business .data-stats { padding: 120px 0 80px; }
  body.business .data-stats-title { font-size: 36px; letter-spacing: -1px; font-weight: 300; padding: 0 24px; margin-bottom: 8px; }
  body.business .data-stats-subtitle { padding: 0 24px; margin-bottom: 0; }
  body.business .data-stats-grid { display: none; }

  body.business .wig-carousel {
    display: block;
    overflow: hidden;
    margin: 0 -24px;
    border-top: 1px solid #DDDDDD;
    padding-top: 160px;
    margin-top: 160px;
  }
  body.business .wig-carousel-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 calc(9vw);
    scrollbar-width: none;
  }
  body.business .wig-carousel-track::-webkit-scrollbar { display: none; }
  body.business .wig-carousel-item {
    flex: 0 0 90vw;
    scroll-snap-align: center;
    transition: opacity 0.3s ease;
    opacity: 0.35;
  }
  body.business .wig-carousel-item.is-active { opacity: 1; }
  body.business .wig-carousel-card {
    border: 1px solid #111111;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #ffffff;
  }
  body.business .wig-carousel-card img { width: 70%; height: 70%; object-fit: contain; }
  body.business .wig-carousel-num {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 14px;
    font-weight: 300;
    color: #111111;
  }
  body.business .wig-carousel-item strong {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #111111;
    margin-bottom: 8px;
  }
  body.business .wig-carousel-item p {
    font-size: 16px;
    font-weight: 300;
    color: #777777;
    line-height: 1.6;
    max-width: 75%;
  }

  body.business .data-stats-carousel {
    display: block;
    border-top: none;
    margin-top: 24px;
    padding-top: 32px;
  }
  body.business .data-stats-carousel .wig-carousel-item strong { font-size: 22px; }
  body.business .data-stats-carousel .wig-carousel-item p { font-size: 18px; max-width: 90%; }

  body.personal .p-problem { border-top: 1px solid #111111; border-bottom: 1px solid #111111; padding: 0; }
  body.personal .p-problem-inner-wrap { padding: 32px 24px 48px; min-height: 90vh; display: flex; flex-direction: column; }
  body.personal .p-problem-text { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
  body.personal .p-problem-title { font-size: clamp(32px, 8.5vw, 52px); line-height: 1.15; margin-bottom: auto; padding-bottom: 380px; }
  body.personal .p-problem-desc { font-size: 17.5px; max-width: 100%; margin-top: 0; }
  body.personal .p-problem-link { margin-top: auto; font-size: 16px; padding-top: 40px; }
  .p-hero-title { font-size: clamp(52px, 14vw, 80px); }
  .p-hero-line2 { justify-content: flex-start; }
  .p-hero-sub { font-size: 15px; max-width: 85%; }
  .p-hero-ctas { flex-direction: row; width: 100%; gap: 12px; }
  .p-btn-primary { flex: 1; justify-content: center; font-size: 13px; padding: 10px 16px; white-space: nowrap; }
  .p-btn-outline {
    flex: 1;
    justify-content: center;
    border: none;
    background: transparent;
    text-decoration: underline;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* === BUSINESS CALCULATOR REDESIGN === */
body.calc-page .biz-calc-title { display: none; }

.biz-calc-title {
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  font-variation-settings: 'wght' 250;
  letter-spacing: -1.5px;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 48px;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}

body.business .home-calculator {
  border-top: 1px solid var(--gray-200);
  padding-top: 160px;
}

body.personal .what-is-goome {
  border-top: 1px solid var(--gray-200);
}

body.business .home-calc-col--green {
  border: 1px solid #111111;
  background: #fff;
}

body.business .toggle-btn.active {
  background: #403AF5;
  border-color: #403AF5;
  color: #ffffff;
}

body.business .p-btn-outline:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

body.personal .p-btn-outline:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

body.business .home-calc-bottom {
  background: #fafafa;
}

.biz-roi-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.biz-roi-header .bottom-label {
  display: inline;
  margin-bottom: 0;
}

.biz-roi-note {
  font-size: 12px;
  color: #403AF5;
}

.biz-roi-box {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 16px;
}

body.business .home-calc-bottom {
  grid-template-columns: 1fr 2.2fr;
}

body.business .toggle-btn {
  padding: 14px 22px;
}

body.business .hc-currency-select {
  display: block;
}

body.business .biz-wage-row {
  width: 60%;
}

body.business .biz-wage-row .hc-input-wrap {
  flex: 1;
  width: auto !important;
}

body.business .home-calc-field > input,
body.business .hc-input-wrap,
body.business .hc-currency-select {
  background-image: none;
  border: 1px solid #555;
}

body.business .hc-input-wrap input {
  border: none !important;
  background-image: none;
}

body.business .home-calc-divider--spaced {
  margin: 48px 0;
}

body.business .home-calc-col .home-calc-above-divider {
  min-height: auto;
  justify-content: flex-start;
  padding-bottom: 20px;
}

body.business .calc-hero-sub {
  color: #171717;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  padding: 9px 28px;
  border: 1px solid #171717;
  background: transparent;
  color: #171717;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 0;
  white-space: nowrap;
  width: fit-content;
}

.feature-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #171717;
  clip-path: circle(0% at var(--mouse-x, 50%) -10%);
  transition: clip-path 0.45s ease;
  z-index: -1;
}

.feature-btn:hover::before {
  clip-path: circle(160% at var(--mouse-x, 50%) -10%);
}

.feature-btn:hover {
  color: #ffffff;
}

/* === NEW PRICING LAYOUT === */
.pricing-section {
  padding: 16px 60px 200px;
  max-width: 880px;
  margin: 0 auto;
}

.np-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.np-toggle {
  display: flex;
  border: 1px solid #171717;
  padding: 3px;
  gap: 4px;
  position: relative;
}

.np-toggle-slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 0;
  background: #171717;
  z-index: 0;
  pointer-events: none;
}

.np-toggle-btn {
  padding: 13px 48px;
  border: none;
  background: transparent;
  color: #999;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.np-toggle-btn--active {
  color: #ffffff;
}

.np-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.np-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #171717;
}

.np-card-header {
  padding: 42px 32px 36px;
  border-bottom: 1px solid #171717;
}

.np-card-header--white {
  background: #ffffff;
}

.np-card-header--blue {
  background: #403AF5;
}

.np-card-name {
  font-family: 'Google Sans Code', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #111111;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.np-card-header--blue .np-card-name {
  color: #ffffff;
}

.np-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.np-starting {
  font-size: 13px;
  color: #ffffff;
  font-weight: 300;
}

.np-price-amount {
  font-family: 'Google Sans', sans-serif;
  font-size: 26px;
  font-weight: 200;
  color: #111111;
  letter-spacing: -0.5px;
  -webkit-font-smoothing: antialiased;
}

.np-card-header--blue .np-price-amount {
  color: #ffffff;
}

.np-price-period {
  font-size: 13px;
  color: #666;
  font-weight: 300;
}

.np-card-header--blue .np-price-period {
  color: rgba(255,255,255,0.75);
}

.np-card-body {
  padding: 56px 32px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.np-card-desc {
  font-family: 'Google Sans Code', monospace;
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  margin: 0 0 28px 0;
}

.np-divider {
  border: none;
  border-top: 1px solid #171717;
  margin: 0 0 24px 0;
  width: 100%;
}

.np-min-label {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px 0;
}

.np-min-value {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.np-card-footer {
  margin-top: auto;
  padding: 36px 0 66px;
}

.np-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  text-align: center;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.np-btn--dark {
  background: #171717;
  color: #ffffff;
  border: 1.5px solid #171717;
}

.np-btn--dark:hover {
  background: transparent;
  color: #111;
  border-color: #111;
}

.np-btn--blue {
  background: #403AF5;
  color: #ffffff;
  border: 1.5px solid #403AF5;
}

.np-btn--blue:hover {
  background: transparent;
  color: #111;
  border-color: #111;
}

.np-btn .arrow-slide {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-6px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.np-btn:hover .arrow-slide {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

.np-btn {
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.np-section-label { display: none; }
.np-toggle-wrap--mobile { display: none; }
.np-card-section { display: contents; }

/* ============================================================
   MOBILE — new sections (desktop breakpoints above untouched)
   ============================================================ */

@media (max-width: 900px) {

  /* --- New Pricing layout --- */
  .pricing-hero {
    height: auto;
    min-height: 72vh;
    padding: 100px 24px 56px;
  }

  .pricing-section {
    padding: 20px 24px 80px;
  }

  .np-toggle-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

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

  .np-card-header {
    padding: 40px 24px 32px;
  }

  .np-card-body {
    padding: 32px 24px 0;
  }

  .np-card-footer {
    padding: 0 0 32px;
  }

  /* --- Pricing mobile cards --- */
  .np-card-section { display: block; }
  .np-section-label {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #111111;
    margin: 0 0 12px 0;
  }
  .np-card-section + .np-card-section { margin-top: 48px; }
  .np-toggle-wrap--desktop { display: none; }
  .np-toggle-wrap--mobile {
    display: flex;
    margin: 0 0 28px 0;
    padding: 0;
    border: 1px solid #171717;
  }
  .np-toggle-wrap--mobile .np-toggle {
    flex: 1;
    border: none;
    padding: 3px;
    gap: 0;
  }
  .np-toggle-wrap--mobile .np-toggle-btn {
    flex: 1;
    padding: 16px 12px;
    font-size: 14px;
    color: #111111;
  }
  .np-toggle-wrap--mobile .np-toggle-btn--active { color: #ffffff; }
  .np-card { min-height: 640px; }
  .np-card-name { font-size: 28px; letter-spacing: -0.5px; }
  .np-price-amount { font-size: 28px; }
  .np-card-header--blue .np-price-amount { font-size: 34px; }
  .np-card-desc { font-size: 16px; }
  .np-divider { margin-left: -24px; margin-right: -24px; width: calc(100% + 48px); margin-top: 32px; margin-bottom: 32px; }
  .np-min-label { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
  .np-min-value { font-size: 16px; }
  .np-btn { width: 100%; box-sizing: border-box; }

  /* --- Waitlist decorative squares hidden --- */
  .wl-deco {
    display: none;
  }

  /* --- Waitlist page --- */
  .waitlist-page {
    height: 92vh !important;
    height: 92dvh !important;
    box-sizing: border-box !important;
    padding-top: 64px !important;
    overflow: hidden;
    justify-content: space-between;
    min-height: unset !important;
  }

  .waitlist-text {
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
  }

  .waitlist-hero-title {
    font-size: clamp(52px, 14vw, 80px);
    text-align: center;
    letter-spacing: -3px;
  }

  .waitlist-hero-sub {
    text-align: center;
    font-size: 16px;
    max-width: 300px;
  }

  .contact-page .waitlist-hero-title {
    font-size: clamp(42px, 11vw, 58px);
    text-align: center;
    letter-spacing: -2px;
  }

  .contact-page .waitlist-hero-sub {
    font-size: 17px;
    max-width: 300px;
  }

  .waitlist-bottom {
    justify-content: stretch;
    width: 100%;
  }

  .waitlist-hero-form {
    flex-direction: column;
    padding: 0 24px 0;
    gap: 8px;
    max-width: 100%;
    width: 100%;
  }

  .waitlist-hero-form input,
  .waitlist-hero-form button {
    width: 100%;
    flex: none;
  }

  .waitlist-hero-form input {
    padding: 18px 20px;
    font-size: 16px;
    color: #111111;
  }
  .waitlist-hero-form input::placeholder {
    color: #111111;
  }

  .waitlist-hero-form button {
    background: #403AF5;
    color: #ffffff;
    border-color: #403AF5;
    padding: 18px 20px;
    font-size: 16px;
  }

  .waitlist-bottom {
    padding-bottom: 0 !important;
  }

  .waitlist-hero-form {
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .waitlist-page {
    padding-bottom: 0 !important;
  }


  /* --- Contact page --- */
  .contact-page {
    height: 92vh !important;
    height: 92dvh !important;
    box-sizing: border-box !important;
    padding-top: 64px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: unset !important;
  }

  .contact-page .waitlist-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
  }

  .contact-bottom {
    width: 100%;
    padding: 0;
    display: block;
  }

  .contact-form-box {
    flex: none;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 24px !important;
  }

  .contact-form-box textarea {
    width: 100%;
    box-sizing: border-box;
    height: 120px;
    margin-bottom: 0 !important;
    resize: none;
  }

  .contact-form-row input::placeholder {
    color: #111111;
  }

  .contact-form-row button:hover {
    background: transparent;
    color: #111111;
    border-color: #111111;
  }

  /* --- Business calculator --- */
  body.business .biz-wage-row {
    width: 100%;
  }

  body.business .home-calc-bottom {
    grid-template-columns: 1fr;
  }

  /* --- FAQ --- */
  .p-faq {
    padding: 120px 24px 60px;
    border-bottom: none;
  }
  .p-faq-title { font-weight: 300; font-size: 44px; }

  .p-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* --- Calculator result columns: stack vertically --- */
  .home-calc-grid {
    grid-template-columns: 1fr !important;
  }

  .home-calc-left {
    grid-column: 1 / -1;
  }

  /* --- Hero CTA buttons: side by side --- */
  .p-hero-ctas {
    flex-direction: row !important;
    width: auto !important;
  }

  .p-btn-primary,
  .p-btn-outline {
    width: auto !important;
  }

  /* --- Blue problem container: full width --- */
  .p-problem {
    padding: 0;
  }

  .p-problem-inner-wrap {
    padding: 60px 24px;
  }

  .p-problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .biz-ticker {
    background: #ffffff;
    margin-left: 0;
    margin-right: 0;
  }
  .biz-ticker-track span {
    color: #111111;
    font-size: 18px;
  }
  body.business .p-btn-primary {
    background: #403AF5;
    border-color: #403AF5;
    color: #ffffff !important;
  }
  body.business .p-btn-outline {
    color: var(--black);
    text-decoration-color: var(--black);
  }
  body.business .p-btn-outline:hover {
    color: #ffffff;
  }

  /* --- What is Goome / 4 steps: full width, single column --- */
  body.business .what-is-goome {
    padding: 120px 24px 60px;
  }

  /* --- Business wig-desc mobile (matching personal) --- */
  body.business .wig-desc {
    font-size: clamp(27px, 7.2vw, 38px);
    font-weight: 300;
    color: #aaaaaa;
    max-width: 100%;
    line-height: 1.3;
    margin: 16px 0 72px;
  }
  body.business .wig-highlight { color: #171717; font-weight: 300; }
  body.business .wig-privacy-link { color: #171717; font-weight: 300; text-decoration: none; }
  body.business .wig-desc-label { font-size: 20px; color: #403AF5; margin-bottom: 16px; }

  .wig-steps {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100%;
  }

  .wig-step {
    flex: 1 1 100% !important;
    width: 100%;
  }
}

@media (max-width: 480px) {

  /* --- Pricing hero --- */
  .pricing-hero-title {
    font-size: clamp(64px, 17vw, 96px);
    letter-spacing: -2.5px;
  }
  body.pricing-page .calc-hero-sub {
    font-size: 18px;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
  }

  /* --- Toggle: stack on very small screens (desktop toggle only) --- */
  .np-toggle-wrap--desktop .np-toggle {
    flex-direction: column;
    width: 100%;
  }

  .np-toggle-wrap--desktop .np-toggle-slider {
    display: none;
  }

  .np-toggle-wrap--desktop .np-toggle-btn {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    border: none;
  }

  .np-toggle-wrap--desktop .np-toggle-btn--active {
    background: #171717;
  }

  /* --- Contact form: two-col name row, rest full width --- */
  .contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .contact-form-row input:nth-child(1),
  .contact-form-row input:nth-child(2) {
    flex: 1 1 calc(50% - 4px);
    width: auto;
  }

  .contact-form-row input:nth-child(3) {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-form-row button {
    flex: 1 1 100%;
    width: 100%;
    background: #403AF5;
    color: #ffffff;
    border-color: #403AF5;
  }

  .contact-form-row button:hover {
    background: transparent;
    color: #111111;
    border-color: #111111;
  }

  .contact-form-row input::placeholder {
    color: #111111;
  }

  /* --- Waitlist / contact titles --- */
  .waitlist-hero-title {
    font-size: clamp(34px, 10vw, 54px);
    letter-spacing: -1.5px;
  }

  .contact-page .waitlist-hero-title {
    font-size: clamp(42px, 11vw, 58px);
    text-align: center;
    letter-spacing: -2px;
  }
}

/* === FEATURES & PRICING: footer knop blauw === */
body.features-page .footer-email-form button,
body.pricing-page .footer-email-form button {
  background: #403AF5;
  color: #ffffff;
  border-color: #403AF5;
}

body.features-page .footer-email-form button:hover,
body.pricing-page .footer-email-form button:hover {
  background: transparent;
  color: #171717;
  border-color: #171717;
}
