@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700&display=swap');

:root {
  --ink: #0b1727;
  --ink-soft: #142338;
  --paper: #f3f1ea;
  --white: #fffefa;
  --line: #c9c8c2;
  --muted: #69727c;
  --blue: #075be8;
  --blue-dark: #0649bd;
  --green: #00c86f;
  --danger: #b42318;
  --font-display: 'Manrope', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;
  --font-brand: 'Unbounded', Arial, sans-serif;
  --page: min(1360px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7, 91, 232, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

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

.section {
  padding-block: 128px;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.display,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.display {
  max-width: 900px;
  font-size: clamp(58px, 7.7vw, 126px);
}

.page-title {
  max-width: 1050px;
  font-size: clamp(52px, 7vw, 108px);
}

.section-title {
  max-width: 980px;
  font-size: clamp(42px, 5.5vw, 84px);
}

.section-title.small {
  max-width: 760px;
  font-size: clamp(36px, 4.5vw, 66px);
}

.stroke-word {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}

.section-dark .stroke-word,
.section-blue .stroke-word {
  -webkit-text-stroke-color: var(--white);
}

.ink-line {
  display: block;
}

.accent-line {
  display: block;
  color: var(--blue);
}

.lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.section-dark .lead,
.section-blue .lead {
  color: rgba(255, 255, 255, 0.72);
}

.micro {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 14px 22px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.btn::after {
  width: 18px;
  height: 10px;
  margin-left: 16px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewX(38deg);
  content: '';
}

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

.btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.btn-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 23, 39, 0.12);
  background: rgba(243, 241, 234, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: var(--page);
  min-height: 78px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 230px 1fr auto;
}

.brand {
  display: inline-flex;
  width: 208px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(9%) sepia(16%) saturate(2143%) hue-rotate(171deg) brightness(92%) contrast(98%);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
}

.site-nav a {
  position: relative;
  padding-block: 28px;
  color: #2f3a47;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: '';
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: '';
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] span {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
}

.hero-grid {
  display: grid;
  min-height: 720px;
  align-items: start;
  gap: 44px;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.62fr);
}

.hero-copy {
  padding-top: 46px;
}

.hero .lead {
  max-width: 700px;
}

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

.proof-line {
  display: flex;
  max-width: 700px;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #4d5762;
  font-size: 13px;
}

.proof-line strong {
  color: var(--ink);
}

.proof-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.proof-mark::before {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 200, 111, 0.13);
  content: '';
}

.lead-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.hero .lead-card {
  margin-top: 8px;
}

.lead-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-card-kicker span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #375044;
  letter-spacing: 0;
  text-transform: none;
}

.lead-card-kicker span:last-child::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: '';
}

.lead-card h2,
.lead-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.lead-card > p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.choice legend {
  color: #3b4651;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #aeb2b5;
  border-radius: 3px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 46px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 91, 232, 0.11);
  outline: 0;
}

.choice {
  margin: 16px 0 0;
  border: 0;
  padding: 0;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.choice-options label {
  position: relative;
  cursor: pointer;
}

.choice-options input {
  position: absolute;
  opacity: 0;
}

.choice-options span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #aeb2b5;
  border-radius: 3px;
  padding: 8px 12px;
  color: #42505f;
  font-size: 12px;
  font-weight: 600;
}

.choice-options input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.choice-options input:focus-visible + span {
  outline: 3px solid rgba(7, 91, 232, 0.32);
  outline-offset: 2px;
}

