:root {
  --ink: #001a6e;
  --ink-soft: #0036a8;
  --paper: #f5f8ff;
  --white: #ffffff;
  --muted: #58647a;
  --line: #dce6f5;
  --panel: #eaf2ff;
  --accent: #005bff;
  --accent-dark: #0047d6;
  --accent-secondary: #00a7ff;
  --market-gradient: linear-gradient(135deg, #005bff 0%, #0075ff 56%, #00a7ff 100%);
  --dark-line: rgba(126, 167, 255, 0.26);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(0, 91, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--body);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--accent);
  color: var(--white);
}

.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.narrow {
  width: min(900px, calc(100% - 80px));
}

.section {
  padding-block: 78px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 245, 0.92);
  background: rgba(245, 248, 255, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
  font-family: var(--display);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 91, 255, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 11px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button:focus-visible,
.text-button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 91, 255, 0.35);
  outline-offset: 3px;
}

.button-dark {
  min-height: 44px;
  background: var(--market-gradient);
  color: var(--white);
}

.button-accent {
  background: var(--market-gradient);
  color: var(--white);
}

.button-accent:hover {
  box-shadow: 0 14px 30px rgba(0, 91, 255, 0.32);
}

.button-outline {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.button-ghost {
  border-color: var(--dark-line);
  color: var(--white);
}

.button-dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--white);
}

.button-dot.accent {
  background: var(--accent-secondary);
}

.messenger-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 20, 84, 0.94) 0%, rgba(0, 38, 132, 0.82) 38%, rgba(0, 91, 255, 0.34) 67%, rgba(0, 91, 255, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 16, 70, 0.48), transparent 48%);
  content: "";
}

.hero-grid {
  display: flex;
  align-items: center;
  min-height: max(650px, calc(100svh - 72px));
}

.hero-copy,
.hero-media,
.delivery-copy,
.request-copy,
.form-shell {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: 76px;
}

.hero .eyebrow {
  color: #8ec5ff;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent-dark);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 span {
  background: var(--market-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: #e1e4f0;
  font-size: 18px;
  line-height: 1.65;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-media::before {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.hero-media figcaption {
  display: none;
}

.hero-media figcaption span {
  color: #abb0b9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  color: #88adff;
  font-family: var(--display);
  font-size: 24px;
}

.hero .button-outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 31, 111, 0.56);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.stats {
  overflow: hidden;
  background: linear-gradient(112deg, var(--ink) 0%, #003fb8 100%);
  color: var(--white);
}

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

.stat {
  min-width: 0;
  padding: 36px 30px;
  border-right: 1px solid var(--dark-line);
}

.stat:first-child {
  border-left: 1px solid var(--dark-line);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: #68b6ff;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.stat span {
  margin-top: 10px;
  color: #9da3ad;
  font-size: 13px;
}

.hero-marketplaces {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.marketplace-label {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 20, 84, 0.2);
}

.marketplace-logo img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: contain;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.delivery-copy h2,
.request-copy h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 58px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 146px;
  padding: 4px 0 28px;
}

.process-step > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.process-step > div {
  border-left: 2px solid var(--line);
  padding-left: 20px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.process-step p,
.advantage-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.warehouse,
.delivery {
  background: var(--panel);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 13px;
  background: var(--ink);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 355 / 260;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(16, 18, 22, 0.86));
  content: "";
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-card figcaption span {
  color: var(--accent);
  font-size: 15px;
}

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

.advantage-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 27px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(22, 24, 29, 0.09);
}

.advantage-tag {
  display: inline-flex;
  margin-bottom: 26px;
  border-radius: 9px;
  padding: 5px 13px;
  background: #e4efff;
  color: var(--accent-dark);
  font-family: var(--display);
  font-size: 25px;
}

.advantage-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.seller-services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 167, 255, 0.2), transparent 27%),
    linear-gradient(145deg, #001a6e 0%, #003fb8 58%, #005bff 100%);
  color: var(--white);
}

.seller-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 42px;
}

