/* KingStore — professional visual layer (2026) */
:root {
  --ks-bg: #050506;
  --ks-surface: #0e0e10;
  --ks-elevated: #16161a;
  --ks-border: rgba(255, 255, 255, 0.14);
  --ks-text: #f4f4f5;
  --ks-muted: #b8b8be;
  --ks-accent: #f0b429;
  --ks-accent-deep: #c99212;
  --ks-accent-soft: rgba(240, 180, 41, 0.14);
  --ks-glow: rgba(240, 180, 41, 0.28);
  --ks-glow-soft: rgba(240, 180, 41, 0.14);
  --ks-radius: 14px;
  --ks-radius-sm: 10px;
  --ks-radius-lg: 18px;
  --ks-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ks-header-h: 64px;

  /* Unified spacing scale */
  --ks-space-1: 8px;
  --ks-space-2: 12px;
  --ks-space-3: 16px;
  --ks-space-4: 20px;
  --ks-space-5: 24px;
  --ks-space-6: 32px;
  --ks-space-7: 40px;
  --ks-space-8: 56px;
  --ks-space-9: 72px;

  --ks-section-y: var(--ks-space-9);
  --ks-section-y-cta: 80px;
  --ks-section-y-mobile: 48px;
  --ks-gutter: 24px;
  --ks-wrap: 1180px;
  --ks-gap: var(--ks-space-4);
  --ks-gap-lg: var(--ks-space-5);
  --ks-panel-pad: var(--ks-space-5);
  --ks-card-pad: 20px;
  --ks-stack-sm: var(--ks-space-2);
  --ks-stack: var(--ks-space-3);
  --ks-stack-lg: var(--ks-space-6);
}

html {
  scroll-behavior: smooth;
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: #f0b429 #1a1a1c;
}

html {
  background-color: var(--ks-bg);
}

body {
  background: transparent;
  color: var(--ks-text);
  position: relative;
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

#main {
  overflow: visible !important;
  height: auto !important;
  min-height: 100%;
  position: relative;
  z-index: 1;
  background: transparent !important;
}

/* Gold scrollbar — WebKit (Chrome, Edge, Safari) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #141416;
  border-left: 1px solid rgba(240, 180, 41, 0.2);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd56a 0%, #f0b429 40%, #c99212 100%);
  border-radius: 999px;
  border: 2px solid #141416;
  min-height: 48px;
  box-shadow: 0 0 12px rgba(240, 180, 41, 0.5);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffe08a 0%, #ffc84a 50%, #f0b429 100%);
  box-shadow: 0 0 18px rgba(240, 180, 41, 0.75);
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: #f0b429;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: #141416;
}

/* Soft gold ambient — fixed to viewport, sits under #main (z-index:1).
   Do NOT put glow on .ks-section: overflow/opaque section boxes clip it. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(240, 180, 41, 0.34), transparent 60%),
    radial-gradient(ellipse 80% 60% at 95% 15%, rgba(255, 200, 90, 0.22), transparent 55%),
    radial-gradient(ellipse 85% 65% at 80% 95%, rgba(240, 180, 41, 0.2), transparent 58%),
    radial-gradient(ellipse 70% 55% at 0% 80%, rgba(200, 140, 40, 0.22), transparent 52%),
    radial-gradient(ellipse 60% 50% at 45% 40%, rgba(240, 180, 41, 0.1), transparent 65%),
    radial-gradient(ellipse 50% 40% at 55% 70%, rgba(255, 210, 100, 0.08), transparent 55%),
    #050506;
}

/* Quiet line pattern + grain over glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 13px
    ),
    repeating-linear-gradient(
      72deg,
      transparent 0,
      transparent 24px,
      rgba(240, 180, 41, 0.018) 24px,
      rgba(240, 180, 41, 0.018) 25px
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: auto, auto, 180px 180px;
  mix-blend-mode: soft-light;
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ks-border);
}

.header__logo img {
  width: 148px;
}

.header__desc {
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--ks-muted);
  border-left: 1px solid var(--ks-border);
  margin-left: 16px;
  padding-top: 1px;
  padding-bottom: 1px;
}

.header__phone {
  text-align: right;
  background: url("../fonts/phone-icon-ks.svg") no-repeat left center !important;
  background-size: 36px 36px !important;
  padding: 2px 0 2px 48px !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 36px;
}

.header__phone span a {
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ks-ease);
}

.header__phone span a:hover {
  color: var(--ks-accent);
}

.header__phone a.callback {
  color: var(--ks-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.header__phone a.callback:hover {
  border-bottom-color: var(--ks-accent);
}

/* —— Hero: one desktop viewport —— */
.section-head {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.heading.bg {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
  padding: 28px 0 32px;
  background: #1a1a1c;
  overflow: hidden;
}

.heading-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.05) contrast(1.02) brightness(1.08);
}

.heading.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.72) 0%, rgba(18, 18, 20, 0.42) 46%, rgba(18, 18, 20, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.18) 0%, rgba(18, 18, 20, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.heading.bg > .wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
}

.heading .glass {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  max-width: 720px;
  padding: 0;
  box-shadow: none;
  animation: ks-rise 0.7s var(--ks-ease) both;
}

.heading__brand {
  display: none;
}

.heading__block h1,
.heading__block-mobile h1 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  padding: 0 0 12px;
  max-width: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.heading__block h1 b,
.heading__block-mobile h1 b {
  display: inline;
  background: transparent;
  padding: 0;
  color: var(--ks-accent);
  box-shadow: none;
}

.heading__block h1 .heading__earn {
  white-space: nowrap;
}

.heading__block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 0 14px;
  max-width: 42ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.heading__block p span {
  color: #fff;
  font-weight: 600;
}

.heading__form {
  padding: 14px 16px 12px;
  border-radius: var(--ks-radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.heading__form > p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 0 0 10px;
}

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

.heading__form-row input {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  height: 48px !important;
  margin: 0 !important;
}

.heading__form-row .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto;
  width: auto !important;
  height: 48px !important;
  padding: 0 18px !important;
  white-space: nowrap;
  margin: 0 !important;
}

.heading__form .consent {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
}

.heading__form input,
.section3__form input,
.section3__form textarea,
.section2 input:not([type="checkbox"]),
.section6__form input,
.section8__form input,
.section8__form textarea,
#modalform input {
  border-radius: 12px !important;
  border: 1px solid transparent !important;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.heading__form input:focus,
.section3__form input:focus,
.section3__form textarea:focus,
.section2 input:not([type="checkbox"]):focus,
.section6__form input:focus,
.section8__form input:focus,
#modalform input:focus {
  outline: none;
  border-color: rgba(240, 180, 41, 0.55) !important;
  box-shadow: 0 0 0 3px var(--ks-accent-soft);
}

.heading__list {
  display: none;
}

.heading__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 14px;
  padding: 0;
}

.heading__trust-item {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
}

.heading__trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ks-accent);
  box-shadow: 0 0 0 2px rgba(240, 180, 41, 0.25);
}

