:root {
  --ink: #11110f;
  --paper: #f5f4ef;
  --white: #ffffff;
  --muted: #696963;
  --line: #d8d7cf;
  --acid: #d8ff3e;
  --coral: #ff735c;
  --blue: #7ed7e8;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-buy-bar {
  visibility: hidden;
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.eyebrow,
.button,
.price {
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.3vw, 4.5rem);
  line-height: 1.04;
  font-weight: 780;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(245, 244, 239, 0.97);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  width: var(--shell);
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 850;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
}

.brand-mark::after {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid rgba(17, 17, 15, 0.2);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.01em;
}

.brand-wordmark > span:first-child {
  font-weight: 900;
}

.brand-tld {
  margin-left: 1px;
  color: var(--acid);
  font-size: 0.84em;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: lowercase;
}

.site-header.is-scrolled .brand-tld,
.site-header.is-menu-open .brand-tld,
.policy-header .brand-tld {
  color: #779600;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-menu-open .brand-mark,
.policy-header .brand-mark {
  box-shadow: 4px 4px 0 rgba(17, 17, 15, 0.14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  min-width: 76px;
  min-height: 40px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.language-trigger > svg:first-child {
  width: 17px;
  height: 17px;
}

.language-chevron {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 17, 15, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-search {
  display: grid;
  height: 44px;
  padding: 0 8px;
  grid-template-columns: 20px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

.language-search > svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}

.language-search input {
  min-width: 0;
  height: 100%;
  padding: 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.82rem;
}

.language-search input::placeholder {
  color: #85857f;
}

.language-search input::-webkit-search-cancel-button {
  display: none;
}

.language-clear {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-clear[hidden] {
  display: none;
}

.language-clear svg {
  width: 15px;
  height: 15px;
}

.language-list {
  display: grid;
  max-height: 330px;
  margin-top: 7px;
  gap: 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.language-empty {
  padding: 28px 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.language-empty[hidden],
.language-option[hidden] {
  display: none;
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 54px;
  padding: 9px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-option:hover:not(:disabled),
.language-option:focus-visible {
  background: var(--paper);
}

.language-option.is-current {
  background: var(--paper);
}

.language-option:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.language-option-labels {
  display: grid;
}

.language-option-labels strong {
  font-size: 0.88rem;
}

.language-option-labels small {
  color: var(--muted);
  font-size: 0.67rem;
}

.language-option > svg {
  width: 17px;
  height: 17px;
  color: #647d00;
}

.language-check {
  opacity: 0;
}

.language-option.is-current .language-check {
  opacity: 1;
}

.language-status {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  white-space: nowrap;
}

.language-switcher-mobile {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.button-large {
  min-height: 58px;
  padding-inline: 26px;
}

.button-full {
  width: 100%;
}

.button-accent {
  color: var(--ink);
  background: var(--acid);
}

.button-accent:hover {
  background: #e5ff79;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button:disabled {
  color: #74746f;
  background: #d3d2cb;
  cursor: not-allowed;
  transform: none;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .desktop-buy {
  color: var(--ink);
  background: var(--white);
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(780px, 86svh);
  padding-top: var(--header-height);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #2b2a27;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background: rgba(8, 8, 7, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 120px;
}

.eyebrow {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: #55554f;
  font-size: 0.78rem;
  font-weight: 850;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow-light::before {
  background: var(--acid);
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 9.6vw, 9rem);
  font-weight: 850;
  line-height: 0.92;
}

.hero .hero-title-long {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3.35rem, 6vw, 5.65rem);
  line-height: 1;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.85);
}

.hero-proof {
  display: flex;
  padding: 0;
  margin: 28px 0 0;
  gap: 24px;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: var(--acid);
}

.hero-proof .hero-proof-assurance {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.hero-index {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.section {
  padding: 120px 0;
}

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

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.problem-copy {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-copy p:not(:first-child) {
  color: var(--ink);
  font-weight: 650;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.problem-states {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-state {
  min-height: 230px;
  padding: 30px 34px 34px;
  border-right: 1px solid var(--line);
}

.problem-state:first-child {
  padding-left: 0;
}

.problem-state:last-child {
  border-right: 0;
}

.problem-state-topline {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.problem-state-topline svg {
  width: 22px;
  height: 22px;
}

.problem-state-ok .problem-state-topline svg {
  color: #779600;
}

.problem-state-error .problem-state-topline svg,
.problem-state-errors .problem-state-topline svg {
  color: var(--coral);
}

.problem-state h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.problem-state p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 70px;
  align-items: end;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.result-section {
  color: var(--white);
  background: var(--ink);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 100px;
  align-items: center;
}

.result-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.audience-list div {
  display: flex;
  min-height: 82px;
  padding: 18px;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.audience-list svg {
  width: 20px;
  color: var(--acid);
}

.quote-block {
  padding: 48px;
  margin: 0;
  color: var(--ink);
  border-radius: 6px;
  background: var(--acid);
  transform: rotate(1.4deg);
}

.quote-block blockquote {
  margin: 0 0 54px;
  font-size: clamp(1.42rem, 2.6vw, 2.2rem);
  font-weight: 760;
  line-height: 1.35;
}

.quote-block figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-block figcaption > span:last-child {
  display: grid;
}

.quote-block small {
  color: rgba(17, 17, 15, 0.62);
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

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

.compact-heading {
  display: block;
  margin-bottom: 54px;
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 26px 30px 26px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 30px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.cases-section {
  background: var(--white);
}

.cases-heading {
  align-items: end;
}

.cases-intro {
  max-width: 520px;
  color: var(--muted);
}

.cases-intro > p:first-child {
  margin: 0;
  font-size: 1.02rem;
}

.cases-privacy {
  display: flex;
  margin: 18px 0 0;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
}

.cases-privacy svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #637f00;
}

.case-carousel-controls {
  display: flex;
  padding-top: 18px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.case-carousel-progress {
  font-size: 0.8rem;
  font-weight: 820;
}

.case-carousel-buttons {
  display: flex;
  gap: 8px;
}

.case-carousel-buttons .icon-button {
  width: 52px;
  height: 52px;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.case-carousel-buttons .icon-button:disabled {
  color: #aaa9a1;
  border-color: var(--line);
  background: var(--paper);
  opacity: 1;
  cursor: not-allowed;
}

.case-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.case-gallery::-webkit-scrollbar {
  display: none;
}

.case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  scroll-snap-align: start;
}

.case-thumb {
  display: grid;
  position: relative;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #181816;
  cursor: zoom-in;
}

.case-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.case-thumb:hover img {
  transform: scale(1.015);
}

.case-zoom {
  display: grid;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.82);
  backdrop-filter: blur(8px);
}

.case-zoom svg {
  width: 17px;
  height: 17px;
}

.case-body {
  padding: 20px;
}

.case-meta {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.case-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #526b00;
}

.case-status svg {
  width: 15px;
  height: 15px;
}

.case-body h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.case-body p {
  min-height: 3.9em;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.case-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: transparent;
}

.case-lightbox:not([open]) {
  display: none;
}

.case-lightbox::backdrop {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(6px);
}

.case-lightbox-shell {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  background: rgba(10, 10, 9, 0.96);
}

.case-lightbox-header {
  display: flex;
  min-height: 72px;
  padding: 12px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.case-lightbox-header > div {
  display: grid;
  gap: 2px;
}

.case-lightbox-count {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 750;
}

.case-lightbox-header h3 {
  margin: 0;
  font-size: 1rem;
}

.case-lightbox .icon-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.case-lightbox-stage {
  display: grid;
  position: relative;
  min-height: 0;
  padding: 24px 82px;
  place-items: center;
}

.case-lightbox-stage > img {
  display: block;
  max-width: min(100%, 1500px);
  max-height: calc(100dvh - 120px);
  object-fit: contain;
}

.case-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.case-lightbox-prev {
  left: 22px;
}

.case-lightbox-next {
  right: 22px;
}

.pricing-section {
  color: var(--white);
  background: #21211e;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  gap: 110px;
  align-items: center;
}

.pricing-copy h2 {
  text-wrap: balance;
}

.pricing-copy > p:last-child {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.06rem;
}

.price-panel {
  padding: 38px;
  color: var(--ink);
  border-radius: 6px;
  background: var(--white);
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 780;
}

.status-badge {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}

.price-line {
  display: flex;
  margin: 46px 0 28px;
  align-items: flex-end;
  gap: 14px;
}

.price {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 850;
  line-height: 0.85;
}

.old-price {
  color: var(--muted);
  font-size: 1.15rem;
  text-decoration: line-through;
}

.price-features {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.price-features li {
  display: flex;
  padding: 11px 0;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.price-features svg {
  width: 18px;
  color: #637f00;
}

.payment-note {
  display: flex;
  margin: 16px 0 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.payment-note svg {
  width: 14px;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 100px;
}

.faq-intro {
  max-width: 360px;
  margin-top: 28px;
  color: var(--muted);
}

.faq-email {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-email:hover {
  color: var(--coral);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary svg {
  width: 19px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 44px 28px 0;
  margin: -4px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0 88px;
  background: var(--acid);
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
}

.final-cta h2 {
  max-width: 980px;
  font-size: 4rem;
}

.final-cta h2 span {
  display: block;
}

.final-cta .button {
  min-height: 66px;
  padding-inline: 32px;
  border-color: var(--ink);
  box-shadow: 8px 8px 0 rgba(17, 17, 15, 0.18);
  font-size: 1rem;
}

.final-cta .button:hover {
  box-shadow: 10px 10px 0 rgba(17, 17, 15, 0.16);
}

.site-footer {
  padding: 64px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: start;
}

.brand-footer {
  font-size: 1rem;
}

.footer-brand-block > p {
  max-width: 260px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand-block > p:first-of-type {
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer-scope {
  display: flex;
  max-width: 460px !important;
  margin-top: 12px;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(216, 255, 62, 0.12);
}

.footer-contact {
  min-width: 280px;
}

.footer-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  font-weight: 650;
}

.footer-mail svg {
  width: 16px;
}

.footer-mail:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.footer-response {
  display: flex;
  margin: 11px 0 0;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.footer-response svg {
  width: 13px;
  height: 13px;
}

.footer-bottom {
  display: grid;
  padding-top: 22px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-copyright {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 20px;
}

.footer-presence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-presence svg {
  width: 13px;
  height: 13px;
}

.footer-independent {
  text-align: right;
}

.policy-body {
  background: var(--white);
}

.policy-header {
  color: var(--white);
  background: var(--ink);
}

.policy-header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 740;
}

.policy-back:hover {
  color: var(--white);
}

.policy-back svg {
  width: 16px;
}

.policy-main {
  padding: 96px 0 120px;
}

.policy-hero {
  max-width: 900px;
}

.policy-kicker {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
  color: #637f00;
  font-size: 0.76rem;
  font-weight: 820;
}

.policy-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--acid);
}

.policy-title {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 820;
  line-height: 0.94;
}

.policy-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.policy-content {
  max-width: 820px;
  margin-top: 86px;
}

.policy-section {
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 16px;
  font-size: 1.42rem;
  line-height: 1.25;
}

.policy-section h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-contact-link {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-weight: 720;
}

.policy-footer {
  padding-top: 28px;
}

.policy-footer .footer-bottom {
  flex-wrap: wrap;
}

.purchase-check-body {
  min-height: 100svh;
  padding-bottom: 0;
  background: var(--paper);
}

.purchase-check-header {
  color: var(--white);
  background: var(--ink);
}

.purchase-check-header .brand-tld {
  color: var(--acid);
}

.purchase-check-main {
  min-height: calc(100svh - 72px);
  padding: 84px 0 110px;
}

.purchase-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: 88px;
  align-items: start;
}

.purchase-check-intro {
  max-width: 720px;
}

.purchase-check-title {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 820;
  line-height: 0.98;
}

.purchase-check-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.purchase-check-form {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.check-question {
  display: grid;
  padding: 22px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.check-question-copy {
  min-width: 0;
}

.check-question-title {
  display: flex;
  margin-bottom: 0;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.45;
}

.check-question-number {
  min-width: 30px;
  padding-top: 3px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
}

.check-question-hint {
  margin: 6px 0 0 46px;
  color: var(--muted);
  font-size: 0.82rem;
}

.check-options {
  display: inline-grid;
  margin: 0;
  grid-template-columns: repeat(2, 92px);
  gap: 8px;
}

.check-choice {
  position: relative;
  cursor: pointer;
}

.check-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-choice span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  font-weight: 780;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.check-choice:hover span {
  border-color: var(--ink);
}

.check-choice input:checked + span {
  border-color: var(--ink);
  background: var(--acid);
}

.check-choice input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.purchase-check-summary {
  position: sticky;
  top: 28px;
  padding: 34px;
  color: var(--white);
  border-radius: 6px;
  background: var(--ink);
}

.purchase-check-product {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
}

.purchase-check-price {
  margin-bottom: 32px;
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 850;
  line-height: 0.95;
}

.check-status {
  display: flex;
  min-height: 74px;
  padding: 18px 0;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
}

.check-status::before {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8c8c86;
  content: "";
}

.check-status[data-state="ready"] {
  color: var(--white);
}

.check-status[data-state="ready"]::before {
  background: var(--acid);
}

.check-status[data-state="blocked"] {
  color: #ffb0a2;
}

.check-status[data-state="blocked"]::before {
  background: var(--coral);
}

.purchase-check-summary .button {
  margin-top: 20px;
}

.purchase-check-guarantee {
  display: flex;
  margin: 18px 0 0;
  align-items: flex-start;
  gap: 9px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 720;
}

.purchase-check-guarantee svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex: 0 0 auto;
  color: var(--acid);
}

.purchase-check-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.purchase-check-note a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.purchase-check-noscript {
  margin-top: 20px;
  color: var(--coral);
  font-weight: 700;
}

.mobile-buy-bar {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .desktop-nav,
  .desktop-buy,
  .language-switcher-desktop {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    padding: 32px 18px;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .mobile-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.12rem;
    font-weight: 750;
  }

  .mobile-nav .button {
    margin-top: 28px;
  }

  .language-switcher-mobile {
    display: block;
    margin-top: 24px;
  }

  .language-switcher-mobile .language-trigger {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    border-color: var(--line);
  }

  .language-switcher-mobile .language-chevron {
    margin-left: auto;
  }

  .language-switcher-mobile .language-menu {
    position: static;
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    box-shadow: none;
  }

  .language-switcher-mobile .language-list {
    max-height: 220px;
  }

  .problem-grid,
  .section-heading,
  .result-layout,
  .pricing-layout,
  .faq-layout,
  .purchase-check-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .purchase-check-summary {
    position: static;
    max-width: 560px;
  }

  .problem-states {
    margin-top: 60px;
  }

  .problem-state {
    min-height: 210px;
    padding-inline: 22px;
  }

  .problem-state:first-child {
    padding-left: 0;
  }

  .result-layout,
  .pricing-layout {
    gap: 64px;
  }

  .quote-block {
    max-width: 560px;
    margin-inline: auto;
  }

  .case-gallery {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta .eyebrow {
    margin-bottom: 0;
  }

  .final-cta h2 {
    font-size: 3.35rem;
  }

  .final-cta .button {
    width: fit-content;
  }

  .footer-top {
    gap: 48px;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-independent {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 64px;
  }

  body {
    padding-bottom: 76px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-shade {
    background: rgba(8, 8, 7, 0.64);
  }

  .hero-content {
    padding-bottom: 76px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 4.2rem;
    line-height: 0.92;
  }

  .hero .hero-title-long {
    max-width: 360px;
    white-space: normal;
    font-size: 2.85rem;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 430px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-index {
    display: none;
  }

  .problem-grid {
    gap: 28px;
  }

  .problem-states {
    grid-template-columns: 1fr;
  }

  .problem-state,
  .problem-state:first-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-state:last-child {
    border-bottom: 0;
  }

  .problem-state-topline {
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 22px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list div {
    min-height: 66px;
  }

  .quote-block {
    padding: 32px;
    transform: none;
  }

  .quote-block blockquote {
    margin-bottom: 40px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    display: grid;
    min-height: auto;
    padding: 24px 0;
    grid-template-columns: 48px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list > li > span {
    margin-bottom: 0;
  }

  .case-gallery {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .case-carousel-controls {
    padding-top: 14px;
    margin-bottom: 12px;
  }

  .case-carousel-buttons .icon-button {
    width: 46px;
    height: 46px;
  }

  .case-body {
    padding: 15px 14px 18px;
  }

  .case-meta {
    margin-bottom: 14px;
    font-size: 0.66rem;
  }

  .case-body h3 {
    font-size: 0.88rem;
  }

  .case-body p {
    min-height: 0;
    font-size: 0.74rem;
  }

  .case-zoom {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .case-lightbox-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .case-lightbox-stage {
    padding: 12px 8px 76px;
  }

  .case-lightbox-stage > img {
    max-height: calc(100dvh - 154px);
  }

  .case-lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .case-lightbox-prev {
    left: calc(50% - 58px);
  }

  .case-lightbox-next {
    right: calc(50% - 58px);
  }

  .price-panel {
    padding: 26px 22px;
  }

  .price-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line {
    margin-top: 36px;
  }

  .faq-layout {
    gap: 28px;
  }

  .final-cta {
    padding: 78px 0;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

  .final-cta .button {
    width: 100%;
  }

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

  .footer-contact {
    min-width: 0;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    margin: 2px 0;
    flex-wrap: wrap;
  }

  .footer-copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .policy-main {
    padding: 68px 0 88px;
  }

  .purchase-check-main {
    padding: 58px 0 76px;
  }

  .purchase-check-title {
    font-size: 2.8rem;
  }

  .purchase-check-form {
    margin-top: 30px;
  }

  .check-question {
    padding: 22px 0 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .check-options {
    width: calc(100% - 46px);
    margin-left: 46px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-check-summary {
    padding: 28px 22px;
  }

  .policy-content {
    margin-top: 62px;
  }

  .policy-section {
    padding: 28px 0 32px;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    display: flex;
    min-height: calc(76px + env(safe-area-inset-bottom));
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    background: rgba(245, 244, 239, 0.97);
    box-shadow: 0 -12px 30px rgba(17, 17, 15, 0.08);
  }

  .mobile-buy-bar > div {
    display: grid;
  }

  .mobile-buy-bar small {
    color: var(--muted);
    font-size: 0.68rem;
  }

  .mobile-buy-bar strong {
    font-size: 1.34rem;
    line-height: 1.1;
  }

  .mobile-buy-bar .button {
    min-height: 48px;
    min-width: 154px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