.seller-services-heading .eyebrow {
  color: #8ec5ff;
}

.seller-services-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.seller-services-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

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

.seller-service-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 16, 70, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.seller-service-card:first-child {
  grid-column: span 7;
}

.seller-service-card:nth-child(2) {
  grid-column: span 5;
}

.seller-service-card:nth-child(6),
.seller-service-card:nth-child(7) {
  grid-column: span 6;
}

.seller-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 16, 70, 0.34);
}

.seller-service-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.seller-service-body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 24px 25px;
}

.seller-service-number {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.seller-service-card h3 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.14;
}

.seller-service-price {
  display: inline-flex;
  margin-top: auto;
  border-radius: 9px;
  padding: 7px 12px;
  background: #e4efff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.seller-services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  border-radius: 18px;
  padding: 22px 24px;
  background: rgba(0, 20, 84, 0.48);
  backdrop-filter: blur(10px);
}

.seller-services-cta p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.seller-services-cta .button {
  flex: 0 0 auto;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 72px;
}

.delivery-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 19px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
}

.radius-map {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.radius-ring {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
}

.radius-ring.outer {
  width: 310px;
  border: 1px dashed #a9abb2;
}

.radius-ring.inner {
  width: 190px;
  border: 1px solid #c9cbd1;
  background: rgba(0, 91, 255, 0.1);
}

.radius-dot {
  z-index: 2;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.radius-map strong {
  position: absolute;
  z-index: 2;
  top: calc(50% + 22px);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.radius-caption {
  position: absolute;
  top: 12px;
  right: 28px;
  color: #747983;
  font-size: 13px;
}

@keyframes pulse-dot {
  0%,
  100% { box-shadow: 0 0 0 7px rgba(0, 91, 255, 0.18); }
  50% { box-shadow: 0 0 0 18px rgba(0, 91, 255, 0); }
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--accent-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 740px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.request {
  background: linear-gradient(135deg, var(--ink) 0%, #003fb8 100%);
  color: var(--white);
  padding-block: 78px;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 74px;
}

.request-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 27px;
  color: #a0a6af;
  line-height: 1.7;
}

.form-shell {
  min-height: 386px;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  padding: 29px;
  background: rgba(0, 41, 139, 0.84);
}

.request-form {
  display: grid;
  gap: 13px;
}

.request-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #3768bd;
  border-radius: 10px;
  padding: 14px 15px;
  background: var(--ink);
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #858b95;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
}

.submit-button {
  width: 100%;
}

.request-form small {
  color: #737985;
  font-size: 11px;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  border: 1px solid rgba(255, 115, 115, 0.35);
  border-radius: 9px;
  padding: 10px 12px;
  background: rgba(150, 30, 30, 0.12);
  color: #ffb7b7;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.form-error[hidden] {
  display: none;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-success {
  min-height: 326px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--market-gradient);
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
}

.form-success h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.form-success p {
  color: #9ea4ae;
}

.text-button {
  border: 0;
  padding: 4px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 16, 70, 0.84);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal.is-open {
  opacity: 1;
}

.lead-modal__dialog {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  max-height: calc(100dvh - 48px);
  grid-template-columns: 0.9fr 1.1fr;
  overflow: auto;
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink) 0%, #003fb8 100%);
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 18, 78, 0.56);
  transform: translateY(14px) scale(0.985);
  transition: transform 180ms ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 31, 111, 0.76);
  color: var(--white);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:focus-visible {
  outline: 3px solid rgba(0, 91, 255, 0.45);
  outline-offset: 3px;
}

.lead-modal__intro {
  align-self: center;
  padding: 42px;
}

.lead-modal__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.06;
}

.lead-modal__intro > p:not(.eyebrow) {
  margin-bottom: 0;
  color: #b7bdd2;
  font-size: 15px;
  line-height: 1.7;
}

.lead-modal__form-shell {
  width: 100%;
  min-height: 0;
  border: 0;
  border-left: 1px solid var(--dark-line);
  border-radius: 0;
  padding: 54px 34px 36px;
  background: rgba(0, 41, 139, 0.68);
}