.heading__trust-item strong {
  display: inline;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

/* Short / laptop desktops: keep hero inside one screen */
@media (min-width: 651px) and (max-height: 820px) {
  .heading.bg {
    padding: 18px 0 22px;
  }

  .heading__block h1 {
    font-size: clamp(28px, 3.2vw, 40px);
    padding-bottom: 8px;
  }

  .heading__block p {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .heading__form {
    padding: 12px 14px 10px;
  }

  .heading__form-row input,
  .heading__form-row .btn {
    height: 44px !important;
  }
}

@media (min-width: 651px) and (max-height: 700px) {
  .header {
    padding: 8px 0;
  }

  .heading__trust {
    margin-bottom: 10px;
  }

  .heading__block h1 {
    font-size: clamp(26px, 3vw, 34px);
  }
}

/* Single H1: hide mobile duplicate heading block */
.heading__block-mobile {
  display: none !important;
}

@media (max-width: 650px) {
  .heading__block {
    display: block !important;
  }

  .section-head {
    min-height: 0;
  }

  .heading.bg {
    min-height: auto;
    padding: 28px 0 36px;
    display: block;
    flex: none;
  }

  .heading-video-bg {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% - 32px);
    height: 200px;
    margin: 0 16px 16px;
    border-radius: 14px;
    opacity: 0.95;
    filter: none;
    order: 0;
  }

  .heading.bg::after {
    display: none;
  }

  .heading.bg > .wrapper {
    padding: 0 16px;
  }

  .heading .glass {
    max-width: 100%;
  }

  .heading__block h1 {
    max-width: none;
    font-size: 28px;
  }

  .heading__block p {
    font-size: 15px;
    max-width: none;
  }

  .heading__form {
    padding: 14px;
    background: rgba(20, 20, 22, 0.88);
  }

  .heading__form-row {
    flex-wrap: wrap;
  }

  .heading__form-row input,
  .heading__form-row .btn {
    width: 100% !important;
    flex: 1 1 100%;
  }

  .heading__trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  position: relative;
  overflow: hidden;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
  background: var(--ks-accent) !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap;
  vertical-align: middle;
  transition: transform 0.2s var(--ks-ease), background 0.2s, box-shadow 0.2s !important;
  box-shadow: none !important;
  top: auto !important;
}

.btn:after {
  display: none !important;
  content: none !important;
}

.btn:hover {
  background: #ffc84a !important;
  transform: translateY(-1px);
  top: auto !important;
}

.btn:active {
  transform: translateY(0);
  background: var(--ks-accent-deep) !important;
  top: auto !important;
}

/* Full-width submit buttons in lead forms */
.ks-ask__form .btn,
.ks-plan__card .btn,
.section3__form .btn,
.section6__form .btn,
.section8__form .btn,
#modalform .btn {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* —— Consent —— */
.consent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ks-muted);
  cursor: pointer;
  position: relative;
  left: auto !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left !important;
}

.consent span {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  text-align: left !important;
}

.consent input[type="checkbox"] {
  position: static !important;
  left: auto !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  flex: 0 0 16px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  accent-color: var(--ks-accent);
  cursor: pointer;
}

.consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent.is-invalid {
  color: #ff8a8a;
}

/* Privacy policy modal — dark theme, readable contrast */
#police.modal__box,
#police.fancybox-content,
.fancybox-content#police {
  width: min(680px, calc(100vw - 32px)) !important;
  max-height: min(80vh, 840px);
  overflow-y: auto;
  padding: 28px 28px 32px !important;
  box-sizing: border-box !important;
  text-align: left !important;
  background: var(--ks-elevated) !important;
  color: var(--ks-text) !important;
  border: 1px solid var(--ks-border) !important;
  border-radius: var(--ks-radius-lg) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55) !important;
}

#police.modal__box .h3__title,
#police .h3__title {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  text-align: left !important;
  padding: 0 36px 18px 0 !important;
  margin: 0 0 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#police.modal__box p,
#police.modal__box span,
#police.modal__box li,
#police p,
#police span,
#police li {
  color: rgba(255, 255, 255, 0.86) !important;
}

#police.modal__box p,
#police p {
  padding: 0 0 10px 0 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

#police.modal__box ul,
#police ul {
  margin: 0 0 14px !important;
  padding: 0 0 4px 0 !important;
  list-style: none !important;
}

#police.modal__box li,
#police li {
  padding: 0 0 8px 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

#police a {
  color: var(--ks-accent) !important;
}

/* Close button contrast on dark modal */
.fancybox-slide--html .fancybox-close-small {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
}

@media (max-width: 650px) {
  #police.modal__box,
  #police.fancybox-content {
    padding: 20px 18px 24px !important;
  }

  #police .h3__title {
    font-size: 18px !important;
  }
}

/* Form success modal */
#ksSuccess.modal__box,
#ksSuccess.fancybox-content {
  width: min(420px, calc(100vw - 32px)) !important;
  padding: 36px 28px 32px !important;
  text-align: center !important;
  background: var(--ks-elevated) !important;
  color: var(--ks-text) !important;
  border: 1px solid rgba(240, 180, 41, 0.28) !important;
  border-radius: var(--ks-radius-lg) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55) !important;
}

.ks-success-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.35);
  color: var(--ks-accent);
}

.ks-success-modal__icon svg {
  width: 28px;
  height: 28px;
}

.ks-success-modal__title {
  margin: 0 0 10px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
}

.ks-success-modal__text {
  margin: 0 0 22px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.ks-success-modal__btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

/* —— Cookie banner (152-FZ) —— */
.ks-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10050;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: rgba(12, 12, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.ks-cookie[hidden] {
  display: none !important;
}

.ks-cookie__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ks-cookie__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ks-cookie__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.ks-cookie__text a {
  color: #ffc84a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ks-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ks-cookie__btn {
  flex: 1 1 160px;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
}

.footer__legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 13px;
}

.footer-legal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 650px) {
  .ks-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .ks-cookie__btn {
    flex: 1 1 100%;
  }
}

.heading__form-police {
  display: none !important;
}

/* —— Sections —— */
.section3,
.section2,
.section1,
.section4,
.section5,
.section6,
.section7,
.section8 {
  position: relative;
}

.section3 h2,
.section1 h2,
.section4 h2,
.section5 h2,
.section7 h2,
.section8 h2,
.section-stats__title,
.section5__header h2,
.section6 h3.blocktitle,
.ks-section h3 {
  text-align: left !important;
}

.section3 h2 span,
.section1 h2 span,
.section4 h2 span,
.section5 h2 span,
.section7 h2 span,
.section8 h2 span,
.section-stats__title span {
  color: var(--ks-accent);
}

.ks-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ks-ease), transform 0.7s var(--ks-ease);
}

.ks-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stats */
.section-stats {
  margin: 28px 0 36px;
  padding: 36px 28px;
  border-radius: var(--ks-radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ks-border);
}

.section2 .consent,
.section2 .ks-cta-band,
.section2 .ks-cta-band__text,
.section2 .ks-inline-form {
  text-align: left !important;
}

.section-stats .wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.section3-form2 {
  display: none !important;
}

.section-stats__number {
  color: var(--ks-accent);
  font-variant-numeric: tabular-nums;
}

.section-stats__item {
  min-width: 0;
  padding: 8px 12px;
  border-radius: var(--ks-radius-sm);
  transition: background 0.25s;
}

.section-stats__item:hover {
  background: var(--ks-accent-soft);
}

/* Reasons / formats */
.section1__box-block,
.section4__box-block {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s var(--ks-ease), border-color 0.35s;
  border: 1px solid transparent;
}

.section1__box-block:hover,
.section4__box-block:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.35);
}

.section4__box-block video,
.section2 video,
.reviews__list .item video,
.ks-roadmap video {
  border-radius: 12px;
  background: #000;
  width: 100%;
}

