/* ==== Reset / base ==== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  background: #0e0e0e;
  color-scheme: dark;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background: #0e0e0e;
  color: #c3c5d9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ==== Tokens ==== */
:root {
  --bg-0: #0e0e0e;
  --bg-1: #131313;
  --text: #e2e2e2;
  --muted: #c3c5d9;
  --primary: #0059ff;
  --grad-from: #33a0f4;
  --grad-to: #e500c6;
  --green-from: #0fc100;
  --green-to: #5aff88;
  --line: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-strong: rgba(255, 255, 255, 0.06);
  --container: 1280px;
  --pad-x: 32px;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: 120px 0;
  position: relative;
}

/* ==== Typography ==== */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  letter-spacing: 0;
}
.eyebrow--center { text-align: center; }

.h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.h2--center { text-align: center; }

.h4 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.48px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.body {
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.body-sm {
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.grad-text {
  background: linear-gradient(270deg, var(--grad-to), var(--grad-from));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text--green {
  background: linear-gradient(90deg, var(--green-from) 40%, var(--green-to) 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text--red {
  background: linear-gradient(90deg, #ff3b3b, #ff8a3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Per-page accent themes (override gradient text + hero blobs) */
.theme-marketing {
  --grad-from: #FFB800;
  --grad-to: #DB00FF;
}
.theme-marketing .hero__blob--blue { background: #DB00FF; }
.theme-marketing .hero__blob--violet { background: #FFB800; }

.theme-sales {
  --grad-from: #FFE24C;
  --grad-to: #0B98FF;
}
.theme-sales .hero__blob--blue { background: #0B98FF; }
.theme-sales .hero__blob--violet { background: #FFE24C; }

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: #0048d6; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); }
.btn--sm { height: 40px; padding: 0 24px; font-size: 14px; }

/* ==== Glass card ==== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
}

.card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Icons already include their own backgrounds in the SVG */
.icon { display: block; flex-shrink: 0; }
.icon--md { width: 48px; height: 48px; }
.icon--lg { width: 56px; height: 56px; }
/* AI svg has a 80x80 viewBox (icon body 56x56 + drop shadow padding) */
.icon--xl { width: 80px; height: 80px; margin: -12px; }

/* ==== TopNav ==== */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.topnav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topnav__logo img { height: 22px; }
.topnav__menu {
  display: flex;
  gap: 28px;
}
.topnav__menu a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: opacity 0.2s ease;
}
.topnav__menu a:hover { opacity: 0.7; }
.topnav__menu a[aria-current="page"] {
  color: #4d8aff;
}
.topnav__menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1.5px;
  background: #4d8aff;
  border-radius: 1px;
}
.footer__col a[aria-current="page"] {
  color: #4d8aff;
}
.topnav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang { position: relative; }
.lang__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.caret {
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #fff;
  margin-top: 2px;
  transition: transform 0.2s ease;
}
.lang--open .caret { transform: rotate(180deg) translateY(-2px); }
.lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 80px;
  padding: 6px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
}
.lang--open .lang__menu { display: flex; }
.lang__opt {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #c3c5d9;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang__opt:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lang__opt--active { color: #fff; background: rgba(0,89,255,0.2); }

/* ==== Hero ==== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero__blob--blue {
  background: #0059ff;
  width: 500px;
  height: 500px;
  top: 80px;
  left: 50%;
  transform: translate(calc(-50% - 260px), 0);
  animation: float-blue 16s ease-in-out infinite;
}
.hero__blob--violet {
  background: #b400d2;
  width: 400px;
  height: 400px;
  bottom: 0;
  right: 50%;
  transform: translate(calc(50% + 260px), 0);
  filter: blur(50px);
  animation: float-violet 20s ease-in-out infinite;
}

@keyframes float-blue {
  0%, 100% {
    transform: translate(calc(-50% - 260px), 0) scale(1);
  }
  33% {
    transform: translate(calc(-50% + 150px), -150px) scale(1.2);
  }
  66% {
    transform: translate(calc(-50% - 50px), 200px) scale(0.8);
  }
}

@keyframes float-violet {
  0%, 100% {
    transform: translate(calc(50% + 260px), 0) scale(1);
  }
  33% {
    transform: translate(calc(50% - 200px), 150px) scale(1.2);
  }
  66% {
    transform: translate(calc(50% + 50px), -200px) scale(0.8);
  }
}
.hero__inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 9999px;
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ae07d;
}
.pill__text {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero__title {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 600;
  color: var(--text);
  max-width: 896px;
  margin: 0;
}
.hero__sub {
  max-width: 672px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}
.hero__ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.awards {
  position: relative;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--pad-x);
}
.awards img {
  height: 30px;
  width: auto;
  opacity: 0.95;
}

/* ==== BENTO grid ==== */
.section--bento { background: #0e0e0e; }
.bento {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
}
.bento__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.bento__intro-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 18px;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stat-card p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.bento__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.bento__cards .card { height: auto; min-height: 260px; }
.bento__cards .card--wide {
  grid-column: 1 / -1;
  height: auto;
  min-height: 146px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  gap: 24px;
}
.card--wide .card__art {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.card--wide > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==== Problem section ==== */
.section--problem { background: #0e0e0e; }
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
}
.problem__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem__chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  max-width: 384px;
  padding: 24px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.problem__chip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.problem__chip-head h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  line-height: 1.3;
  margin: 0;
}
.problem__chip-head img { width: 51px; height: 51px; flex-shrink: 0; }
.problem__chip p {
  font-size: 16px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0;
}
.problem__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.problem__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem__list .cross {
  margin-top: 6px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url('Assets/Icons/sm/Linkedin.svg');
  background: none;
  position: relative;
}
.problem__list .cross::before,
.problem__list .cross::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: #ff5577;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.problem__list .cross::before { transform: translate(-50%, -50%) rotate(45deg); }
.problem__list .cross::after { transform: translate(-50%, -50%) rotate(-45deg); }
.problem__list h3 { margin-bottom: 4px; }

/* ==== Marketing section ==== */
.section--marketing { background: var(--bg-1); }
.marketing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.marketing__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.features li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.marketing__media {
  position: relative;
}
.marketing__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==== Sales pipeline ==== */
.section--sales { background: var(--bg-1); }
.sales__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}
.sales__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card--lg {
  border-radius: 32px;
  padding: 26px 18px;
  gap: 20px;
  justify-content: space-between;
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.checks li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.checks img { width: 12px; height: 12px; }
.checks span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(226,226,226,0.6);
}
.sales__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ==== CTA banner ==== */
.section--cta {
  background: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0059ff 0%, #b400d2 100%);
  filter: blur(80px);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta {
  position: relative;
  max-width: 896px;
  width: calc(100% - 64px);
  padding: 64px;
  background: var(--glass-bg);
  border: 2px solid rgba(182,196,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta .h2 { color: #fff; }
.cta__sub { max-width: 760px; }

/* ==== FAQ ==== */
.section--faq { background: var(--bg-0); }
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  padding: 12px 24px;
  border-radius: 56px;
  background: #4a4a4a;
  color: #f6f6f6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.2s ease;
}
.tab:hover { background: #5a5a5a; }
.tab--active {
  background: var(--primary);
  color: #fff;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1216px;
  margin: 0 auto;
  width: 100%;
}
.faq__list[hidden] { display: none; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 1.3;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}
.faq__btn:hover { color: #fff; }
.faq__arrow {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq__item--open .faq__arrow {
  transform: rotate(-135deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.3s ease;
}
.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item--open .faq__answer > p {
  opacity: 1;
  padding: 0 0 24px;
}

/* ==== Footer ==== */
.footer {
  background: #0e0e0e;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__col a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}
.footer__col a:hover { opacity: 0.7; }
.footer__logo {
  height: 25px;
  width: auto;
  margin-bottom: 16px;
}
.footer__title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin: 0 0 8px;
}
.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer__socials a {
  display: inline-flex;
  transition: transform 0.2s ease;
}
.footer__socials a:hover { transform: translateY(-2px); }
.footer__socials img { width: 32px; height: 32px; display: block; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__contact img { width: 20px; height: 20px; }
.footer__contact strong {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.footer__addr {
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  margin-top: 16px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.2s ease;
}
.footer__legal a:hover { opacity: 0.7; }
.footer__bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ==== Animation will-change hint ==== */
.js-anim,
.js-anim-heading { will-change: transform, opacity, filter; }

/* ==== Popup: Contact form ==== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup[hidden] { display: none; }
.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.popup__dialog {
  position: relative;
  width: 100%;
  max-width: 592px;
  padding: 62px 66px 66px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(182, 196, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.popup--open .popup__backdrop { opacity: 1; }
.popup--open .popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup__close:hover { background: rgba(255,255,255,0.08); }
.popup__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.64px;
  color: #f6f6f6;
}
.popup__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.field__label {
  font-size: 14px;
  line-height: 1.4;
  color: #c1c1c1;
}
.field__input {
  height: 44px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid #c1c1c1;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field__input::placeholder { color: rgba(255,255,255,0.4); }
.field__input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.14);
}
.field__input--ta {
  height: 106px;
  resize: vertical;
  min-height: 60px;
}
.field-row {
  display: flex;
  gap: 16px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(217, 217, 217, 0.4);
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.checkbox input:checked + .checkbox__box {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox input:checked + .checkbox__box::after {
  content: '';
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.checkbox__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}
.checkbox__text a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.checkbox__text a:hover { opacity: 0.8; }
.popup__submit {
  width: 100%;
  height: 40px;
  margin-top: 0;
}
.popup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.popup__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.popup__subtitle {
  margin: -8px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #c3c5d9;
  max-width: 420px;
}

.popup__dialog--slim {
  max-width: 460px;
}

.popup__status {
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: -4px;
}
.popup__status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.popup__status--error {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

@media (max-width: 600px) {
  .popup__dialog { padding: 48px 24px 32px; gap: 24px; }
  .popup__title { font-size: 26px; }
  .field-row { flex-direction: column; }
}

/* ==== Lenis ==== */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ==== Responsive ==== */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cards { grid-template-columns: 1fr 1fr; }
  .problem,
  .marketing { grid-template-columns: 1fr; gap: 48px; }
  .sales__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .topnav__menu { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .bento__cards { grid-template-columns: 1fr; }
  .bento__cards .card,
  .bento__cards .card--wide { height: auto; }
  .bento__cards .card--wide { flex-direction: column; align-items: flex-start; }
  .hero { padding: 140px 24px 60px; min-height: 0; }
  .hero__title { font-size: 36px; }
  .h2 { font-size: 32px; }
  .awards { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { padding: 40px 24px; }
}