.lead-modal .form-success {
  min-height: 300px;
}

.lead-modal .text-button {
  color: #8fb1ff;
}

.site-footer {
  background: #001342;
  color: #959ba5;
  font-size: 13px;
}

.footer-inner {
  min-height: 76px;
}

.footer-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-messenger {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, transform 180ms ease;
}

.footer-messenger:hover {
  border-color: rgba(143, 177, 255, 0.72);
  transform: translateY(-2px);
}

.footer-messenger img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 960px) {
  .delivery-grid,
  .request-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-media {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) {
    border-left: 1px solid var(--dark-line);
  }

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

  .seller-services-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seller-services-heading > p {
    max-width: 620px;
  }

  .seller-service-card,
  .seller-service-card:first-child,
  .seller-service-card:nth-child(2),
  .seller-service-card:nth-child(6),
  .seller-service-card:nth-child(7) {
    grid-column: span 6;
  }

  .gallery-card:last-child,
  .advantage-card:last-child {
    grid-column: 1 / -1;
  }

  .advantage-card:last-child {
    min-height: auto;
  }

  .delivery-grid {
    gap: 32px;
  }

  .radius-map {
    width: min(420px, 100%);
  }

  .request-grid {
    gap: 42px;
  }

  .form-shell {
    width: min(540px, 100%);
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: calc(100% - 36px);
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    padding-block: 0;
  }

  .hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(0, 20, 84, 0.96) 0%, rgba(0, 38, 132, 0.86) 62%, rgba(0, 91, 255, 0.5) 100%),
      linear-gradient(0deg, rgba(0, 20, 84, 0.76), transparent 52%);
    content: "";
  }

  .hero-grid {
    display: flex;
    min-height: max(610px, calc(100svh - 64px));
  }

  .hero-copy {
    padding-block: 48px;
  }

  h1 {
    font-size: clamp(37px, 10.5vw, 46px);
    hyphens: auto;
  }

  .hero-lead {
    color: #e5e7eb;
    font-size: 16px;
  }

  .hero-media {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero .button-outline {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 31, 111, 0.62);
    color: var(--white);
    backdrop-filter: blur(8px);
  }

  .button-row .button {
    width: 100%;
  }

  .stats-grid,
  .process-grid,
  .gallery,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .seller-services-heading {
    margin-bottom: 32px;
  }

  .seller-services-grid {
    grid-template-columns: 1fr;
  }

  .seller-service-card,
  .seller-service-card:first-child,
  .seller-service-card:nth-child(2),
  .seller-service-card:nth-child(6),
  .seller-service-card:nth-child(7) {
    grid-column: auto;
  }

  .seller-service-body {
    min-height: 0;
    padding: 21px 20px 23px;
  }

  .seller-services-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-services-cta .button {
    width: 100%;
  }

  .stat {
    border: 0;
    border-bottom: 1px solid var(--dark-line);
    padding: 26px 18px;
  }

  .stat:first-child,
  .stat:nth-child(3) {
    border-left: 0;
  }

  .hero-marketplaces {
    gap: 9px;
    margin-top: 18px;
  }

  .section,
  .request {
    padding-block: 60px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 48px 1fr;
  }

  .gallery-card:last-child,
  .advantage-card:last-child {
    grid-column: auto;
  }

  .radius-map {
    min-height: 300px;
  }

  .radius-ring.outer {
    width: 280px;
  }

  .radius-ring.inner {
    width: 170px;
  }

  .form-shell {
    min-height: 0;
    padding: 20px;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal__dialog {
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .lead-modal__intro {
    padding: 30px 22px 18px;
  }

  .lead-modal__intro h2 {
    max-width: calc(100% - 28px);
    margin-bottom: 12px;
    font-size: 32px;
  }

  .lead-modal__form-shell {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
    padding: 22px;
  }

  .lead-modal .form-success {
    min-height: 250px;
  }

  .footer-inner {
    min-height: 88px;
  }

  .footer-brand {
    max-width: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