/* Timeline polish */
.section3__list-number {
  color: var(--ks-accent);
}

.section3__list-number.last {
  background: var(--ks-accent);
  color: #111;
}

.section3__author img {
  border-radius: 50%;
}

/* Calculator note */
.section7__calc-result strong {
  color: var(--ks-accent);
}

/* Reviews — see .ks-reviews below */
.reviews__list {
  display: none !important;
}

.blocktitle {
  letter-spacing: -0.02em;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid var(--ks-border);
  padding: 28px 0;
}

.footer .copyright {
  color: var(--ks-muted);
}

.footer-legal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ks-border);
  font-size: 12px;
  color: var(--ks-muted);
  line-height: 1.45;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
}

/* Floating consult — polished dark plate */
.floating-consult {
  width: 300px !important;
  max-width: calc(100vw - 28px);
  padding: 16px 16px 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(240, 180, 41, 0.22) !important;
  background:
    linear-gradient(165deg, rgba(32, 28, 18, 0.97) 0%, rgba(14, 14, 16, 0.98) 42%, rgba(10, 10, 12, 0.98) 100%) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ks-text) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(240, 180, 41, 0.12) !important;
  animation: ks-float-in 0.5s var(--ks-ease) both;
  line-height: 1.25 !important;
}

.floating-consult__close {
  top: 10px !important;
  right: 10px !important;
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transition: color 0.2s var(--ks-ease), background 0.2s var(--ks-ease);
}

.floating-consult__close:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.floating-consult__top {
  align-items: flex-start !important;
  gap: 12px;
  margin-bottom: 14px !important;
  padding-right: 22px;
}

.floating-consult__avatar {
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
  margin-right: 0 !important;
  border-radius: 50% !important;
  padding: 2px;
  background: linear-gradient(145deg, var(--ks-accent), rgba(240, 180, 41, 0.25));
  box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.25), 0 8px 20px rgba(0, 0, 0, 0.35) !important;
  overflow: hidden;
}

.floating-consult__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: #1a1a1c;
}

.floating-consult__subtitle {
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em !important;
  color: rgba(255, 255, 255, 0.52) !important;
  line-height: 1.35 !important;
}

.floating-consult__name {
  margin-top: 5px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: #fff !important;
}

.floating-consult__btn {
  display: block;
  width: 100%;
  padding: 13px 14px !important;
  border: 0;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #f5c14a 0%, var(--ks-accent) 55%, var(--ks-accent-deep) 100%) !important;
  color: #14110a !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.28) !important;
  transition: transform 0.2s var(--ks-ease), filter 0.2s var(--ks-ease), box-shadow 0.2s var(--ks-ease);
}

.floating-consult__btn:hover {
  background: linear-gradient(180deg, #f7cb5f 0%, #f0b429 50%, #d9a110 100%) !important;
  filter: brightness(1.03);
  box-shadow: 0 12px 26px rgba(240, 180, 41, 0.36) !important;
  transform: translateY(-1px);
}

.floating-consult__link {
  display: block;
  margin-top: 12px !important;
  width: 100%;
  padding: 0 !important;
  border: 0;
  background: transparent;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--ks-accent) !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: color 0.2s var(--ks-ease), opacity 0.2s var(--ks-ease);
}

.floating-consult__link:hover {
  color: #ffd56a !important;
}

/* Video lazy placeholder */
video[data-ks-lazy] {
  min-height: 180px;
  background: #111;
}

/* Form success flash */
.form-status {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.form-status.is-error {
  display: block;
  background: rgba(255, 80, 80, 0.12);
  color: #ffb4b4;
  border: 1px solid rgba(255, 80, 80, 0.3);
}

.form-status.is-success {
  display: block;
  background: rgba(240, 180, 41, 0.12);
  color: #f5d97a;
  border: 1px solid rgba(240, 180, 41, 0.35);
}

form.is-sending .btn,
form.is-sending button[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

#modal .preload__box,
.modal__box .preload__box {
  background: rgba(10, 10, 12, 0.82) !important;
}

@keyframes ks-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ks-float-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heading .glass,
  .ks-reveal,
  .floating-consult,
  .section1__box-block,
  .section4__box-block,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Final desktop hero overrides (beat main.css) —— */
@media (min-width: 651px) {
  .heading.bg {
    padding: 28px 0 32px !important;
  }

  .heading__form input {
    width: auto;
  }

  .floating-consult {
    right: 24px !important;
    bottom: 24px !important;
    transform: none !important;
  }
}

/* =========================================================
   UNIFIED SECTION SYSTEM — matches hero language
   Glow lives on body::before (fixed) — sections stay transparent
   so ambient is never clipped by section edges.
   ========================================================= */

/* Kill legacy opaque photo/gradient section fills from main.css */
.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7,
.section8,
.ks-section,
.ks-section--dark,
.ks-section--muted,
.ks-section--cta {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  overflow: visible !important;
  isolation: auto !important;
}

.ks-section,
.section1.ks-section,
.section2.ks-section,
.section3.ks-section,
.section4.ks-section,
.section5.ks-section,
.section6.ks-section,
.section7.ks-section,
.section8.ks-section {
  position: relative;
  z-index: 1;
  padding: var(--ks-section-y) 0 !important;
  color: #f4f4f5;
  text-align: left !important;
}

.ks-section--cta {
  padding: var(--ks-section-y-cta) 0 !important;
}

/* Kill legacy decorative blurs that sit under sections */
.section1 .wrapper:before,
.section3 .wrapper:before,
.heading.bg .wrapper:before {
  display: none !important;
  content: none !important;
}

.ks-eyebrow {
  display: block;
  width: fit-content;
  margin: 0 0 var(--ks-stack-sm);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 180, 41, 0.45);
  background: rgba(240, 180, 41, 0.14);
  color: #ffc84a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left !important;
}

.ks-section h2,
.ks-section .section-stats__title,
.ks-section .blocktitle {
  margin: 0 0 var(--ks-stack-sm);
  font-size: clamp(28px, 3.2vw, 40px) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: none !important;
  text-align: left !important;
}

.ks-section h2 span,
.ks-section .section-stats__title span,
.section5__header-info span {
  color: var(--ks-accent);
}

.ks-lede,
.ks-section .section4__title,
.ks-section .section-subtitle,
.ks-section .section5__title {
  margin: 0 0 var(--ks-stack-lg);
  max-width: 46ch;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: left !important;
}

.ks-panel {
  border-radius: var(--ks-radius-lg) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.ks-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--ks-radius-lg) !important;
  padding: var(--ks-card-pad) !important;
  box-sizing: border-box;
}

.ks-card__tag {
  margin: -4px 0 14px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 400 !important;
}

.btn--ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--ks-accent) !important;
  color: #fff !important;
}

/* Story — equal height columns */
.ks-story {
  display: flex !important;
  gap: var(--ks-gap-lg);
  align-items: stretch !important;
  margin-bottom: var(--ks-stack-lg);
}

.section3__box.ks-story.flex {
  display: flex !important;
  align-items: stretch !important;
}

.ks-story .section3__author {
  flex: 0 0 320px !important;
  width: 320px !important;
  max-width: 320px !important;
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  align-self: stretch !important;
  box-sizing: border-box;
  min-height: 100% !important;
  height: auto !important;
  background: rgba(255, 255, 255, 0.06) !important;
  background-image: none !important;
  border-radius: 16px !important;
  text-align: center !important;
}