.consent {
  display: grid;
  align-items: start;
  gap: 9px;
  margin: 15px 0;
  color: #59636e;
  font-size: 11px;
  grid-template-columns: 18px 1fr;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.captcha-box {
  min-height: 68px;
  margin-bottom: 12px;
}

.captcha-status {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
}

.captcha-status.is-ok {
  color: #137044;
}

.captcha-status.is-error,
.form-status.is-error {
  color: var(--danger);
}

.form-status {
  display: none;
  margin: 0 0 14px;
  border-left: 3px solid currentColor;
  padding: 9px 12px;
  background: #fff4f2;
  font-size: 13px;
}

.form-status.show {
  display: block;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-signal {
  margin-top: 72px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.55fr 0.7fr;
}

.signal-item {
  min-height: 132px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  margin-top: 11px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.8vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.signal-item:first-child strong {
  max-width: 560px;
  font-size: clamp(24px, 2.6vw, 40px);
}

.logo-strip {
  overflow: hidden;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-strip-title {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: repeat(8, 1fr);
}

.logo-row img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.62;
}

.offer-intro {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.45fr);
}

.offer-intro .lead {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-list {
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-row {
  display: grid;
  min-height: 190px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: 90px minmax(250px, 0.75fr) minmax(340px, 1fr) auto;
}

.service-row .number {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 54px);
  letter-spacing: -0.05em;
}

.service-row p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.service-row .mini-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: border-color 160ms ease, background 160ms ease;
}

.service-row .mini-arrow::before {
  display: block;
  width: 13px;
  height: 13px;
  margin: 14px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  content: '';
}

.service-row:hover .mini-arrow {
  border-color: var(--green);
  background: var(--green);
}

.guarantee {
  position: relative;
  overflow: hidden;
}

.guarantee-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
}

.guarantee-number {
  display: block;
  margin-top: 34px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(120px, 19vw, 310px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.guarantee-number small {
  font-size: 0.34em;
  letter-spacing: -0.04em;
}

.guarantee-copy {
  align-self: end;
  padding-bottom: 8px;
}

.guarantee-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.guarantee-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.guarantee-conditions {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.system-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
}

.sticky-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.system-steps {
  border-top: 1px solid var(--line);
}

.system-step {
  display: grid;
  min-height: 260px;
  align-items: start;
  gap: 28px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 62px 1fr;
}

.system-step .step-no {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.system-step h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.system-step p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.step-data {
  display: grid;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  grid-template-columns: repeat(3, 1fr);
}

.step-data span {
  padding: 15px;
  border-right: 1px solid var(--line);
  color: #54606d;
  font-size: 11px;
  text-transform: uppercase;
}

.step-data span:last-child {
  border-right: 0;
}

.results-head {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1fr auto;
}

.case-list {
  margin-top: 84px;
}

.case-study {
  display: grid;
  min-height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.case-study:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.case-study:nth-child(even) .case-image {
  order: 2;
}

.case-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101b2b;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.8) contrast(1.04);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-study:hover .case-image img {
  transform: scale(1.025);
}

.case-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px;
  background: var(--white);
  color: var(--ink);
}

.case-copy .case-type {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 70px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.case-copy p {
  max-width: 530px;
  color: var(--muted);
  font-size: 16px;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.case-metric strong {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.case-metric span {
  max-width: 160px;
  color: #57616d;
  font-size: 12px;
  line-height: 1.3;
}

.website-block {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.website-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px);
  background: var(--paper);
}

.website-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.3vw, 96px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.website-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 32px 0 10px;
}

.website-price strong {
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 106px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.website-price span {
  font-size: 13px;
}

.website-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.website-includes span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  background: var(--white);
  color: #4d5864;
  font-size: 11px;
  font-weight: 600;
}

.website-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.website-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-image::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(11, 23, 39, 0.22);
  content: '';
}

.founder-grid {
  display: grid;
  align-items: stretch;
  gap: 8%;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
}

.founder-photo {
  position: relative;
  max-width: 520px;
  min-height: 720px;
  overflow: hidden;
  background: #e3eafb;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.founder-note {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 210px;
  padding: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.founder-copy {
  align-self: center;
}

.founder-copy .section-title {
  max-width: 780px;
}

.founder-copy blockquote {
  max-width: 760px;
  margin: 44px 0 0;
  padding: 0 0 0 26px;
  border-left: 3px solid var(--green);
  color: #dce4ed;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.blog-grid {
  display: grid;
  gap: 18px;
  margin-top: 70px;
  grid-template-columns: 1.25fr 0.75fr;
}

.article-card {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  grid-template-rows: 1fr auto;
}

.article-card.secondary {
  min-height: 560px;
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 500ms ease;
}

.article-card:hover img {
  transform: scale(1.02);
}

.article-body {
  padding: 30px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-body h2,
.article-body h3 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.62fr);
}

.contact-copy {
  padding-top: 28px;
}

.contact-direct {
  display: grid;
  max-width: 680px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  grid-template-columns: 1fr 1fr;
}

.contact-direct a {
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.contact-direct a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-direct a:nth-child(even) {
  padding-left: 24px;
}

.section-dark .lead-card {
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--blue);
}

.page-hero {
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.45fr);
}

.page-hero .lead {
  margin: 0;
  font-size: 19px;
}

.portfolio-list {
  display: grid;
  gap: 80px;
}

.portfolio-item {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
}

.portfolio-item:nth-child(even) {
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 1fr);
}

.portfolio-item:nth-child(even) .portfolio-visual {
  order: 2;
}

.portfolio-visual {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  grid-template-columns: 1fr 0.46fr;
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-visual img:last-child {
  border-left: 4px solid var(--paper);
}

.portfolio-text {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  border-left: 1px solid var(--ink);
  background: var(--white);
}

.portfolio-item:nth-child(even) .portfolio-text {
  border-right: 1px solid var(--ink);
  border-left: 0;
}

.portfolio-text h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.portfolio-text p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 10px;
  color: #505c69;
  font-size: 11px;
}

.content-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.prose {
  width: 100%;
  min-width: 0;
  max-width: 820px;
}

.prose h2 {
  margin: 78px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 42px 0 14px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.prose p,
.prose li {
  color: #45515f;
  font-size: 17px;
}

.prose p {
  margin: 0 0 20px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 10px;
}

.prose a {
  color: var(--blue-dark);
}

.prose table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--ink);
  color: var(--white);
}

.toc {
  position: sticky;
  top: 110px;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.toc strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #56616d;
  font-size: 13px;
  text-decoration: none;
}

.offer-hero {
  overflow: hidden;
  padding: 82px 0 0;
  background: var(--ink);
  color: var(--white);
}

.offer-hero-grid {
  display: grid;
  min-height: 670px;
  align-items: center;
  gap: 60px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.55fr);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 38px 0 0;
}

.offer-price strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 142px);
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.offer-price span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.offer-hero .lead-card {
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--green);
}

.package-grid {
  display: grid;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  grid-template-columns: 1.2fr 0.8fr;
}

.package-main,
.package-side {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: clamp(34px, 5vw, 72px);
}