.ks-story .section3__author img {
  display: block !important;
  width: 168px !important;
  height: 168px !important;
  max-width: 168px !important;
  max-height: 168px !important;
  min-height: 0 !important;
  margin: 0 auto 18px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  flex: 0 0 168px !important;
  border: 2px solid rgba(240, 180, 41, 0.4) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1 / 1;
}

.ks-story .section3__author-name {
  margin: 0 0 14px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  flex: 0 0 auto;
  text-align: center !important;
  line-height: 1.35;
}

.ks-story .section3__author-name span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ks-story .section3__author p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  margin: 0 !important;
  margin-top: auto !important;
  padding: 0 !important;
  background: none !important;
  flex: 0 0 auto;
  text-align: center !important;
  max-width: 36ch;
}

.ks-timeline {
  flex: 1 1 auto;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 0;
  align-self: stretch !important;
  height: auto !important;
  position: relative;
  width: 100%;
}

.ks-timeline .section3__list-block {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  flex: 0 0 auto !important;
  min-height: 0;
  height: auto !important;
  position: relative;
  width: 100%;
}

.ks-timeline .section3__list-number {
  min-width: 72px;
  font-weight: 700;
  color: var(--ks-accent) !important;
  background: none !important;
  font-size: 15px;
}

.ks-timeline .section3__list-number.last {
  color: #111 !important;
  background: var(--ks-accent) !important;
  border-radius: 8px;
  text-align: center;
  padding: 4px 8px;
}

.ks-timeline .section3__list-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.section3__bottom {
  gap: 24px;
  margin-top: 8px;
}

.section3__note {
  flex: 1;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.section3__note span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
}

.section3__form.ks-panel:not(.ks-ask__form) {
  flex: 0 0 360px;
  padding: 22px;
}

.section3__form h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
}

.section3__form > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 400;
}

.section3__form input,
.section3__form textarea,
.section6__form input,
.section8__form input,
.ks-inline-form input:not([type="checkbox"]) {
  width: 100% !important;
  box-sizing: border-box;
  margin: 0 0 10px !important;
  height: 48px !important;
  border-radius: 12px !important;
  border: 1px solid transparent !important;
  background-color: #ededed !important;
}

.section3__form textarea {
  height: 88px !important;
  padding-top: 14px !important;
}

.section3-form1,
.section3-form2,
.section2-image {
  display: none !important;
}

/* Stats + CTA band */
.section-stats {
  margin: 0 0 var(--ks-space-6);
  padding: var(--ks-panel-pad);
  border-radius: var(--ks-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ks-space-3);
  margin-bottom: var(--ks-space-4);
  width: 100%;
  box-sizing: border-box;
}

.section-stats__item {
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
  box-sizing: border-box;
}

.section-stats__number {
  font-size: 40px;
  font-weight: 800;
  color: var(--ks-accent);
  line-height: 1;
}

.section-stats__label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.section-stats__rbc {
  max-width: none;
  margin: 0;
  text-align: left;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.section-stats__rbc span {
  color: #fff;
  font-weight: 600;
}

.ks-cta-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--ks-gap);
  padding: var(--ks-panel-pad);
  margin-bottom: var(--ks-space-6);
  align-items: center;
}

.ks-cta-band__text {
  text-align: left !important;
}

.ks-cta-band__text h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 8px;
  text-align: left !important;
}

.ks-cta-band__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left !important;
}

.ks-inline-form__row {
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.ks-inline-form__row input {
  flex: 1 1 140px;
  min-width: 0;
  margin: 0 !important;
}

.ks-inline-form__row .btn {
  flex: 0 0 auto;
  height: 48px;
  margin: 0 !important;
}

.ks-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.ks-media video {
  display: block;
  width: 100%;
  height: auto;
}

/* Reasons */
.ks-reasons {
  gap: 16px;
  flex-wrap: wrap;
}

.ks-reasons .section1__box-block {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  background-image: none !important;
  min-height: 0 !important;
}

.ks-reason__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.ks-reason__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ks-accent);
  background: var(--ks-accent-soft);
  border: 1px solid rgba(240, 180, 41, 0.28);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.08);
}

.ks-reason__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ks-reasons .section1__box-number {
  color: var(--ks-accent) !important;
  background: none !important;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1;
  padding: 0 !important;
}

.ks-reasons .section1__box-title {
  color: #fff !important;
  background: none !important;
  font-size: 18px !important;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.ks-reasons p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45;
}

.ks-reasons img {
  display: none;
}

/* Formats / cases */
.ks-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ks-gap);
  align-items: stretch;
  margin: 0;
}

.ks-format {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--ks-card-pad);
  border-radius: var(--ks-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  text-align: left;
}

.ks-format--featured {
  border-color: rgba(240, 180, 41, 0.55);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240, 180, 41, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.15);
}

.ks-format__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ks-accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.ks-format__head {
  margin: 0 0 14px;
  padding-right: 0;
}

.ks-format__head h3 {
  margin: 0 0 6px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.ks-format__tag {
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.ks-format__media {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
}

.ks-format__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  border-radius: 0 !important;
  max-height: none !important;
}

.ks-format__specs {
  margin: 0 0 18px;
  padding: 0;
  border: 0 !important;
  position: static !important;
  flex: 1 1 auto;
}

.ks-format__specs:before {
  display: none !important;
  content: none !important;
}

.ks-format__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ks-format__row:last-child {
  border-bottom: 0;
}

.ks-format__row dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.ks-format__row dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: right;
}

.ks-format__btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  overflow: visible;
}

/* KingStore Point — from presentation */
.ks-point {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--ks-gap-lg);
  align-items: stretch;
  margin-top: 0;
  margin-bottom: var(--ks-space-6);
  padding: var(--ks-panel-pad);
  border-radius: var(--ks-radius-lg);
  border: 1px solid rgba(240, 180, 41, 0.35);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(240, 180, 41, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}

.section4 .ks-lede.section4__title {
  margin-bottom: var(--ks-space-4) !important;
  padding-bottom: 0 !important;
}

.ks-point__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.ks-point__intro h3 {
  margin: 0 0 var(--ks-stack-sm) !important;
  font-size: clamp(26px, 3vw, 34px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
  color: #fff !important;
  text-align: left !important;
}

.ks-point__intro h3 span {
  color: var(--ks-accent);
}

.ks-point__lede {
  margin: 0 0 var(--ks-space-4);
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.ks-point__list {
  margin: 0 0 var(--ks-space-5);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ks-point__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.ks-point__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ks-accent);
}

.ks-point__intro .btn {
  margin-top: auto;
  width: auto !important;
  min-width: 200px;
}

.ks-point__facts {
  display: flex;
  flex-direction: column;
  gap: var(--ks-space-3);
  min-width: 0;
  padding: var(--ks-space-4);
  border-radius: var(--ks-radius);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.ks-point__hero-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--ks-space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ks-point__hero-fact strong {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ks-accent);
}

.ks-point__hero-fact span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.ks-point__breakdown {
  margin: 0;
  padding: 0;
}

.ks-point__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ks-point__row:last-child {
  border-bottom: 0;
}

.ks-point__row dt {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  line-height: 1.3;
}

.ks-point__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.3;
}

.ks-point__note {
  margin: 0;
  margin-top: auto;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1040px) {
  .ks-point {
    grid-template-columns: 1fr;
  }

  .ks-point__intro .btn {
    width: 100% !important;
    min-width: 0;
  }
}

.ks-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ks-gap);
  align-items: stretch;
}

.ks-cases .section4__box-block {
  flex: none;
  width: auto !important;
  margin: 0 !important;
  padding: 22px !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  background-image: none !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
}

.ks-cases h3 {
  color: #fff !important;
  font-size: 22px !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  text-align: left !important;
}

.ks-cases video {
  width: 100%;
  border-radius: 12px;
  margin: 0 0 14px;
  background: #000;
  max-height: none !important;
}

.ks-cases p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: left !important;
}

.ks-cases .btn {
  margin-top: auto;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Kill legacy format list chrome everywhere */
.ks-formats .section4__box-block ul:before,
.section4__box-block ul:before {
  display: none !important;
}

@media (max-width: 1040px) {
  .ks-formats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ks-formats .ks-format:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: start;
  }

  .ks-cases {
    grid-template-columns: 1fr;
  }

  .ks-format__head {
    padding-right: 0;
  }
}

/* Roadmap */
/* Roadmap header */
.ks-roadmap-head {
  margin-bottom: 32px;
}

.ks-roadmap-head h2 {
  margin-bottom: 20px !important;
}

.ks-roadmap-head__row {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.ks-roadmap-head__row .section5__title,
.ks-roadmap-head__row .ks-lede {
  flex: 1 1 0;
  margin: 0 !important;
  padding: 18px 20px !important;
  max-width: none !important;
  display: block;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  text-align: left !important;
}

.ks-roadmap-head__row .section5__header-info {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px 20px !important;
  display: block !important;
  box-sizing: border-box;
  background: rgba(240, 180, 41, 0.08) !important;
  border: 1px solid rgba(240, 180, 41, 0.28) !important;
  border-radius: 14px !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-align: left !important;
}

.ks-roadmap-head__row .section5__header-info:before {
  display: none !important;
}

.ks-roadmap-head__row .section5__header-info span {
  display: inline !important;
  color: var(--ks-accent);
  font-weight: 600;
}

.section5__header {
  gap: 24px;
  margin-bottom: 28px;
  align-items: flex-start !important;
}

.section5__header-info {
  width: auto !important;
  max-width: 360px !important;
  padding: 18px 20px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.section5__header-info:before {
  display: none !important;
}

.ks-roadmap {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ks-gap);
  flex-wrap: unset;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ks-roadmap .section5__box-block {
  flex: none;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--ks-radius-lg) !important;
}

.ks-roadmap .section5__box-block:before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.ks-roadmap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.ks-roadmap .section5__box-cont {
  padding: 16px 18px 18px;
}

.ks-roadmap .section5__box-day {
  color: var(--ks-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ks-roadmap .section5__box-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ks-roadmap p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

/* Forms sections */
.section6.ks-section .section6__form.wdth {
  max-width: 100%;
  background: transparent !important;
  border: 0 !important;
  padding: 0;
}

/* Plan form — clean two-column layout */
.ks-plan.ks-section {
  text-align: left !important;
  overflow: visible;
}

.ks-plan__grid {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--ks-space-7);
  align-items: center;
  position: relative;
}

.ks-plan__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-plan .section6-image,
.ks-plan__visual .section6-image {
  position: static !important;
  top: auto !important;
  left: auto !important;
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  filter: none;
}

.ks-plan__card.section6__form {
  width: 100% !important;
  max-width: 440px !important;
  margin: 0 0 0 auto !important;
  padding: 28px 28px 24px !important;
  text-align: left !important;
  box-sizing: border-box;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
}

.section8 .section8-image {
  pointer-events: none;
}

.ks-section .section3-form1,
.ks-section .section3-form2,
.ks-section .section2-image {
  display: none !important;
}

.ks-plan__card .ks-eyebrow {
  display: inline-block;
  margin: 0 0 14px !important;
}

.ks-plan__card h3 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
  text-align: left !important;
}

.ks-plan__lede {
  margin: 0 0 20px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

.ks-plan__card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.ks-plan__card input {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 52px !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  text-align: left;
}

.ks-plan__card .btn {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  margin: 4px 0 0 !important;
  height: 52px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  padding: 0 24px !important;
}

.ks-plan__card .consent {
  margin-top: 6px !important;
  text-align: left;
}

@media (max-width: 1040px) {
  .ks-plan__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ks-plan__card.section6__form {
    margin: 0 auto !important;
    max-width: 480px !important;
  }

  .ks-plan .section6-image {
    max-width: 420px;
  }
}

.section7__calc.ks-panel,
.ks-calc__panel.section7__calc {
  padding: 28px !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.section7__calc-title {
  color: #fff;
  font-size: 20px !important;
  margin-bottom: 12px;
  padding: 0 !important;
  font-weight: 700;
  text-align: left !important;
  line-height: 1.3;
}

.section7__calc p.section7__calc-note {
  margin: 0 0 20px !important;
  padding: 14px 16px !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
  text-align: left;
}

.section7__calc > p:not(.section7__calc-note) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 14px 0 6px;
  font-weight: 500;
}

.section7__calc-result {
  width: auto !important;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px !important;
  border-radius: 14px !important;
}

.section7__calc-result span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.section7__calc-result strong {
  color: var(--ks-accent);
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 800;
  line-height: 1.1;
}

/* Reviews — portrait frames, no letterboxing */
.ks-reviews .ks-lede {
  margin-bottom: var(--ks-stack-lg);
}

.ks-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 32px 80px;
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  width: 100%;
}

.ks-review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ks-stack);
  max-width: 220px;
  width: 100%;
}

.ks-review__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid rgba(240, 180, 41, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 48px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s var(--ks-ease), transform 0.35s var(--ks-ease);
}

.ks-review:hover .ks-review__frame {
  border-color: rgba(240, 180, 41, 0.55);
  transform: translateY(-3px);
}

.ks-review__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #111;
}

.ks-review__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.15) 0%, rgba(8, 8, 10, 0.55) 100%);
  transition: opacity 0.25s var(--ks-ease), background 0.25s;
}

.ks-review__play:hover {
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.05) 0%, rgba(8, 8, 10, 0.45) 100%);
}

.ks-review__play:focus-visible {
  outline: 2px solid var(--ks-accent);
  outline-offset: -4px;
}

.ks-review__play-icon {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ks-accent);
  box-shadow: 0 8px 28px rgba(240, 180, 41, 0.45);
  transition: transform 0.25s var(--ks-ease), box-shadow 0.25s;
  position: relative;
}

.ks-review__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #111;
  transform: translate(-50%, -50%);
}

.ks-review__play:hover .ks-review__play-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(240, 180, 41, 0.6);
}

.ks-review.is-playing .ks-review__play {
  opacity: 0;
  pointer-events: none;
}

.ks-review.is-playing .ks-review__frame {
  border-color: rgba(240, 180, 41, 0.45);
}

.ks-review__cap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
  text-align: left;
}

.ks-review__cap strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ks-review__cap span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Legacy reviews list — neutralize old landscape stretch */
.ks-reviews .reviews__list {
  display: none !important;
}

@media (max-width: 1180px) {
  .ks-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 200px));
    gap: 28px 56px;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .ks-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .ks-review {
    max-width: none;
  }

  .ks-review__play-icon {
    width: 52px;
    height: 52px;
  }

  .ks-review__play-icon::after {
    border-width: 8px 0 8px 13px;
  }
}