.package-main h3,
.package-side h3 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: grid;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #46515e;
  grid-template-columns: 28px 1fr;
}

.plain-list li::before {
  color: var(--blue);
  font-weight: 800;
  content: 'OK';
}

.process-track {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: repeat(4, 1fr);
}

.process-track article {
  min-height: 320px;
  padding: 38px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.process-track h3 {
  margin: 92px 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.process-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.faq-list {
  max-width: 980px;
  margin: 72px 0 0 auto;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-question {
  display: grid;
  width: 100%;
  align-items: center;
  gap: 22px;
  border: 0;
  padding: 27px 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
  cursor: pointer;
  grid-template-columns: 1fr 30px;
}

.faq-question::after {
  display: block;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  content: '+';
}

.faq-question[aria-expanded='true']::after {
  content: '-';
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 800px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.thanks {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding: 80px 20px;
  background: var(--ink);
  color: var(--white);
}

.thanks-card {
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: clamp(40px, 8vw, 90px);
}

.thanks-card .status-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.thanks-card .status-mark::after {
  display: block;
  width: 21px;
  height: 10px;
  margin: 16px 0 0 14px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
  content: '';
}

.thanks-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.thanks-card p {
  max-width: 580px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.site-footer {
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  align-items: start;
  gap: 60px;
  padding-bottom: 70px;
  grid-template-columns: 1fr auto auto;
}

.footer-brand {
  width: 230px;
}

.footer-brand img {
  width: 100%;
}

.footer-statement {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  display: none;
  width: min(430px, calc(100vw - 36px));
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 20px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.cookie-banner.show {
  display: block;
  animation: cookie-in 260ms ease both;
}

.cookie-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.cookie-banner p {
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions button {
  min-height: 38px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions .accept-all {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.consent-modal,
.exit-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: none;
  padding: 20px;
  background: rgba(11, 23, 39, 0.72);
  place-items: center;
}

.consent-modal.open,
.exit-modal.open {
  display: grid;
}

.modal-panel {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--blue);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.modal-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.consent-option {
  display: grid;
  align-items: start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.consent-option strong {
  display: block;
  font-size: 14px;
}

.consent-option p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #aeb4ba;
  cursor: pointer;
}

.switch span::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 160ms ease;
  content: '';
}

.switch input:checked + span {
  background: var(--blue);
}

.switch input:checked + span::before {
  transform: translateX(20px);
}

.switch input:disabled + span {
  background: var(--green);
  cursor: default;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.exit-panel {
  display: grid;
  width: min(1020px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--ink);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--green);
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.exit-visual {
  min-height: 620px;
  background: #e8edf4;
}

.exit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exit-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.exit-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 52px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.exit-copy p {
  color: rgba(255, 255, 255, 0.65);
}

.exit-copy .exit-lead {
  max-width: 580px;
  margin: 20px 0 22px;
  font-size: 16px;
  line-height: 1.6;
}

.exit-benefits {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exit-benefits li {
  position: relative;
  min-height: 92px;
  padding: 14px 14px 14px 38px;
  background: rgba(255, 255, 255, 0.07);
}

.exit-benefits li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: '';
}

.exit-benefits strong,
.exit-benefits span {
  display: block;
}

.exit-benefits strong {
  font-size: 14px;
  line-height: 1.25;
}

.exit-benefits span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.exit-copy > small {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: center;
}

.exit-copy .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

[data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 600ms ease;
}

[data-reveal].revealed {
  transform: none;
  opacity: 1;
}

@keyframes cookie-in {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 42px, 1040px);
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .brand {
    width: 175px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .offer-hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .service-row {
    grid-template-columns: 54px minmax(230px, 0.7fr) 1fr 44px;
  }

  .contact-layout {
    grid-template-columns: 1fr 410px;
  }

  .portfolio-item,
  .portfolio-item:nth-child(even) {
    grid-template-columns: 1fr 420px;
  }

  .portfolio-item:nth-child(even) .portfolio-visual {
    order: 0;
  }

  .portfolio-item:nth-child(even) .portfolio-text {
    border-right: 0;
    border-left: 1px solid var(--ink);
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100% - 36px);
  }

  .section {
    padding-block: 92px;
  }

  .header-inner {
    display: flex;
    min-height: 68px;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: 68px 0 auto;
    display: none;
    height: calc(100vh - 68px);
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 30px 20px;
    background: var(--paper);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 20px 4px;
    font-family: var(--font-display);
    font-size: 26px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid,
  .offer-hero-grid,
  .contact-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero .lead-card,
  .offer-hero .lead-card {
    margin: 0 0 32px;
  }

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

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .logo-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .offer-intro,
  .guarantee-grid,
  .system-layout,
  .founder-grid,
  .page-hero-grid,
  .content-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .service-row {
    min-height: 0;
    padding: 34px 0;
    grid-template-columns: 44px 1fr 44px;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

  .sticky-copy,
  .toc {
    position: static;
  }

  .case-study,
  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) .case-image {
    order: 0;
  }

  .case-image,
  .case-copy {
    min-height: 440px;
  }

  .website-block {
    grid-template-columns: 1fr;
  }

  .website-image {
    min-height: 520px;
  }

  .founder-photo {
    width: min(520px, 90%);
    min-height: 640px;
  }

  .founder-copy {
    padding-top: 20px;
  }

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

  .contact-copy {
    padding-top: 0;
  }

  .portfolio-item,
  .portfolio-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .portfolio-text,
  .portfolio-item:nth-child(even) .portfolio-text {
    min-height: 430px;
    border-top: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

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

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

  .process-track article:nth-child(2) {
    border-right: 0;
  }

  .process-track article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 72px;
  }

  .brand {
    width: 164px;
  }

  .display {
    font-size: clamp(48px, 15vw, 72px);
  }

  .page-title {
    font-size: clamp(46px, 14vw, 68px);
  }

  .section-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

  .proof-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-card {
    padding: 24px 18px;
    box-shadow: 7px 7px 0 var(--ink);
  }

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

  .field-full {
    grid-column: auto;
  }

  .choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .choice-options span {
    justify-content: center;
    text-align: center;
  }

  .hero-signal {
    margin-top: 50px;
  }

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

  .signal-item {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 20px;
  }

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

  .logo-row {
    gap: 22px 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list {
    margin-top: 55px;
  }

  .service-row {
    gap: 18px;
    grid-template-columns: 30px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-row .mini-arrow {
    display: none;
  }

  .guarantee-number {
    font-size: 42vw;
  }

  .system-step {
    grid-template-columns: 36px 1fr;
  }

  .step-data {
    grid-template-columns: 1fr;
  }

  .step-data span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-data span:last-child {
    border-bottom: 0;
  }

  .results-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .case-list {
    margin-top: 52px;
  }

  .case-image {
    min-height: 300px;
  }

  .case-copy {
    min-height: 420px;
    padding: 32px 24px;
  }

  .case-metric {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-copy {
    padding: 56px 20px;
  }

  .website-image {
    min-height: 400px;
  }

  .founder-photo {
    width: calc(100% - 18px);
    min-height: 520px;
  }

  .founder-note {
    right: -18px;
    width: 170px;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-direct a:nth-child(odd) {
    border-right: 0;
  }

  .contact-direct a:nth-child(even) {
    padding-left: 0;
  }

  .article-card,
  .article-card.secondary {
    min-height: 500px;
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .portfolio-list {
    gap: 50px;
  }

  .portfolio-visual {
    min-height: 370px;
    grid-template-columns: 1fr;
  }

  .portfolio-visual img:last-child {
    display: none;
  }

  .portfolio-text,
  .portfolio-item:nth-child(even) .portfolio-text {
    min-height: 400px;
    padding: 30px 24px;
  }

  .prose p,
  .prose li {
    font-size: 16px;
  }

  .prose table {
    display: block;
    overflow-x: auto;
  }

  .offer-hero {
    padding-top: 52px;
  }

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

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

  .process-track article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-track h3 {
    margin-top: 60px;
  }

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

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .exit-panel {
    grid-template-columns: 1fr;
  }

  .exit-visual {
    min-height: 180px;
    max-height: 210px;
  }

  .exit-copy {
    padding: 48px 28px 32px;
  }

  .exit-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .exit-benefits {
    grid-template-columns: 1fr;
  }

  .exit-benefits li {
    min-height: auto;
  }
}

.header-inner {
  grid-template-columns: 330px 1fr auto;
}

.header-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  width: 176px;
}

.polish-badge {
  display: grid;
  width: 86px;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  border-left: 1px solid var(--line);
  padding-left: 13px;
  color: var(--ink);
  grid-template-columns: 20px 1fr;
  text-decoration: none;
}

.flag-mark {
  position: relative;
  display: block;
  width: 20px;
  height: 18px;
  overflow: hidden;
  border: 1px solid #c8c8c8;
  background: #fff;
}

.flag-mark::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50%;
  background: #d4213d;
  content: '';
}

.polish-badge strong,
.polish-badge small {
  display: block;
  font-family: var(--font-brand);
  font-size: 7px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.polish-badge small {
  margin-top: 2px;
  color: #d4213d;
  font-weight: 700;
}

.eyebrow,
.btn,
.lead-card-kicker,
.signal-item span,
.case-type,
.logo-strip-title {
  font-family: var(--font-brand);
}

.hero {
  padding-top: 34px;
}

.hero-grid {
  min-height: 590px;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.56fr);
}

.hero-copy {
  padding-top: 8px;
}

.hero .display {
  max-width: 790px;
  font-size: clamp(56px, 6.2vw, 98px);
}

.hero .lead {
  max-width: 650px;
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero .hero-actions {
  margin-top: 30px;
}

.hero .lead-card {
  margin-top: 0;
  padding: 27px;
  box-shadow: 10px 10px 0 var(--ink);
}

.hero .lead-card-kicker {
  margin-bottom: 16px;
}

.hero .lead-card h2 {
  font-size: clamp(28px, 2.5vw, 36px);
}

.hero .lead-card > p {
  margin: 11px 0 18px;
}

.hero .form-grid {
  gap: 10px;
}

.hero .field {
  gap: 5px;
}

.hero .field input {
  min-height: 42px;
  padding: 9px 11px;
}

.hero .choice {
  margin-top: 12px;
}

.hero .choice-options {
  gap: 6px;
  margin-top: 6px;
}

.hero .choice-options span {
  min-height: 34px;
  padding: 7px 10px;
}

.hero .consent {
  margin: 12px 0;
}

.hero .captcha-box {
  min-height: 58px;
  margin-bottom: 8px;
}

.hero .captcha-status {
  margin-bottom: 8px;
}

.client-proof {
  display: flex;
  max-width: 700px;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.client-avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 9px;
}

.client-avatars img {
  width: 48px;
  height: 48px;
  margin-left: -9px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.client-proof-copy .stars {
  color: #e9a800;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.client-proof-copy p {
  max-width: 500px;
  margin: 4px 0 0;
  color: #4d5762;
  font-size: 13px;
  line-height: 1.42;
}

.client-proof-copy strong {
  color: var(--ink);
}

.response-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.response-note span {
  color: var(--ink);
  font-weight: 700;
}

.hero-mobile-promise {
  display: none;
}

.hero-signal {
  margin-top: 28px;
}

.signal-item {
  min-height: 112px;
  padding: 22px 26px;
}

.signal-item strong {
  font-size: clamp(23px, 2.35vw, 38px);
}

.signal-item:first-child strong {
  font-size: clamp(23px, 2.25vw, 36px);
}

@media (min-width: 901px) and (max-height: 980px) {
  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero .display {
    font-size: clamp(52px, 5.7vw, 90px);
  }

  .hero .lead {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.42;
  }

  .hero .hero-actions {
    margin-top: 24px;
  }

  .hero .lead-card {
    padding: 22px;
  }

  .hero .lead-card-kicker {
    margin-bottom: 12px;
  }

  .hero .lead-card h2 {
    font-size: clamp(27px, 2.3vw, 34px);
  }

  .hero .lead-card > p {
    margin: 8px 0 13px;
    font-size: 13px;
  }

  .hero .form-grid {
    gap: 8px;
  }

  .hero .field input {
    min-height: 38px;
    padding-block: 7px;
  }

  .hero .choice {
    margin-top: 8px;
  }

  .hero .choice-options span {
    min-height: 32px;
    padding-block: 6px;
  }

  .hero .consent {
    margin: 8px 0;
  }

  .hero .captcha-box,
  .hero .captcha-status {
    margin-bottom: 6px;
  }

  .hero .btn-block {
    min-height: 48px;
  }

  .client-proof {
    margin-top: 20px;
  }

  .client-avatars img {
    width: 44px;
    height: 44px;
  }

  .response-note {
    margin-top: 10px;
  }

  .hero-signal {
    margin-top: 10px;
  }

  .signal-item {
    min-height: 100px;
    padding: 18px 26px;
  }

  .signal-item strong,
  .signal-item:first-child strong {
    font-size: clamp(22px, 2.15vw, 34px);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero {
    padding-top: 16px;
  }

  .hero .display {
    font-size: clamp(50px, 5.2vw, 82px);
  }

  .hero .hero-actions {
    margin-top: 20px;
  }

  .hero .lead-card {
    padding: 18px;
  }

  .client-proof {
    margin-top: 16px;
  }

  .signal-item {
    min-height: 92px;
    padding: 14px 24px;
  }

  .signal-item strong,
  .signal-item:first-child strong {
    font-size: clamp(21px, 2vw, 31px);
  }
}

.logo-strip {
  padding: 38px 0 34px;
}

.logo-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.logo-strip-title {
  margin: 0;
  color: var(--ink);
}

.logo-strip-head > span {
  color: var(--muted);
  font-size: 12px;
}

.logo-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logo-scroll 34s linear infinite;
}

.logo-track img {
  width: 170px;
  height: 44px;
  margin-right: 56px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 0.68;
}

.competency-strip {
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
  background: var(--white);
}

.competency-grid {
  display: grid;
  align-items: center;
  gap: 44px;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
}

.competency-grid h2 {
  max-width: 390px;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(16px, 1.55vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.competency-logos {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.competency-logos img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.results-logo-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-row h3,
.case-metric strong,
.offer-price strong,
.founder-social strong {
  font-family: var(--font-brand);
}

.website-old-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
}

.website-old-price del {
  color: var(--muted);
  font-family: var(--font-brand);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
}

.website-old-price span {
  color: var(--muted);
  font-size: 11px;
}

.website-price {
  margin-top: 8px;
}

.website-price strong {
  font-size: clamp(42px, 5.5vw, 82px);
}

.founder-grid {
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
}

.founder-visual {
  width: 100%;
  max-width: 470px;
}

.founder-photo {
  width: 100%;
  max-width: none;
  min-height: 0;
  aspect-ratio: 1;
}

.founder-photo img {
  object-position: center 16%;
}

.founder-social {
  display: grid;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  grid-template-columns: 1fr 1fr;
}

.founder-social div {
  padding: 22px;
}

.founder-social div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.founder-social strong,
.founder-social span {
  display: block;
}

.founder-social strong {
  font-size: 30px;
}

.founder-social span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.founder-copy .section-title {
  max-width: 700px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.founder-copy .founder-lead {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.founder-copy p strong {
  color: var(--white);
}

.founder-proof-grid {
  display: grid;
  max-width: 760px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founder-proof {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.founder-proof:last-child {
  border-right: 0;
}

.founder-proof strong,
.founder-proof span {
  display: block;
}

.founder-proof strong {
  font-family: var(--font-brand);
  font-size: 15px;
  line-height: 1.35;
}

.founder-proof > span:not(.flag-mark) {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.founder-proof-polish {
  display: grid;
  align-content: center;
  align-items: center;
  gap: 13px;
  grid-template-columns: 28px 1fr;
  text-decoration: none;
}

.founder-proof-polish .flag-mark {
  width: 28px;
  height: 24px;
}

.founder-proof-polish:hover strong {
  color: var(--green);
}

.team-block {
  margin-top: clamp(88px, 10vw, 150px);
}

.team-title {
  margin: 0 0 42px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.035);
  grid-template-rows: auto 1fr;
}

.team-photo {
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #e3eafb;
  aspect-ratio: 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.team-card-body {
  display: flex;
  min-height: 248px;
  padding: clamp(22px, 2vw, 30px);
  flex-direction: column;
}

.team-card-copy {
  display: block;
}

.team-card-copy h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.team-role {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.team-bio {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.58;
}

.team-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}

.team-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: var(--white);
  text-decoration: none;
}

.team-icon img {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

a.team-icon:hover {
  border-color: var(--green);
  color: var(--green);
}

.team-icon[aria-disabled='true'] {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.48);
}

.team-icon[aria-disabled='true'] img {
  opacity: 0.48;
}

.team-card-gold {
  border-color: #d7ad52;
  box-shadow: inset 0 0 0 1px rgba(215, 173, 82, 0.28);
}

.team-card-gold .team-icon-linkedin {
  border-color: #d7ad52;
  color: #d7ad52;
}

.team-card-gold .team-icon-linkedin img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(64%) saturate(485%) hue-rotate(359deg) brightness(92%) contrast(89%);
}

.footer-brand {
  display: block;
  width: 176px;
}

.footer-brand img {
  filter: grayscale(1) brightness(0) invert(1);
}

.portfolio-visual {
  min-height: 0;
  aspect-ratio: 16 / 8.6;
  background: #e8e8e4;
}

.portfolio-visual img {
  object-fit: contain;
}

.portfolio-text {
  min-height: 0;
}

.site-footer {
  padding-top: 58px;
}

.footer-top {
  padding-bottom: 54px;
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 260px 1fr auto;
  }

  .polish-badge {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-brand-group {
    flex: 1;
  }

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

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

  .competency-logos {
    width: 100%;
    gap: 24px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .hero-mobile-promise {
    display: grid;
    margin-top: 24px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-mobile-promise div {
    min-width: 0;
    padding: 13px 9px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-mobile-promise div:last-child {
    border-right: 0;
  }

  .hero-mobile-promise span,
  .hero-mobile-promise strong {
    display: block;
  }

  .hero-mobile-promise span {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-brand);
    font-size: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero-mobile-promise strong {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero .lead-card {
    margin-top: 0;
  }

  .founder-photo {
    width: 100%;
    min-height: 0;
  }

  .portfolio-visual {
    aspect-ratio: auto;
    min-height: 0;
  }

  .portfolio-visual img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 140px;
  }

  .header-brand-group {
    gap: 9px;
  }

  .polish-badge {
    display: grid;
    width: 70px;
    min-height: 32px;
    gap: 5px;
    padding-left: 8px;
    grid-template-columns: 16px 1fr;
  }

  .polish-badge .flag-mark {
    width: 16px;
    height: 14px;
  }

  .polish-badge strong,
  .polish-badge small {
    font-size: 6px;
  }

  .hero .display {
    font-size: clamp(44px, 13vw, 61px);
  }

  .client-proof {
    align-items: flex-start;
  }

  .client-avatars img {
    width: 42px;
    height: 42px;
  }

  .logo-strip-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .logo-track img {
    width: 132px;
    height: 38px;
    margin-right: 34px;
  }

  .competency-strip {
    padding: 42px 0;
  }

  .competency-logos {
    gap: 24px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competency-grid {
    gap: 28px;
  }

  .competency-grid h2 {
    max-width: 310px;
    font-size: 16px;
  }

  .competency-logos img {
    max-height: 30px;
  }

  .founder-social div {
    padding: 18px 14px;
  }

  .founder-proof-grid {
    grid-template-columns: 1fr;
  }

  .founder-proof {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px;
  }

  .founder-proof:last-child {
    border-bottom: 0;
  }

  .team-block {
    margin-top: 80px;
  }

  .team-title {
    margin-bottom: 28px;
  }

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

  .team-card-body {
    min-height: 234px;
    padding: 22px;
  }

  .portfolio-visual {
    grid-template-columns: 1fr;
  }

  .portfolio-visual img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .portfolio-visual img:last-child {
    display: block;
    border-top: 4px solid var(--paper);
    border-left: 0;
  }

  .case-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .case-copy {
    min-height: 0;
  }
}

.web-offer-hero {
  overflow: hidden;
  padding-top: 48px;
}

.web-offer-grid {
  display: grid;
  min-height: 560px;
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.75fr);
}

.web-offer-copy .display {
  max-width: 790px;
  font-size: clamp(56px, 6.1vw, 96px);
}

.web-offer-copy .hero-actions {
  margin-top: 28px;
}

.public-price {
  display: flex;
  align-items: end;
  gap: 34px;
  margin-top: 28px;
}

.public-price > div {
  display: grid;
  gap: 2px;
}

.public-price del {
  color: var(--muted);
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 600;
}

.public-price strong {
  font-family: var(--font-brand);
  font-size: clamp(38px, 4.3vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.public-price span {
  color: var(--muted);
  font-size: 11px;
}

.web-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 16px 16px 0 var(--ink);
}

.web-hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.web-visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--ink);
}

.web-visual-caption strong {
  font-family: var(--font-brand);
  font-size: 11px;
}

.web-visual-caption span {
  color: var(--muted);
  font-size: 11px;
}

.web-inclusions {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.web-inclusions .shell {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.web-inclusions span {
  display: grid;
  min-height: 128px;
  place-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.web-inclusions span:last-child {
  border-right: 0;
}

.logo-strip.compact {
  border-bottom: 0;
}

.scope-layout {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(290px, 0.65fr) minmax(0, 1fr);
}

.scope-intro {
  position: sticky;
  top: 120px;
}

.scope-intro .lead {
  font-size: 18px;
}

.scope-board {
  border-top: 1px solid var(--ink);
}

.scope-row {
  display: grid;
  align-items: start;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 44px minmax(180px, 0.55fr) minmax(220px, 1fr);
}

.scope-row > span {
  color: var(--blue);
  font-family: var(--font-brand);
  font-size: 11px;
}

.scope-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.scope-row p {
  margin: 0;
  color: var(--muted);
}

.case-image.contain {
  background: #e9e9e5;
}

.case-image.contain img {
  object-fit: contain;
  padding: 26px;
}

.web-results-section {
  padding-bottom: 152px;
}

.web-case-logos {
  display: grid;
  width: min(760px, 100%);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  margin: 22px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-case-logos-label {
  margin: 68px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-brand);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.web-case-logos img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.82;
}

.light-track {
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.light-track article {
  border-color: var(--ink);
}

.light-track article:last-child {
  border-right: 0;
}

.light-track p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .web-offer-grid,
  .scope-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .web-offer-grid {
    gap: 38px;
  }

  .scope-intro {
    position: static;
  }

  .web-hero-visual {
    width: min(680px, calc(100% - 16px));
    margin-bottom: 32px;
  }

  .web-inclusions {
    margin-top: 24px;
  }

  .web-results-section {
    padding-bottom: 108px;
  }
}

@media (max-width: 620px) {
  .web-offer-hero {
    padding-top: 48px;
  }

  .web-offer-copy .display {
    font-size: clamp(46px, 14vw, 66px);
  }

  .public-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .web-hero-visual {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .web-visual-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
  }

  .web-inclusions .shell {
    grid-template-columns: 1fr 1fr;
  }

  .web-inclusions span {
    min-height: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-inline: 10px;
    font-size: 11px;
  }

  .web-case-logos {
    gap: 18px;
    margin-top: 18px;
  }

  .web-case-logos-label {
    margin-top: 48px;
  }

  .web-case-logos img {
    height: 36px;
  }

  .scope-row {
    gap: 14px;
    grid-template-columns: 30px 1fr;
  }

  .scope-row p {
    grid-column: 2;
  }

  .case-image.contain img {
    padding: 14px;
  }
}

.promo-copy .display {
  font-size: clamp(52px, 6.6vw, 102px);
}

.promo-quick-proof {
  display: grid;
  max-width: 640px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  grid-template-columns: repeat(3, 1fr);
}

.promo-quick-proof span {
  padding: 18px 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

.promo-package {
  display: grid;
  align-items: start;
  gap: clamp(56px, 9vw, 140px);
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
}

.promo-package-intro {
  position: sticky;
  top: 118px;
}

.promo-package-intro .lead {
  font-size: 18px;
}

.promo-price-stamp {
  display: grid;
  gap: 2px;
  margin-top: 38px;
  border-left: 4px solid var(--blue);
  padding-left: 20px;
}

.promo-price-stamp strong {
  font-family: var(--font-brand);
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.promo-price-stamp span {
  color: var(--muted);
  font-size: 11px;
}

.promo-gallery {
  display: grid;
  gap: 16px;
  margin-top: 70px;
  grid-template-columns: 1.25fr 0.75fr;
}

.promo-gallery figure {
  display: grid;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--white);
  color: var(--ink);
  grid-template-rows: 1fr auto;
}

.promo-gallery figure:first-child {
  grid-row: span 2;
}

.promo-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: contain;
  background: #e9e9e5;
}

.promo-gallery figure:first-child img {
  min-height: 520px;
}

.promo-gallery figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-top: 1px solid var(--ink);
}

.promo-gallery figcaption strong {
  font-family: var(--font-brand);
  font-size: 11px;
}

.promo-gallery figcaption span {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .promo-package {
    grid-template-columns: 1fr;
  }

  .promo-package-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .promo-copy .display {
    font-size: clamp(46px, 14vw, 66px);
  }

  .promo-quick-proof {
    grid-template-columns: 1fr;
  }

  .promo-quick-proof span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 0;
  }

  .promo-gallery {
    grid-template-columns: 1fr;
  }

  .promo-gallery figure:first-child {
    grid-row: auto;
  }

  .promo-gallery figure:first-child img,
  .promo-gallery img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .promo-gallery figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.polish-hero {
  padding: 96px 0 110px;
  background: var(--ink);
  color: var(--white);
}

.polish-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(0, 1fr) 330px;
}

.polish-hero-grid > * {
  min-width: 0;
}

.polish-hero .page-title {
  max-width: 980px;
  font-size: clamp(54px, 6.7vw, 104px);
}

.polish-hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.polish-red {
  display: block;
  color: #ed2846;
}

.polish-seal {
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 34px;
  background: #101f33;
}

.seal-flag {
  display: block;
  width: 100%;
  height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #fff;
}

.seal-flag span {
  display: block;
  height: 50%;
  margin-top: 77px;
  background: #d4213d;
}

.polish-seal strong,
.polish-seal > span,
.polish-seal small {
  display: block;
}

.polish-seal strong {
  margin-top: 30px;
  font-family: var(--font-brand);
  font-size: 70px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.polish-seal > span {
  margin-top: 6px;
  font-family: var(--font-brand);
  font-size: 11px;
  text-transform: uppercase;
}

.polish-seal small {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.55);
}

.polish-facts {
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.polish-facts .shell {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
}

.polish-facts .shell > div {
  min-height: 128px;
  padding: 28px;
  border-right: 1px solid var(--ink);
}

.polish-facts .shell > div:first-child {
  border-left: 1px solid var(--ink);
}

.polish-facts strong,
.polish-facts span {
  display: block;
}

.polish-facts strong {
  font-family: var(--font-brand);
  font-size: 17px;
}

.polish-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.polish-story {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
}

.polish-principles {
  border-top: 1px solid var(--ink);
}

.polish-principles article {
  display: grid;
  gap: 26px;
  padding: 38px 0;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 44px 1fr;
}

.polish-principles article > span {
  color: #d4213d;
  font-family: var(--font-brand);
  font-size: 11px;
}

.polish-principles h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.7vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.polish-principles p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.polish-founder {
  display: grid;
  align-items: center;
  gap: clamp(58px, 8vw, 120px);
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
}

.polish-founder .founder-photo {
  max-width: 460px;
}

.polish-founder .btn {
  margin-top: 38px;
}

/* Opinie klientów — jasna, automatycznie przesuwana sekcja na stronie głównej. */
.reviews-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.reviews-heading {
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.reviews-heading .section-title {
  max-width: 900px;
}

.reviews-google-link {
  display: flex;
  min-width: 170px;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.reviews-google-link:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.google-mark {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.reviews-google-link span,
.reviews-google-link small,
.reviews-google-link strong {
  display: block;
}

.reviews-google-link small {
  color: var(--muted);
  font-size: 10px;
}

.reviews-google-link strong {
  font-family: var(--font-brand);
  font-size: 15px;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  margin-top: 68px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: max(28px, calc((100vw - 1360px) / 2));
  pointer-events: none;
  content: '';
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 254, 250, 0));
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 254, 250, 0));
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviews-scroll 78s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  gap: 18px;
}

.review-card {
  width: min(420px, calc(100vw - 42px));
  min-height: 500px;
  flex: 0 0 min(420px, calc(100vw - 42px));
  border: 1px solid var(--line);
  background: #f8f7f2;
  box-shadow: 0 18px 48px rgba(11, 23, 39, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-7px);
  border-color: var(--ink);
  box-shadow: 0 26px 60px rgba(11, 23, 39, 0.14);
}

.review-card > a {
  display: grid;
  min-height: 100%;
  padding: 30px;
  color: var(--ink);
  grid-template-rows: auto 1fr auto;
  text-decoration: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.review-stars {
  color: #f6aa12;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-source .google-mark {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.review-card blockquote {
  margin: 0;
  padding: 28px 0 32px;
  font-size: 15px;
  line-height: 1.62;
}

.review-author {
  display: grid;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: 56px 1fr auto;
}

.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author span,
.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-family: var(--font-brand);
  font-size: 12px;
  line-height: 1.35;
}

.review-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.review-author i {
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
  transition: transform 180ms ease;
}

.review-card:hover .review-author i,
.review-card:focus-within .review-author i {
  transform: translate(3px, -3px);
}

@keyframes reviews-scroll {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    width: auto;
    padding-inline: max(18px, calc((100vw - 1360px) / 2));
    animation: none;
  }

  .reviews-group:first-child {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-group[aria-hidden='true'] {
    display: none;
  }

  .review-card {
    width: auto;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .polish-hero-grid,
  .polish-story,
  .polish-founder {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .reviews-google-link {
    width: max-content;
  }

  .polish-seal {
    width: min(360px, 100%);
  }
}

@media (max-width: 620px) {
  .polish-hero {
    padding: 68px 0 76px;
  }

  .reviews-marquee {
    margin-top: 48px;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 18px;
  }

  .review-card {
    width: calc(100vw - 36px);
    min-height: 520px;
    flex-basis: calc(100vw - 36px);
  }

  .review-card > a {
    padding: 24px 22px;
  }

  .review-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .review-card blockquote {
    font-size: 14px;
  }

  .reviews-group:first-child {
    grid-template-columns: 1fr;
  }

  .polish-hero .page-title {
    font-size: clamp(34px, 9.6vw, 42px);
    hyphens: auto;
  }

  .polish-facts .shell {
    grid-template-columns: 1fr;
  }

  .polish-facts .shell > div,
  .polish-facts .shell > div:first-child {
    min-height: 0;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

  .seal-flag {
    height: 110px;
  }

  .seal-flag span {
    margin-top: 55px;
  }
}