@media (max-width: 640px) {
  .ks-reviews__grid {
    grid-template-columns: minmax(0, 240px);
    gap: 24px;
    justify-content: center;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ks-review:hover .ks-review__frame,
  .ks-review__play-icon {
    transform: none;
    transition: none;
  }
}

/* Final CTA */
.ks-final {
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ks-final__copy {
  flex: 1;
}

.ks-final__copy h2 {
  max-width: none !important;
  text-align: left !important;
}

.section8__form.ks-panel {
  flex: 0 0 380px;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.section8__form h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
  text-align: center !important;
}

.section8__form > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 400;
  text-align: center !important;
}

.section8-image {
  opacity: 0.55;
  filter: saturate(1.05) brightness(1.05);
}

.footer {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
  .ks-story,
  .ks-cta-band,
  .ks-final,
  .section3__bottom:not(.ks-ask) {
    flex-direction: column;
    display: flex;
  }

  .ks-story .section3__author,
  .section3__form.ks-panel:not(.ks-ask__form),
  .section8__form.ks-panel {
    flex: 1 1 auto;
    width: 100%;
  }

  .ks-cta-band {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  .ks-cta-band__text,
  .ks-cta-band .ks-inline-form {
    width: 100% !important;
    min-width: 0 !important;
  }

  .section-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .ks-formats,
  .ks-cases,
  .ks-reasons,
  .ks-roadmap {
    flex-direction: column;
  }

  .ks-cases .section4__box-block,
  .ks-reasons .section1__box-block,
  .ks-roadmap .section5__box-block {
    flex: 1 1 auto;
    width: 100%;
  }

  .section5__header,
  .ks-roadmap-head__row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   FIXES from annotated screenshots
   ========================================================= */

/* Eyebrows — compact pill (beats legacy “FIXES” padding: 15px) */
.ks-eyebrow {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 var(--ks-stack-sm) !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding: 6px 12px !important;
  background: rgba(240, 180, 41, 0.14) !important;
  border: 1px solid rgba(240, 180, 41, 0.45) !important;
  border-color: rgba(240, 180, 41, 0.45) !important;
  color: #ffc84a !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

/* Timeline: dark cards, readable text, compact years (kill huge white circles) */
.ks-timeline.section3__list {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ks-timeline.section3__list:before {
  display: none !important;
}

.ks-timeline .section3__list-block,
.ks-timeline .section3__list-block.flex {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: none !important;
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  position: relative !important;
  float: none !important;
  box-sizing: border-box !important;
}

.ks-timeline .section3__list-number,
.ks-timeline .section3__list-number.last {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  line-height: 1.2 !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(240, 180, 41, 0.35) !important;
  background: rgba(240, 180, 41, 0.1) !important;
  color: var(--ks-accent) !important;
  text-align: center;
  box-shadow: none !important;
  position: relative !important;
  float: none !important;
}

.ks-timeline .section3__list-number:before,
.ks-timeline .section3__list-number.last:before {
  display: none !important;
  content: none !important;
}

.ks-timeline .section3__list-number.last {
  background: var(--ks-accent) !important;
  color: #111 !important;
  border-color: var(--ks-accent) !important;
}

.ks-timeline .section3__list-info,
.ks-timeline .section3__list-info.flex {
  display: block !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ks-timeline .section3__list-info p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 800px) {
  .ks-timeline,
  .ks-timeline.section3__list {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .ks-timeline .section3__list-block,
  .ks-timeline .section3__list-block.flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    grid-template-columns: none !important;
  }

  .ks-timeline .section3__list-number,
  .ks-timeline .section3__list-number.last {
    align-self: flex-start !important;
  }

  .ks-timeline .section3__list-info,
  .ks-timeline .section3__list-info.flex {
    width: 100% !important;
  }
}

/* Note block: no giant quote icon, compact panel */
.section3__note {
  width: auto !important;
  margin: 0 !important;
  padding: 24px 26px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #fff !important;
  flex: 1;
}

.section3__note:before {
  display: none !important;
}

.section3__note span {
  color: rgba(255, 255, 255, 0.72) !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  padding-top: 8px !important;
}

/* Ask founder — equal height, clean form */
.ks-ask {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch !important;
  gap: var(--ks-gap);
  margin-top: var(--ks-space-6);
}

.ks-ask__pitch.section3__note {
  flex: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding: var(--ks-space-6) var(--ks-space-7) !important;
  border-radius: var(--ks-radius-lg) !important;
  background:
    radial-gradient(ellipse 90% 80% at 0% 100%, rgba(240, 180, 41, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(240, 180, 41, 0.28) !important;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
  text-align: left !important;
}

.ks-ask__stat {
  margin: 0 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.15 !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.ks-ask__stat span {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 52px !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em;
  color: var(--ks-accent) !important;
  line-height: 1 !important;
  vertical-align: -4px;
  margin-right: 10px !important;
}

.ks-ask__lead {
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-family: "SF Pro Display", "SF Pro Text", sans-serif;
  font-size: clamp(28px, 2.8vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
  color: #fff !important;
  max-width: none !important;
  text-align: left !important;
}

.ks-ask__sub {
  margin: 0 !important;
  margin-top: auto !important;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: none !important;
  text-align: left !important;
}

.ks-ask__form.section3__form {
  flex: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column;
  box-sizing: border-box;
  align-self: stretch;
  text-align: left !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.ks-ask__form h3 {
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #fff !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.ks-ask__form > p {
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  text-align: left !important;
  font-weight: 400 !important;
}

.ks-ask__form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  align-items: stretch;
  margin: 0;
}

.ks-ask__form input,
.ks-ask__form textarea {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 50px !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.ks-ask__form textarea {
  height: 110px !important;
  min-height: 110px !important;
  resize: vertical;
  padding-top: 14px !important;
  flex: 0 0 auto !important;
}

.ks-ask__form .btn {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  margin: 4px 0 0 !important;
  height: 50px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  padding: 0 24px !important;
  text-align: center;
}

.ks-ask__form .consent {
  margin-top: 10px !important;
  text-align: left;
}

@media (max-width: 1040px) {
  .ks-ask {
    grid-template-columns: 1fr;
  }

  .ks-ask__form.section3__form {
    width: 100% !important;
  }
}

/* Reasons: kill decorative ::before icons and bg images */
.ks-reasons .section1__box-block,
.ks-reasons .section1__box-block.bg1,
.ks-reasons .section1__box-block.bg2,
.ks-reasons .section1__box-block.bg5 {
  width: calc(33.333% - 12px) !important;
  min-height: 0 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  background-image: none !important;
  position: relative;
}

.ks-reasons .section1__box-block:before,
.ks-reasons .section1__box-block.bg2:before,
.ks-reasons .section1__box-block.bg3:before,
.ks-reasons .section1__box-block.bg4:before,
.ks-reasons .section1__box-block.bg5:before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.ks-reasons .section1__box-block p {
  width: auto !important;
  max-width: none !important;
}

.ks-reasons .section1__box-number,
.ks-reasons .section1__box-number.bg {
  font-size: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--ks-accent) !important;
  text-shadow: none !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
}

.ks-reasons .ks-reason__icon {
  color: var(--ks-accent) !important;
}

.ks-reasons .section1__box-title,
.ks-reasons .section1__box-title.bg {
  color: #fff !important;
}

/* CTA band: inputs + button — desktop row, mobile full-width stack */
.ks-cta-band {
  align-items: center;
  gap: 28px !important;
  padding: 28px 32px !important;
}

.ks-cta-band .ks-inline-form {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  box-sizing: border-box !important;
}

.ks-cta-band .ks-inline-form__row,
.ks-cta-band .flex.ks-inline-form__row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.ks-cta-band .ks-inline-form__row input {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  height: 48px !important;
  padding-left: 40px !important;
  padding-right: 14px !important;
  box-sizing: border-box !important;
}

.ks-cta-band .ks-inline-form__row .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

.ks-cta-band .consent {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 2px !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

.ks-cta-band .consent span {
  display: block !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  text-align: left !important;
}

@media (max-width: 1040px) {
  .ks-cta-band .ks-inline-form__row,
  .ks-cta-band .flex.ks-inline-form__row {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
  }

  .ks-cta-band .ks-inline-form__row input,
  .ks-cta-band .ks-inline-form__row .btn,
  .section2 .ks-cta-band .ks-inline-form__row input,
  .section2 .ks-cta-band .ks-inline-form__row .btn {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .ks-cta-band .ks-inline-form__row .btn {
    justify-content: center !important;
  }
}

@media (max-width: 900px) {
  .ks-inline-form__row {
    flex-wrap: wrap !important;
  }

  .ks-inline-form__row input,
  .ks-inline-form__row .btn {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Formats: no wrap on values, shorter investment label - superseded by .ks-format */

/* Roadmap header info: no gear, full-width readable - superseded by .ks-roadmap-head */

/* Calculator note: quieter, even padding (beats .section7__calc p) */
.section7__calc p.section7__calc-note {
  margin: 0 0 20px !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  box-sizing: border-box;
}

/* Reviews / plan eyebrows already strengthened above */

@media (max-width: 1040px) {
  .ks-reasons .section1__box-block,
  .ks-reasons .section1__box-block.bg1,
  .ks-reasons .section1__box-block.bg2,
  .ks-reasons .section1__box-block.bg5 {
    width: 100% !important;
  }
}

/* Calculator layout: controls + Apple visual */
.ks-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
}

.ks-calc__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ks-calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 8px;
}

.ks-calc__field {
  min-width: 0;
  padding: 10px 12px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ks-calc__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.ks-calc__field-head span {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 0 !important;
}

.ks-calc__val {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--ks-accent) !important;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ks-calc__field .irs {
  margin: 0 !important;
}

.ks-calc__field .irs--flat {
  height: 52px !important;
}

.ks-calc__field .irs-with-grid {
  height: 58px !important;
}

.ks-calc__field .irs--flat .irs-grid-text {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  bottom: 2px;
}

.ks-calc__bottom.section7__calc-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 18px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ks-calc__bottom .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 24px !important;
  white-space: nowrap;
  line-height: 1.2 !important;
}

.ks-calc__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
}

.ks-calc__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  position: absolute;
  inset: 0;
}

.ks-calc__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.25), transparent 40%);
  pointer-events: none;
}

.ks-calc__visual-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 24px;
}

.ks-calc__visual-cap p {
  margin: 0;
  padding: 0 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  text-align: left !important;
  max-width: 28ch;
}

@media (max-width: 960px) {
  .ks-calc {
    grid-template-columns: 1fr;
  }

  .ks-calc__visual {
    min-height: 240px;
    order: -1;
  }

  .ks-calc__visual img {
    position: absolute;
  }
}

@media (max-width: 640px) {
  .ks-calc__grid {
    grid-template-columns: 1fr;
  }

  .ks-calc__bottom.section7__calc-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .ks-calc__bottom .btn {
    width: 100%;
  }
}

/* Force page scroll + gold scrollbar (beats reset/main overflow locks) */
html,
body {
  height: auto !important;
  overflow-x: hidden !important;
}

html {
  overflow-y: scroll !important;
}

/* =========================================================
   UNIFIED SPACING + RESPONSIVE LAYOUT
   Tokens: --ks-section-y, --ks-gutter, --ks-gap, --ks-stack*
   Breakpoints: 1040 tablet · 800 large phone · 650 phone
   ========================================================= */

.wrapper {
  width: 100% !important;
  max-width: var(--ks-wrap) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--ks-gutter) !important;
  padding-right: var(--ks-gutter) !important;
  box-sizing: border-box !important;
}

.header .wrapper,
.footer .wrapper,
.ks-section > .wrapper,
.heading.bg > .wrapper {
  padding-left: var(--ks-gutter) !important;
  padding-right: var(--ks-gutter) !important;
}

/* Kill legacy negative side margins so grids align with headings */
.section1__box,
.section4__box,
.section5__box,
.ks-reasons,
.ks-formats,
.ks-cases,
.ks-roadmap {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ks-roadmap-head,
.ks-roadmap-head__row {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ks-roadmap-head__row .section5__title,
.ks-roadmap-head__row .ks-lede,
.ks-roadmap-head__row .section5__header-info {
  max-width: none !important;
}

/* Section vertical rhythm */
.ks-section,
.section1.ks-section,
.section2.ks-section,
.section3.ks-section,
.section4.ks-section,
.section5.ks-section,
.section6.ks-section,
.section7.ks-section,
.section8.ks-section {
  padding-top: var(--ks-section-y) !important;
  padding-bottom: var(--ks-section-y) !important;
}

.ks-section--cta {
  padding-top: var(--ks-section-y-cta) !important;
  padding-bottom: var(--ks-section-y-cta) !important;
}

@media (max-width: 800px) {
  :root {
    --ks-section-y: var(--ks-section-y-mobile);
    --ks-section-y-cta: var(--ks-section-y-mobile);
  }

  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .section6,
  .section7,
  .section8,
  .section1.ks-section,
  .section2.ks-section,
  .section3.ks-section,
  .section4.ks-section,
  .section5.ks-section,
  .section6.ks-section,
  .section7.ks-section,
  .section8.ks-section,
  .ks-section,
  .ks-section--cta,
  .ks-section--dark,
  .ks-section--muted {
    padding-top: var(--ks-section-y) !important;
    padding-bottom: var(--ks-section-y) !important;
  }
}

/* Content stack: eyebrow → title → lede → body */
.ks-section > .wrapper > .ks-eyebrow,
.ks-plan__card > .ks-eyebrow,
.ks-final__copy > .ks-eyebrow {
  margin-bottom: var(--ks-stack-sm) !important;
}

.ks-section > .wrapper > h2,
.ks-section > .wrapper > .section-stats__title,
.ks-section > .wrapper > .blocktitle,
.ks-final__copy > h2 {
  margin-bottom: var(--ks-stack-sm) !important;
}

.section1 h2,
.section1.ks-section > .wrapper > h2 {
  padding-bottom: 0 !important;
}

.ks-section > .wrapper > .ks-lede,
.ks-section > .wrapper > .section4__title,
.ks-section > .wrapper > .section-subtitle {
  margin-bottom: var(--ks-stack-lg) !important;
}

/* Shared gaps */
.ks-story {
  gap: var(--ks-gap-lg) !important;
  margin-bottom: var(--ks-stack-lg) !important;
}

.ks-ask {
  gap: var(--ks-gap) !important;
  margin-top: var(--ks-space-6) !important;
}

.ks-ask__pitch.section3__note {
  padding: var(--ks-space-6) var(--ks-space-7) !important;
}

.ks-ask__form.section3__form {
  padding: var(--ks-panel-pad) !important;
}

.section-stats {
  margin: 0 0 var(--ks-space-6) !important;
  padding: var(--ks-panel-pad) !important;
  border-radius: var(--ks-radius-lg) !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden;
}

.section-stats__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--ks-space-3) !important;
  margin-bottom: var(--ks-space-4) !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  justify-content: stretch !important;
  flex-wrap: unset !important;
}

.section-stats__item {
  min-width: 0 !important;
  max-width: 100% !important;
  width: auto !important;
  box-sizing: border-box !important;
  padding: 14px 12px !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-stats__number {
  font-size: clamp(28px, 5vw, 40px) !important;
  line-height: 1.05 !important;
}

.section-stats__label {
  font-size: 13px !important;
  line-height: 1.3 !important;
}

.section-stats__rbc {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
  margin: 0 !important;
}

.ks-cta-band {
  gap: 28px !important;
  padding: 28px 32px !important;
  margin-bottom: var(--ks-space-6) !important;
}

.ks-media {
  margin: 0 !important;
}

.ks-reasons {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--ks-gap) !important;
  flex-wrap: unset !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.ks-reasons .section1__box-block,
.ks-reasons .section1__box-block.bg1,
.ks-reasons .section1__box-block.bg2,
.ks-reasons .section1__box-block.bg5 {
  width: auto !important;
  flex: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: var(--ks-card-pad) !important;
}

.ks-formats,
.ks-cases {
  gap: var(--ks-gap) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.ks-format,
.ks-cases .section4__box-block {
  padding: var(--ks-card-pad) !important;
  border-radius: var(--ks-radius-lg) !important;
  margin: 0 !important;
}

.ks-roadmap {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--ks-gap) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.ks-roadmap .section5__box-block {
  width: auto !important;
  flex: none !important;
  margin: 0 !important;
}

.ks-roadmap-head {
  margin-bottom: var(--ks-space-6) !important;
  width: 100% !important;
}

.ks-roadmap-head h2 {
  margin-bottom: var(--ks-space-4) !important;
  max-width: none !important;
}

.ks-roadmap-head__row {
  gap: var(--ks-gap) !important;
  width: 100% !important;
}

.ks-roadmap-head__row .section5__title,
.ks-roadmap-head__row .ks-lede,
.ks-roadmap-head__row .section5__header-info {
  padding: var(--ks-space-4) !important;
  max-width: none !important;
}

.ks-plan__grid {
  gap: var(--ks-space-7) !important;
}

.ks-plan__card.section6__form {
  padding: var(--ks-panel-pad) !important;
}

.ks-calc {
  gap: var(--ks-gap) !important;
}

.ks-calc__panel.section7__calc {
  padding: var(--ks-panel-pad) !important;
}

.ks-final {
  gap: var(--ks-space-7) !important;
  display: flex !important;
  align-items: center;
}

.section8__form.ks-panel {
  padding: var(--ks-panel-pad) !important;
}

.footer {
  padding: var(--ks-space-6) 0 !important;
}

/* —— Tablet ≤1040 —— */
@media (max-width: 1040px) {
  :root {
    --ks-section-y: var(--ks-space-8);
    --ks-section-y-cta: var(--ks-space-8);
    --ks-gutter: 20px;
    --ks-wrap: 960px;
    --ks-stack-lg: var(--ks-space-5);
  }

  .ks-story {
    flex-direction: column !important;
  }

  .ks-story .section3__author {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
  }

  .ks-ask {
    grid-template-columns: 1fr !important;
  }

  .ks-ask__form.section3__form {
    width: 100% !important;
  }

  .section-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ks-cta-band {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  .ks-cta-band__text,
  .ks-cta-band .ks-inline-form {
    width: 100% !important;
    min-width: 0 !important;
  }

  .ks-formats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ks-formats .ks-format:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .ks-cases {
    grid-template-columns: 1fr !important;
  }

  .ks-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ks-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ks-roadmap-head__row {
    flex-direction: column !important;
  }

  .ks-plan__grid {
    grid-template-columns: 1fr !important;
    gap: var(--ks-space-6) !important;
  }

  .ks-plan__card.section6__form {
    max-width: none !important;
    margin: 0 !important;
  }

  .ks-plan__visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .ks-calc {
    grid-template-columns: 1fr !important;
  }

  .ks-calc__visual {
    min-height: 220px;
    order: -1;
  }

  .ks-final {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .section8__form.ks-panel {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
  }

  .ks-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 200px)) !important;
    max-width: none;
    gap: 28px 64px !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ks-review {
    max-width: 200px;
  }
}

/* —— Large phone / small tablet ≤800 —— */
@media (max-width: 800px) {
  :root {
    --ks-gutter: 16px;
    --ks-panel-pad: var(--ks-space-4);
    --ks-card-pad: 18px;
    --ks-gap: var(--ks-space-3);
    --ks-gap-lg: var(--ks-space-4);
  }

  /* Beat main.css `.flex { display: block }` on key rows */
  .header .flex,
  .heading__form-row,
  .heading__trust,
  .ks-inline-form__row,
  .ks-calc__bottom,
  .ks-final {
    display: flex !important;
  }

  .ks-section h2,
  .ks-section .section-stats__title,
  .ks-section .blocktitle {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .ks-lede,
  .ks-section .section4__title,
  .ks-section .section-subtitle,
  .ks-section .section5__title {
    font-size: 16px !important;
    max-width: none;
  }

  .ks-formats {
    grid-template-columns: 1fr !important;
  }

  .ks-formats .ks-format:last-child {
    grid-column: auto;
    max-width: none;
  }

  .ks-reasons {
    grid-template-columns: 1fr !important;
  }

  .ks-roadmap {
    grid-template-columns: 1fr !important;
  }

  .section-stats {
    padding: var(--ks-space-4) !important;
  }

  .section-stats__number {
    font-size: 32px !important;
  }

  .ks-ask__pitch.section3__note {
    padding: var(--ks-space-5) !important;
  }

  .ks-ask__lead {
    font-size: clamp(24px, 6vw, 32px) !important;
  }

  .ks-inline-form__row {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .ks-inline-form__row input,
  .ks-inline-form__row .btn,
  .ks-cta-band .ks-inline-form__row input,
  .ks-cta-band .ks-inline-form__row .btn,
  .section2 .ks-inline-form input:not([type="checkbox"]),
  .section2 .ks-inline-form .btn {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }

  .ks-calc__grid {
    grid-template-columns: 1fr !important;
  }

  .ks-calc__bottom.section7__calc-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: var(--ks-space-3) !important;
  }

  .ks-calc__bottom .btn {
    width: 100% !important;
  }

  .header {
    padding: 10px 0 !important;
  }

  .header__desc {
    display: none !important;
  }

  .header__phone {
    background-size: 28px 28px !important;
    padding-left: 36px !important;
  }
}

/* —— Phone ≤650 —— */
@media (max-width: 650px) {
  :root {
    --ks-gutter: 16px;
  }

  .section-stats {
    padding: var(--ks-space-3) !important;
  }

  .section-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--ks-space-2) !important;
  }

  .section-stats__item {
    padding: 12px 10px !important;
  }

  .section-stats__number {
    font-size: 28px !important;
  }

  .ks-reviews__grid {
    grid-template-columns: minmax(0, 240px) !important;
    justify-content: center !important;
    max-width: none;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .floating-consult {
    right: 12px !important;
    bottom: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }
}








