:root {
  --ink: #070a12;
  --ink-soft: #202636;
  --muted: #687084;
  --line: rgba(7, 10, 18, 0.1);
  --paper: #f5f6f8;
  --white: #ffffff;
  --mint: #635bff;
  --mint-dark: #4f46e5;
  --coral: #7c3aed;
  --gold: #d8defa;
  --blue: #2563eb;
  --shadow: 0 24px 80px rgba(7, 10, 18, 0.1);
  --radius: 12px;
  --section: clamp(78px, 9vw, 136px);
  color-scheme: light;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

.scroll-progress__bar {
  width: 100%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #2563eb 0%, #635bff 58%, #7c3aed 100%);
  box-shadow:
    0 0 14px rgba(37, 99, 235, 0.5),
    0 0 26px rgba(99, 91, 255, 0.22);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress__bar {
    animation: lewebsiteScrollProgress linear both;
    animation-timeline: scroll(root block);
  }

  @keyframes lewebsiteScrollProgress {
    from {
      transform: scaleX(0);
    }

    to {
      transform: scaleX(1);
    }
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(99, 91, 255, 0.2);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 250, 249, 0.88);
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand span {
  white-space: nowrap;
}

.brand-logo {
  width: clamp(150px, 15vw, 184px);
  height: auto;
  max-height: 47px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: rgba(16, 24, 32, 0.76);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links .nav-cta[aria-current="page"] {
  color: var(--white);
}

.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0 72px;
  background:
    linear-gradient(90deg, rgba(248, 250, 249, 0.98) 0%, rgba(248, 250, 249, 0.89) 44%, rgba(248, 250, 249, 0.62) 100%),
    radial-gradient(circle at 78% 26%, rgba(99, 91, 255, 0.12), transparent 31%),
    radial-gradient(circle at 90% 82%, rgba(124, 58, 237, 0.1), transparent 34%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.55rem, 3.4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 850;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
}

.hero .home-hero-title {
  max-width: min(760px, 100%);
  font-size: clamp(3rem, 6.1vw, 5.65rem);
  line-height: 0.96;
}

.trust-line {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 820;
  font-size: 1.04rem;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #182532;
  box-shadow: 0 22px 48px rgba(16, 24, 32, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(99, 91, 255, 0.32);
}

.hero-proof {
  margin: clamp(38px, 6vw, 74px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  gap: 12px;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.63);
  backdrop-filter: blur(12px);
}

.hero-proof dt {
  margin: 0 0 4px;
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-proof .proof-stat-card {
  border-color: rgba(99, 91, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(7, 10, 18, 0.96), rgba(48, 42, 118, 0.94)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(7, 10, 18, 0.18);
}

.proof-stat-card dt {
  color: var(--white);
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.proof-stat-card dd {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, black 42%, black 100%);
}

.site-preview {
  position: absolute;
  border: 1px solid rgba(16, 24, 32, 0.13);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-main {
  width: min(540px, 43vw);
  aspect-ratio: 1.28;
  right: max(26px, 6vw);
  top: 18%;
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(-2deg);
}

.preview-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.09);
  background: rgba(255, 255, 255, 0.72);
}

.preview-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.preview-bar span:nth-child(2) {
  background: var(--gold);
}

.preview-bar span:nth-child(3) {
  background: var(--mint);
}

.preview-shell {
  padding: 26px;
}

.preview-hero {
  height: 118px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(99, 91, 255, 0.78)),
    linear-gradient(90deg, var(--mint), var(--coral));
}

.preview-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 12px;
}

.preview-row span,
.preview-columns span {
  display: block;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(16, 24, 32, 0.08);
}

.preview-columns {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-columns span {
  height: 72px;
}

.preview-mobile {
  width: min(190px, 18vw);
  aspect-ratio: 0.52;
  right: max(14px, 4vw);
  bottom: 13%;
  border-radius: 24px;
  padding: 22px 16px;
  transform: rotate(4deg);
}

.mobile-notch {
  width: 54px;
  height: 7px;
  border-radius: 99px;
  background: rgba(16, 24, 32, 0.22);
  margin: 0 auto 24px;
}

.preview-mobile span {
  display: block;
  height: 54px;
  margin-top: 12px;
  border-radius: var(--radius);
  background: rgba(99, 91, 255, 0.12);
}

.preview-mobile span:nth-child(3) {
  background: rgba(124, 58, 237, 0.12);
}

.preview-mobile span:nth-child(4) {
  background: var(--ink);
}

.signal {
  position: absolute;
  right: clamp(250px, 31vw, 470px);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(16, 24, 32, 0.11);
  backdrop-filter: blur(16px);
}

.signal-one {
  top: 27%;
}

.signal-two {
  top: 55%;
  right: clamp(330px, 40vw, 610px);
}

.signal-three {
  bottom: 19%;
}

.trust-strip {
  overflow: hidden;
  contain: paint;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
  white-space: nowrap;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.marquee span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 890;
}

.section-copy {
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.section-copy p {
  margin: 0;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-subtitle {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 16vw, 190px) 0 clamp(56px, 8vw, 96px);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.service-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.56fr);
  align-items: end;
}

.page-title {
  margin: 0;
  max-width: 940px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
}

.page-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.service-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    var(--white);
  box-shadow: 0 18px 55px rgba(16, 24, 32, 0.1);
}

.service-panel strong {
  display: block;
  font-size: 1.18rem;
}

.service-panel p {
  margin: 10px 0 18px;
  color: var(--ink-soft);
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
}

.mini-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.trust-compact-section {
  padding-top: calc(var(--section) * 0.72);
  padding-bottom: calc(var(--section) * 0.72);
  border-block: 1px solid var(--line);
}

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

.trust-compact-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.88)),
    var(--white);
  box-shadow: 0 18px 48px rgba(7, 10, 18, 0.065);
}

.trust-compact-grid span {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 920;
}

.trust-compact-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.trust-compact-grid p {
  margin: 0;
  color: var(--muted);
}

.benefit-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 42px rgba(16, 24, 32, 0.055);
}

.benefit-card span {
  color: var(--coral);
  font-weight: 900;
}

.benefit-card h3 {
  margin: 16px 0 10px;
  font-size: 1.24rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.split-band {
  border-top: 1px solid var(--line);
}

.stack-list {
  display: grid;
  gap: 12px;
}

.stack-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.stack-list strong,
.stack-list span {
  display: block;
}

.stack-list span {
  margin-top: 6px;
  color: var(--muted);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

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

.offer-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 48px rgba(16, 24, 32, 0.06);
}

.offer-featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.2);
  border-color: rgba(255, 255, 255, 0.16);
}

.badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mint-dark);
  font-weight: 850;
  font-size: 0.86rem;
}

.offer-featured .offer-kicker {
  color: var(--mint);
}

.offer-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.04;
}

.offer-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.04;
}

.offer-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.offer-featured p,
.offer-featured .check-list,
.offer-featured .text-link {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.84);
}

.text-link {
  margin-top: auto;
  width: fit-content;
  color: var(--ink);
  font-weight: 850;
  border-bottom: 2px solid var(--mint);
  padding-bottom: 4px;
}

.price {
  margin: 18px 0 0;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--ink);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 750;
}

.offer-featured .price {
  color: var(--white);
}

.offer-featured .price span {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.single-offer-section {
  border-top: 1px solid var(--line);
}

.single-offer-card {
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(16, 24, 32, 0.14);
}

.single-offer-head {
  padding: clamp(26px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(32, 38, 54, 0.94)),
    var(--ink);
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.single-offer-head .offer-kicker {
  color: var(--mint);
}

.single-offer-head h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.35rem);
  line-height: 0.98;
}

.single-price {
  margin: 24px 0 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.86;
  font-weight: 940;
}

.single-price span {
  display: inline-block;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.price-tax-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  font-weight: 820;
}

.single-baseline {
  margin: 20px 0 0;
  width: fit-content;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(99, 91, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.single-promise {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.single-offer-body {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.54fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(24px, 5vw, 48px);
}

.single-offer-body h4 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.included-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(99, 91, 255, 0.12);
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.offer-included-showcase {
  display: grid;
  gap: 22px;
}

.offer-included-heading {
  max-width: 720px;
}

.offer-included-heading > span {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-included-heading h4 {
  margin: 18px 0 0;
}

.offer-included-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.included-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.included-feature {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 251, 0.86)),
    var(--white);
  box-shadow: 0 14px 36px rgba(7, 10, 18, 0.055);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.included-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 91, 255, 0.22);
  box-shadow: 0 22px 54px rgba(7, 10, 18, 0.09);
}

.included-feature > span {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.included-feature h5 {
  margin: 18px 0 12px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.included-feature ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-feature li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.included-feature li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(99, 91, 255, 0.1);
}

.single-offer-aside {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  align-self: start;
}

.single-offer-aside strong {
  display: block;
  font-size: 1.38rem;
  line-height: 1.05;
}

.single-offer-aside p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.commitment-note {
  padding: 14px;
  border-left: 4px solid var(--mint);
  background: var(--white);
  font-weight: 720;
}

.single-offer-aside .hero-actions {
  margin-top: 22px;
}

.single-offer-details {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 18px;
}

.mini-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.mini-panel h3,
.offer-faq h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.mini-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(99, 91, 255, 0.11);
  color: var(--mint-dark);
  font-weight: 850;
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink-soft);
}

.steps-list li::before {
  content: counter(steps);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
}

.offer-faq {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.offer-faq .faq-list {
  margin-top: 18px;
}

.taxi-vtc-hero {
  position: relative;
}

.taxi-vtc-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(420px, 38vw);
  height: 1px;
  background: var(--mint);
}

.transport-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.transport-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(16, 24, 32, 0.055);
}

.transport-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.transport-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.booking-copy .compact-list {
  margin-top: 30px;
}

.booking-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.booking-feature-grid article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 251, 0.9)),
    var(--white);
  box-shadow: 0 14px 38px rgba(7, 10, 18, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.booking-feature-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow: 0 22px 54px rgba(7, 10, 18, 0.1);
}

.booking-feature-grid span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
}

.booking-feature-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.04rem;
}

.booking-feature-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-mockup {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.97), rgba(32, 38, 54, 0.92)),
    var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.booking-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.44;
}

.booking-card {
  width: min(330px, calc(100% - 42px));
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.booking-card span,
.booking-card strong,
.booking-card i {
  display: block;
}

.booking-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.12);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.booking-card strong {
  margin: 26px 0 18px;
  font-size: 1.65rem;
  line-height: 1.04;
}

.booking-card i {
  min-height: 46px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-style: normal;
  background: var(--white);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-card button {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.maps-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.08);
}

.maps-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.maps-panel p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.maps-checks {
  display: grid;
  gap: 12px;
}

.maps-checks span {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 760;
}

.maps-checks span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

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

.useful-page {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.useful-page span {
  color: var(--coral);
  font-weight: 900;
}

.useful-page h3 {
  margin: 16px 0 10px;
  font-size: 1.24rem;
}

.useful-page p {
  margin: 0;
  color: var(--muted);
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journey-step {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  position: relative;
}

.journey-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.journey-step h3 {
  margin: 22px 0 10px;
  font-size: 1.16rem;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
}

.recommended-section {
  padding-top: 0;
}

.recommended-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.97), rgba(32, 38, 54, 0.92)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.recommended-card .eyebrow {
  color: var(--mint);
}

.recommended-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
}

.recommended-card p {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.recommended-aside {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.recommended-aside strong,
.recommended-aside span {
  display: block;
}

.recommended-aside span {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.68);
}

.taxi-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}

.taxi-visual {
  min-height: 620px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.97), rgba(22, 42, 52, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
}

.taxi-visual-modern {
  min-height: 640px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 18% 10%, rgba(99, 91, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(7, 10, 18, 0.98), rgba(26, 34, 52, 0.96)),
    var(--ink);
}

.taxi-visual-modern::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% 16%;
  height: 260px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.32), rgba(99, 91, 255, 0.12));
  filter: blur(44px);
  transform: rotate(-8deg);
}

.local-search-card,
.local-site-card,
.contact-action-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.local-search-card {
  width: min(360px, 100%);
  justify-self: start;
  padding: 20px;
}

.local-search-card span,
.contact-action-card span,
.mock-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(165, 180, 252, 0.16);
  color: #c7d2fe;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.local-search-card strong,
.contact-action-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.05;
}

.local-search-card p,
.contact-action-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.local-site-card {
  width: min(430px, 100%);
  justify-self: end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.92)),
    var(--white);
  color: var(--ink);
}

.mock-browser-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}

.mock-browser-bar span:first-child {
  background: #2563eb;
}

.mock-browser-bar span:nth-child(2) {
  background: #7c3aed;
}

.local-site-card .mock-kicker {
  margin: 0;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
}

.local-site-card strong {
  display: block;
  margin-top: 18px;
  max-width: 340px;
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  line-height: 1;
}

.mock-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.mock-service-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 820;
}

.contact-action-card {
  width: min(390px, calc(100% - 12px));
  justify-self: center;
  padding: 20px;
}

.contact-action-card button {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.taxi-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.route-card {
  position: absolute;
  left: 28px;
  top: 32px;
  right: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.route-line {
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-line span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
}

.route-line span:last-child {
  background: var(--coral);
}

.route-line i {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.route-card strong,
.route-card small {
  display: block;
}

.route-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.phone-preview {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 1;
  width: min(280px, calc(100% - 62px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.phone-speaker {
  width: 58px;
  height: 7px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.phone-screen {
  min-height: 388px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 24px;
  background: var(--paper);
}

.phone-tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.12);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-screen strong {
  margin-top: 58px;
  font-size: 1.8rem;
  line-height: 1;
}

.phone-screen p {
  margin: 12px 0 28px;
  color: var(--muted);
}

.phone-screen button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.phone-screen button + button {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.feature-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.feature span {
  color: var(--coral);
  font-weight: 900;
}

.feature h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

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

.conversion-section {
  border-top: 1px solid var(--line);
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.conversion-map {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.map-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.map-row span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 24, 32, 0.08);
  font-weight: 900;
}

.map-row strong,
.map-row small {
  display: block;
}

.map-row small {
  margin-top: 4px;
  color: var(--muted);
}

.map-row.active {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.09);
}

.map-row.active span {
  background: var(--mint);
  color: var(--white);
}

.conversion-points {
  display: grid;
  gap: 18px;
}

.point {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.point h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.point p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

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

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.timeline-item span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.proof-section {
  padding-top: 0;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.97), rgba(16, 24, 32, 0.9)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.proof-panel .eyebrow {
  color: var(--mint);
}

.proof-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

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

.proof-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

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

.proof-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.67);
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 24, 32, 0.08);
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "-";
  background: var(--mint);
  color: var(--white);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  max-width: 820px;
}

.contact-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--section) 0;
}

.standalone-contact {
  padding-top: clamp(132px, 16vw, 184px);
}

.contact-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-options a,
.contact-options span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 800;
}

.contact-options a {
  color: var(--mint-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(16, 24, 32, 0.1);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 820;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-proof {
  padding-top: clamp(54px, 7vw, 94px);
  padding-bottom: clamp(54px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
}

.proof-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.proof-links a {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.88)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.proof-links a:hover,
.proof-links a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 24px 62px rgba(7, 10, 18, 0.11);
}

.proof-links strong {
  font-size: 1.18rem;
  line-height: 1.05;
}

.proof-links span {
  color: var(--muted);
  font-weight: 700;
}

.reviews-section {
  border-bottom: 1px solid var(--line);
}

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

.review-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.9)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 24px 72px rgba(7, 10, 18, 0.12);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.review-score {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(99, 91, 255, 0.12);
  color: var(--accent);
  font-weight: 950;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.5;
  font-weight: 740;
}

.review-meta {
  margin-top: auto;
  display: grid;
  gap: 4px;
}

.review-meta strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.review-meta span {
  color: var(--muted);
  font-weight: 760;
}

.work-section {
  padding-top: clamp(58px, 7vw, 96px);
}

.work-grid {
  display: grid;
  gap: clamp(20px, 4vw, 42px);
}

.work-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  overflow: hidden;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(7, 10, 18, 0.1);
  scroll-margin-top: 112px;
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.14);
}

.work-media {
  display: block;
  min-height: 100%;
  background: #090d16;
  overflow: hidden;
}

.work-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.work-card:hover .work-media img {
  transform: scale(1.025);
}

.service-work-section {
  border-top: 1px solid var(--line);
}

.service-work-card {
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.68fr);
}

.service-work-card .work-media img {
  min-height: 320px;
}

.work-content {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
}

.work-content > span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-content h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.work-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.work-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-weight: 850;
  font-size: 0.88rem;
}

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

.example-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 48px rgba(16, 24, 32, 0.07);
}

.example-visual {
  aspect-ratio: 1.42;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.92), rgba(99, 91, 255, 0.66)),
    var(--ink);
  position: relative;
  overflow: hidden;
}

.example-visual::before,
.example-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.example-visual::before {
  top: 22px;
  height: 28px;
}

.example-visual::after {
  bottom: 20px;
  height: 72px;
  background: rgba(255, 255, 255, 0.18);
}

.example-visual.vtc {
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.95), rgba(51, 102, 255, 0.7)),
    var(--ink);
}

.example-visual.artisan {
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.94), rgba(124, 58, 237, 0.62)),
    var(--ink);
}

.example-card > span {
  color: var(--mint-dark);
  font-weight: 850;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.example-card h2 {
  margin: 12px 0 10px;
  font-size: 1.45rem;
}

.example-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 var(--section);
}

.final-cta-inner {
  padding: clamp(28px, 6vw, 64px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.97), rgba(32, 38, 54, 0.92)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta-inner .eyebrow {
  color: var(--mint);
}

.final-cta-inner h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.final-cta-inner .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta-inner .btn-primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(99, 91, 255, 0.18);
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 16vw, 184px) 0 var(--section);
}

.legal-content {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.legal-content h2 {
  margin: 28px 0 8px;
  font-size: 1.25rem;
}

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

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--mint-dark);
  font-weight: 800;
}

.client-page,
.client-dashboard {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(132px, 16vw, 184px) 0 var(--section);
}

.client-auth-card,
.client-panel,
.client-hero-card {
  border: 1px solid rgba(7, 10, 18, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 251, 0.88)),
    var(--white);
  box-shadow: 0 24px 72px rgba(7, 10, 18, 0.09);
}

.client-auth-card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
}

.client-auth-card h1,
.client-hero h1,
.client-panel h2 {
  margin: 0;
}

.client-auth-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.client-auth-card p,
.client-hero p,
.client-panel p {
  color: var(--muted);
}

.client-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.client-form-split {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.client-form-wide {
  grid-column: 1 / -1;
}

.client-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 820;
}

.client-form input,
.client-form select,
.client-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 10, 18, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.client-form input {
  min-height: 50px;
  padding: 0 14px;
}

.client-form select {
  min-height: 50px;
  padding: 0 14px;
}

.client-form textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.client-alert {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(99, 91, 255, 0.18);
  background: rgba(99, 91, 255, 0.1);
  color: var(--ink);
  font-weight: 780;
}

.client-auth-card .client-alert {
  width: 100%;
  margin: 22px 0 0;
}

.client-alert.is-error {
  border-color: rgba(255, 89, 94, 0.22);
  background: rgba(255, 89, 94, 0.1);
}

.client-alert.is-success {
  border-color: rgba(25, 195, 125, 0.22);
  background: rgba(25, 195, 125, 0.1);
}

.client-alert.is-info {
  border-color: rgba(99, 91, 255, 0.2);
  background: rgba(99, 91, 255, 0.1);
}

.client-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.client-hero h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.95;
}

.client-hero-card {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.client-hero-card span,
.client-hero-card small {
  color: var(--muted);
  font-weight: 800;
}

.client-hero-card strong {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.client-panel {
  padding: clamp(22px, 4vw, 34px);
}

.client-panel-wide {
  grid-column: 1 / -1;
}

.client-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.client-status-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.32fr);
  gap: 22px;
  align-items: stretch;
}

.client-progress-card {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border-radius: 18px;
  background: #090d16;
  color: var(--white);
}

.client-progress-card span,
.client-progress-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.client-progress-card strong {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.client-progress-bar {
  height: 12px;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
}

.client-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.project-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.project-step {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.project-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.08);
}

.project-step > span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: var(--muted);
}

.project-step.is-done,
.project-step.is-current {
  border-color: rgba(99, 91, 255, 0.24);
  background: rgba(99, 91, 255, 0.08);
}

.project-step.is-done > span,
.project-step.is-current > span {
  background: var(--ink);
}

.project-step.is-done > span::after {
  width: 14px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 0 3px 3px;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg) translate(1px, -1px);
}

.project-step.is-current > span::after {
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.project-step strong,
.project-step p,
.project-step small {
  display: block;
}

.project-step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.project-step small {
  margin-top: 10px;
  color: var(--accent);
  font-weight: 820;
}

.client-next-step {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #f7f8fb;
}

.client-next-step p {
  margin: 0;
}

.client-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.client-brief-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.82)),
    var(--white);
}

.client-brief-grid strong,
.client-brief-grid span {
  display: block;
}

.client-brief-grid strong {
  font-size: 1.05rem;
}

.client-brief-grid span {
  color: var(--muted);
  font-weight: 740;
}

.modification-current {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 18px;
  background: rgba(99, 91, 255, 0.08);
}

.modification-current strong,
.modification-current p,
.modification-current small {
  display: block;
}

.modification-current p {
  margin: 0;
}

.modification-current small,
.modification-row span {
  color: var(--muted);
  font-weight: 760;
}

.modification-status {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 880;
}

.modification-history {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.modification-history h3 {
  margin: 0;
  font-size: 1.05rem;
}

.modification-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.modification-row strong,
.modification-row span {
  display: block;
}

.modification-row em {
  font-style: normal;
  color: var(--accent);
  font-weight: 850;
  white-space: nowrap;
}

.client-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.client-kpis div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(99, 91, 255, 0.08);
}

.client-kpis strong,
.client-kpis span {
  display: block;
}

.client-kpis strong {
  font-size: 1.4rem;
}

.client-kpis span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.invoice-list,
.client-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.invoice-row:last-child {
  border-bottom: 0;
}

.invoice-row strong,
.invoice-row span {
  display: block;
}

.invoice-row span {
  color: var(--muted);
}

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

.invoice-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.client-list {
  padding: 0;
  list-style: none;
}

.client-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--ink-soft);
}

.client-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.client-dashboard-v2 {
  width: min(1220px, calc(100% - 40px));
}

.client-hero-v2 {
  margin-bottom: 18px;
}

.client-tabs {
  position: sticky;
  top: 74px;
  z-index: 12;
  display: flex;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(7, 10, 18, 0.08);
  backdrop-filter: blur(18px);
}

.client-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 880;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.client-tabs a:hover,
.client-tabs a:focus-visible,
.client-tabs a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #1b2550);
  transform: translateY(-1px);
}

.client-section-stack {
  display: grid;
  gap: 18px;
}

.client-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.client-progress-card.compact {
  margin: 18px 0;
  background: linear-gradient(135deg, #070a12, #18285d);
}

.onboarding-list,
.request-thread-list,
.document-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.onboarding-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.onboarding-item > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 10, 18, 0.08);
}

.onboarding-item > span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: var(--muted);
}

.onboarding-item.is-done {
  border-color: rgba(99, 91, 255, 0.22);
  background: rgba(99, 91, 255, 0.07);
}

.onboarding-item.is-done > span {
  background: var(--ink);
}

.onboarding-item.is-done > span::before {
  width: 15px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 0 3px 3px;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg) translate(1px, -1px);
}

.onboarding-item strong,
.onboarding-item small,
.request-thread strong,
.request-thread span {
  display: block;
}

.onboarding-item small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 720;
}

.request-thread {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 251, 0.82)),
    var(--white);
}

.request-thread-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.request-thread-head span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 760;
}

.request-thread-head em {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-style: normal;
  font-weight: 880;
  white-space: nowrap;
}

.thread-replies {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(7, 10, 18, 0.04);
}

.thread-replies p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.thread-replies strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.document-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(99, 91, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.84);
}

.document-card span {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.document-card strong {
  font-size: 1.1rem;
}

.document-card p {
  margin: 0;
}

.client-empty {
  padding: 20px;
  border: 1px dashed rgba(7, 10, 18, 0.16);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.footer {
  padding: 36px 0 26px;
  background: var(--paper);
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 28px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 100%;
  color: var(--ink-soft);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .preview-main {
    opacity: 0.45;
    width: min(480px, 64vw);
    right: -84px;
    top: 18%;
  }

  .preview-mobile,
  .signal {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(248, 250, 249, 0.99), rgba(248, 250, 249, 0.88)),
      radial-gradient(circle at 80% 20%, rgba(99, 91, 255, 0.12), transparent 36%),
      var(--paper);
  }

  .offer-grid,
  .benefit-grid,
  .trust-compact-grid,
  .example-grid,
  .proof-links,
  .reviews-grid,
  .service-hero,
  .work-card,
  .single-offer-body,
  .single-offer-details,
  .transport-included-grid,
  .booking-section,
  .maps-panel,
  .journey-flow,
  .recommended-card,
  .taxi-section,
  .conversion-layout,
  .proof-panel,
  .contact-inner,
  .client-hero,
  .client-status-head,
  .client-overview-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .project-timeline {
    grid-template-columns: 1fr;
  }

  .taxi-visual {
    min-height: 520px;
    order: 2;
  }

  .conversion-map {
    position: static;
  }
}

@media (max-width: 1340px) {
  .signal {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(calc(100% - 28px), 1180px);
  }

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

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 250, 249, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 54px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11.2vw, 4rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero .home-hero-title {
    font-size: clamp(2.5rem, 10.8vw, 3.6rem);
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-copy,
  .trust-line,
  .page-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .proof-stat-card {
    grid-column: 1 / -1;
  }

  .preview-main {
    display: none;
  }

  .section,
  .page-hero,
  .final-cta,
  .legal-page,
  .taxi-section,
  .contact-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 28px), 1180px);
  }

  .section-grid,
  .benefit-grid,
  .example-grid,
  .proof-links,
  .reviews-grid,
  .included-list,
  .included-feature-grid,
  .booking-feature-grid,
  .useful-pages-grid,
  .feature-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .benefit-card,
  .service-panel,
  .example-card,
  .review-card,
  .work-content,
  .single-offer-aside,
  .transport-card,
  .useful-page,
  .journey-step,
  .recommended-aside,
  .feature,
  .point,
  .timeline-item,
  .contact-form {
    padding: 20px;
  }

  .single-offer-head,
  .single-offer-body {
    padding: 22px;
  }

  .single-price {
    font-size: clamp(3rem, 16vw, 5.3rem);
  }

  .single-baseline {
    width: 100%;
  }

  .page-hero {
    padding-top: 118px;
    min-width: 0;
  }

  .page-hero > *,
  .service-hero > *,
  .order-hero > *,
  .section > *,
  .order-layout,
  .order-main,
  .order-card,
  .order-steps,
  .order-steps article,
  .order-hero .service-panel {
    min-width: 0;
    max-width: 100%;
  }

  .order-section {
    overflow: hidden;
  }

  .order-section .section-title,
  .order-section .section-subtitle,
  .order-steps h3,
  .order-steps p,
  .order-card h2,
  .order-card p,
  .order-inclusion-head strong,
  .order-inclusions li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-title {
    font-size: clamp(2.35rem, 12vw, 4.5rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .order-hero .page-title {
    font-size: clamp(2.08rem, 8.6vw, 3.1rem);
    line-height: 1.03;
  }

  .order-hero .page-lead,
  .order-hero .service-panel p,
  .order-hero .mini-list li {
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .legal-content {
    margin-top: 24px;
  }

  .client-page,
  .client-dashboard,
  .client-dashboard-v2 {
    width: min(100% - 28px, 1180px);
    padding-top: 118px;
  }

  .client-tabs {
    top: 76px;
    border-radius: 18px;
  }

  .client-tabs a {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.92rem;
  }

  .client-form-split,
  .client-kpis {
    grid-template-columns: 1fr;
  }

  .request-thread-head,
  .invoice-row {
    align-items: stretch;
    flex-direction: column;
  }

  .invoice-actions {
    flex-wrap: wrap;
  }

  .taxi-visual {
    min-height: 500px;
  }

  .taxi-visual-modern {
    min-height: auto;
    padding: 18px;
  }

  .local-site-card,
  .contact-action-card {
    justify-self: stretch;
    width: 100%;
    margin-left: 0;
  }

  .mock-service-grid {
    grid-template-columns: 1fr;
  }

  .booking-mockup {
    min-height: 430px;
  }

  .phone-preview {
    width: min(260px, calc(100% - 38px));
    bottom: 24px;
  }

  .work-media img {
    min-height: 0;
  }

  .work-media,
  .service-work-card .work-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .work-media img,
  .service-work-card .work-media img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: top center;
  }

  .route-card {
    left: 18px;
    right: 18px;
    top: 20px;
  }

  .timeline-item {
    grid-template-columns: 46px 1fr;
  }

  .timeline-item span {
    width: 46px;
    height: 46px;
  }

  summary {
    min-height: 64px;
    padding: 0 16px;
  }

  details p {
    padding: 0 16px 18px;
  }

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

  .footer-links {
    justify-content: flex-start;
    gap: 10px 14px;
  }
}

@media (max-width: 430px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero .home-hero-title {
    font-size: clamp(2.25rem, 10.2vw, 2.95rem);
  }

  .order-hero .page-title {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  .brand span {
    font-size: 0.98rem;
  }

  .site-header .brand-logo {
    width: 146px;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

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

/* Premium agency refresh */
:root {
  --ink: #070a12;
  --ink-soft: #202636;
  --muted: #687084;
  --line: rgba(7, 10, 18, 0.1);
  --paper: #f5f6f8;
  --white: #ffffff;
  --mint: #635bff;
  --mint-dark: #4f46e5;
  --coral: #7c3aed;
  --gold: #d8defa;
  --blue: #2563eb;
  --accent: #635bff;
  --accent-2: #7c3aed;
  --accent-soft: rgba(99, 91, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --shadow: 0 24px 80px rgba(7, 10, 18, 0.1);
  --shadow-soft: 0 14px 42px rgba(7, 10, 18, 0.07);
  --radius: 12px;
  --section: clamp(78px, 9vw, 136px);
}

body {
  background:
    linear-gradient(180deg, #fbfbfd 0%, var(--paper) 46%, #ffffff 100%);
}

.site-header {
  padding: 10px 0;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 10, 18, 0.08);
  box-shadow: 0 18px 50px rgba(7, 10, 18, 0.07);
}

.nav {
  min-height: 58px;
  padding: 0 8px;
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(99, 91, 255, 0.18));
}

.site-header .brand-logo {
  width: clamp(150px, 14vw, 178px);
}

.footer .brand-logo {
  width: clamp(160px, 18vw, 190px);
}

.brand span {
  font-weight: 900;
}

.nav-links {
  gap: clamp(12px, 1.8vw, 24px);
  color: rgba(7, 10, 18, 0.68);
}

.nav-links a:not(.nav-cta) {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links a:not(.nav-cta)::after {
  bottom: 0;
  background: var(--accent);
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 10, 18, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #111827;
  box-shadow: 0 20px 46px rgba(7, 10, 18, 0.24);
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 10, 18, 0.12);
  box-shadow: 0 10px 24px rgba(7, 10, 18, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(99, 91, 255, 0.42);
  color: var(--accent);
}

.hero {
  min-height: 94svh;
  background:
    linear-gradient(90deg, rgba(251, 251, 253, 0.98) 0%, rgba(251, 251, 253, 0.92) 50%, rgba(251, 251, 253, 0.74) 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px 5vw auto auto;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border: 1px solid rgba(99, 91, 255, 0.12);
  border-radius: 50%;
  opacity: 0.8;
  animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.hero h1,
.page-title,
.section-title {
  color: var(--ink);
  letter-spacing: 0;
}

.hero-copy,
.page-lead,
.section-subtitle,
.section-copy {
  color: var(--ink-soft);
}

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

.hero-proof div,
.service-panel,
.benefit-card,
.offer-card,
.single-offer-card,
.mini-panel,
.offer-faq,
.transport-card,
.maps-panel,
.useful-page,
.journey-step,
.contact-form,
.example-card,
.legal-content,
details,
.stack-list div,
.feature,
.point,
.timeline-item {
  border-color: rgba(7, 10, 18, 0.09);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.benefit-card,
.offer-card,
.mini-panel,
.transport-card,
.useful-page,
.journey-step,
.example-card,
.feature,
.point,
.timeline-item,
.stack-list div,
details {
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease,
    background 190ms ease;
}

.benefit-card:hover,
.offer-card:hover,
.mini-panel:hover,
.transport-card:hover,
.useful-page:hover,
.journey-step:hover,
.example-card:hover,
.feature:hover,
.point:hover,
.timeline-item:hover,
.stack-list div:hover,
details:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  background: var(--white);
  box-shadow: 0 24px 62px rgba(7, 10, 18, 0.11);
}

.scene-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(7, 10, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 10, 18, 0.045) 1px, transparent 1px);
}

.site-preview {
  border-color: rgba(7, 10, 18, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 90px rgba(7, 10, 18, 0.14);
}

.preview-main {
  border-radius: 22px;
  transform: rotate(-1.5deg);
  animation: previewFloat 7s ease-in-out infinite;
}

@keyframes previewFloat {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0);
  }

  50% {
    transform: rotate(-1.5deg) translateY(-10px);
  }
}

.preview-bar span {
  background: #d6dae6;
}

.preview-bar span:nth-child(2) {
  background: #bfc7d9;
}

.preview-bar span:nth-child(3) {
  background: var(--accent);
}

.preview-hero {
  background: #111827;
  position: relative;
  overflow: hidden;
}

.preview-hero::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.82);
}

.preview-row span,
.preview-columns span,
.preview-mobile span {
  background: rgba(7, 10, 18, 0.075);
}

.preview-mobile span:nth-child(3) {
  background: rgba(99, 91, 255, 0.12);
}

.signal {
  border-color: rgba(99, 91, 255, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(7, 10, 18, 0.09);
}

.trust-strip {
  background: #090d16;
}

.marquee span::after,
.mini-list li::before,
.maps-checks span::before {
  background: var(--accent);
}

.page-hero,
.offers,
.single-offer-section,
.split-band,
.booking-section,
.method,
.faq,
.contact-section {
  border-color: rgba(7, 10, 18, 0.08);
}

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

.badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.offer-kicker,
.single-offer-head .offer-kicker,
.proof-panel .eyebrow,
.recommended-card .eyebrow,
.final-cta-inner .eyebrow {
  color: #a5b4fc;
}

.benefit-card span,
.feature span,
.useful-page span {
  color: var(--accent);
}

.check-list li::before,
.included-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-2)) border-box;
  border: 5px solid transparent;
  box-shadow: none;
}

.text-link {
  border-color: var(--accent);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.single-offer-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.14);
}

.single-offer-head,
.proof-panel,
.recommended-card,
.final-cta-inner {
  background: #090d16;
}

.single-price {
  color: var(--white);
}

.single-baseline {
  background: rgba(99, 91, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.single-offer-aside,
.commitment-note {
  background: #f7f8fb;
}

.commitment-note {
  border-left-color: var(--accent);
}

.chip-list span,
.booking-card span {
  background: var(--accent-soft);
  color: var(--accent);
}

.booking-mockup,
.taxi-visual {
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card,
.phone-screen {
  background: var(--white);
}

.booking-card button,
.phone-screen button,
.timeline-item span,
.journey-step span,
.map-row.active span {
  background: var(--ink);
}

.maps-panel {
  background: var(--white);
}

.maps-checks span {
  background: #f7f8fb;
}

.example-visual,
.example-visual.vtc,
.example-visual.artisan {
  background: #090d16;
}

.example-visual::before {
  background: rgba(255, 255, 255, 0.9);
}

.example-visual::after {
  background: rgba(99, 91, 255, 0.26);
}

.final-cta-inner .btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.08);
}

.final-cta-inner .btn-primary:hover,
.final-cta-inner .btn-primary:focus-visible {
  background: #eef1ff;
  color: var(--ink);
}

.final-cta-inner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

summary {
  transition: color 180ms ease;
}

summary::after {
  background: #eef1ff;
  color: var(--accent);
  transition:
    transform 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

details[open] summary::after {
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

details::details-content {
  block-size: 0;
  overflow: hidden;
  transition:
    block-size 240ms ease,
    content-visibility 240ms ease allow-discrete;
}

details[open]::details-content {
  block-size: auto;
}

input,
select,
textarea {
  border-color: rgba(7, 10, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

.contact-options a {
  color: var(--accent);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(132px, 15vw, 184px) 0 clamp(64px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(251, 251, 253, 0.98), rgba(245, 246, 248, 0.94)),
    repeating-linear-gradient(90deg, rgba(7, 10, 18, 0.035) 0 1px, transparent 1px 96px);
  border-bottom: 1px solid rgba(7, 10, 18, 0.08);
}

.contact-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.contact-actions {
  flex-wrap: wrap;
}

.contact-hero-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #090d16;
  color: var(--white);
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.18);
}

.contact-hero-card h2 {
  margin: 22px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero-card .mini-list {
  margin-bottom: 24px;
}

.contact-hero-card .mini-list li {
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero-card .text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

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

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-side > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 660px;
}

.contact-cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.contact-process {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-process div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-process span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-process strong {
  font-size: 1rem;
}

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

.contact-form-pro {
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
}

.form-header {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 10, 18, 0.08);
}

.form-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.form-header p {
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.form-row-wide {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.15rem;
  color: #b42318;
  font-size: 0.83rem;
  font-weight: 760;
}

input.has-error,
select.has-error,
textarea.has-error {
  border-color: rgba(180, 35, 24, 0.72);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.09);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 820;
}

.form-status.is-success {
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.09);
  color: #0f766e;
}

.form-status.is-error {
  border: 1px solid rgba(180, 35, 24, 0.22);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.reassurance-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease,
    background 190ms ease;
}

.reassurance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  background: var(--white);
  box-shadow: 0 24px 62px rgba(7, 10, 18, 0.11);
}

.reassurance-card span {
  min-width: 48px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.reassurance-card h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.reassurance-card p {
  margin: 0;
  color: var(--muted);
}

.order-hero {
  align-items: center;
}

.order-hero .service-panel {
  background:
    linear-gradient(145deg, rgba(9, 13, 22, 0.98), rgba(20, 26, 42, 0.96)),
    #090d16;
  color: var(--white);
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.18);
}

.order-hero .service-panel p,
.order-hero .mini-list li {
  color: rgba(255, 255, 255, 0.78);
}

.order-section {
  position: relative;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.order-main {
  display: grid;
  gap: 26px;
}

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

.order-steps article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(7, 10, 18, 0.09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.order-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 24px 62px rgba(7, 10, 18, 0.11);
}

.order-steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
}

.order-steps h3 {
  margin: 18px 0 8px;
  font-size: 1.06rem;
}

.order-steps p {
  margin: 0;
  color: var(--muted);
}

.order-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.8vw, 34px);
  border: 1px solid rgba(7, 10, 18, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 0.94)),
    var(--white);
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.14);
}

.order-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.order-card .offer-badges {
  margin: 0;
}

.order-card .badge-light {
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  border-color: rgba(99, 91, 255, 0.16);
}

.order-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
  font-weight: 950;
}

.order-price span {
  display: inline-block;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 850;
}

.order-tax-note {
  color: var(--muted);
}

.order-inclusion-block {
  display: grid;
  gap: 13px;
  margin: 4px 0 0;
  padding: 15px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 251, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.order-inclusion-head {
  display: grid;
  gap: 7px;
  padding: 0 2px 2px;
}

.order-inclusion-head span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-inclusion-head strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.order-inclusions {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-inclusions li {
  position: relative;
  min-height: 44px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(7, 10, 18, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-weight: 780;
  line-height: 1.35;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.order-inclusions li:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 91, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(7, 10, 18, 0.06);
}

.order-inclusions li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(99, 91, 255, 0.18);
}

.order-inclusions li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.notice-card {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(24, 144, 255, 0.06));
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.notice-card strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.notice-card p {
  margin: 0;
}

.order-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  font-weight: 720;
}

.order-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.order-check a {
  color: var(--accent);
  font-weight: 880;
}

.order-card .btn {
  width: 100%;
}

.order-submit {
  margin-top: 2px;
}

.contact-final .hero-actions {
  justify-content: center;
}

.js .reveal {
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

:focus-visible {
  outline-color: rgba(99, 91, 255, 0.45);
}

@media (max-width: 1020px) {
  .hero::before {
    opacity: 0.35;
    right: -18vw;
  }

  .preview-main {
    opacity: 0.28;
  }

  .contact-hero-inner,
  .order-layout,
  .trust-compact-grid,
  .client-hero,
  .client-status-head,
  .client-grid,
  .reassurance-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    position: static;
  }

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

  .order-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 6px 0;
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    top: 76px;
    border-color: rgba(7, 10, 18, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 90px rgba(7, 10, 18, 0.16);
  }

  .nav-links a {
    border-radius: 10px;
  }

  .nav-links a:not(.nav-cta):hover {
    background: #f5f6fb;
    transform: none;
  }

  .hero {
    padding-top: 112px;
  }

  .contact-hero {
    padding-top: 118px;
  }

  .contact-hero-inner {
    width: min(calc(100% - 28px), 1180px);
  }

  .contact-actions .btn,
  .contact-cta-panel .btn,
  .order-card .btn,
  .contact-final .btn {
    width: 100%;
  }

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

  .client-kpis {
    grid-template-columns: 1fr;
  }

  .client-brief-grid {
    grid-template-columns: 1fr;
  }

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

  .project-timeline {
    grid-template-columns: 1fr;
  }

  .invoice-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-process div {
    grid-template-columns: 42px 1fr;
  }

  .contact-process span {
    width: 42px;
    height: 42px;
  }

  .order-card,
  .order-steps article {
    padding: 20px;
    border-radius: 18px;
  }

  .btn {
    min-height: 56px;
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-proof div,
  .single-offer-card,
  .proof-panel,
  .recommended-card,
  .final-cta-inner,
  .booking-mockup,
  .taxi-visual {
    border-radius: 16px;
  }

  .single-offer-head,
  .single-offer-body {
    padding: 24px;
  }

  .maps-panel,
  .recommended-card,
  .final-cta-inner {
    padding: 24px;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }
}

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

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

/* Premium interaction layer */
.cta-microcopy {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.cta-microcopy::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-2)) border-box;
  border: 5px solid transparent;
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.16);
}

.final-cta-inner .cta-microcopy {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-inner .cta-microcopy::before {
  background:
    linear-gradient(#090d16, #090d16) padding-box,
    linear-gradient(135deg, #ffffff, #a5b4fc) border-box;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.08);
}

.contact-cta-panel .cta-microcopy,
.contact-actions .cta-microcopy {
  flex-basis: 100%;
  margin-top: 2px;
}

.js .reveal-card {
  transform: translateY(24px) scale(0.985);
  filter: saturate(0.96);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-card.is-visible {
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

.benefit-card,
.review-card,
.work-card,
.service-work-card,
.feature,
.transport-card,
.included-feature,
.mini-panel,
.offer-faq,
.service-panel,
.trust-compact-grid article,
.proof-links a,
.reassurance-card,
.order-steps article,
.order-card,
.contact-process div,
.single-offer-card,
.example-card,
.journey-step,
.useful-page,
.client-panel,
.client-hero-card,
.stack-list div {
  will-change: transform;
}

.benefit-card:focus-within,
.review-card:focus-within,
.work-card:focus-within,
.service-work-card:focus-within,
.feature:focus-within,
.transport-card:focus-within,
.included-feature:focus-within,
.mini-panel:focus-within,
.offer-faq:focus-within,
.service-panel:focus-within,
.trust-compact-grid article:focus-within,
.proof-links a:focus-visible,
.reassurance-card:focus-within,
.order-steps article:focus-within,
.order-card:focus-within,
.contact-process div:focus-within,
.single-offer-card:focus-within,
.example-card:focus-within,
.journey-step:focus-within,
.useful-page:focus-within,
.client-panel:focus-within,
.client-hero-card:focus-within,
.stack-list div:focus-within {
  border-color: rgba(99, 91, 255, 0.34);
  box-shadow:
    0 24px 68px rgba(7, 10, 18, 0.12),
    0 0 0 4px rgba(99, 91, 255, 0.08);
}

.btn,
.nav-cta,
.text-link,
.invoice-actions a,
.support-widget__submit {
  outline-offset: 4px;
}

.btn:active,
.nav-cta:active,
.text-link:active,
.support-widget__button:active,
.support-widget__submit:active {
  transform: translateY(-1px) scale(0.99);
}

.nav-cta:focus-visible,
.text-link:focus-visible,
.invoice-actions a:focus-visible,
.support-widget__button:focus-visible,
.support-widget__submit:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.42);
  outline-offset: 4px;
}

.mini-list li,
.check-list li,
.included-feature li,
.included-list li,
.client-list li,
.order-inclusions li {
  min-width: 0;
}

.mini-list li,
.check-list li,
.included-feature li,
.included-list li,
.client-list li {
  align-items: start;
  gap: 12px;
  line-height: 1.45;
}

.mini-list li::before,
.client-list li::before,
.included-feature li::before {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(99, 91, 255, 0.16);
}

.mini-list li::after,
.client-list li::after,
.included-feature li::after {
  content: "";
  position: absolute;
}

.mini-list li,
.client-list li,
.included-feature li {
  position: relative;
}

.mini-list li::after,
.client-list li::after,
.included-feature li::after {
  left: 5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.check-list li::before,
.included-list li::before {
  box-shadow: 0 10px 22px rgba(99, 91, 255, 0.14);
}

@media (max-width: 760px) {
  .cta-microcopy {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .contact-cta-panel .cta-microcopy,
  .contact-actions .cta-microcopy {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-card,
  .js .reveal-card.is-visible {
    transform: none;
    filter: none;
    transition-delay: 0ms;
  }
}

.support-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: inherit;
}

.support-widget__button,
.support-widget__panel {
  border: 1px solid rgba(7, 10, 18, 0.1);
  box-shadow: 0 24px 70px rgba(7, 10, 18, 0.16);
  backdrop-filter: blur(18px);
}

.support-widget__button {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74) 34%, rgba(238, 242, 255, 0.88) 100%),
    var(--white);
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  position: relative;
}

.support-widget__button:hover,
.support-widget__button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow:
    0 30px 80px rgba(7, 10, 18, 0.2),
    0 0 0 7px rgba(99, 91, 255, 0.08);
}

.support-widget__button::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #19a974;
  box-shadow: 0 0 0 4px rgba(25, 169, 116, 0.12);
}

.support-widget__robot {
  width: 48px;
  height: 48px;
  display: block;
}

.support-widget__robot svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bot-shadow {
  fill: rgba(7, 10, 18, 0.13);
  filter: blur(1px);
}

.bot-antenna {
  fill: none;
  stroke: #070a12;
  stroke-width: 3.4;
  stroke-linecap: round;
}

.bot-dot,
.bot-spark {
  fill: url("#supportBotAccent");
}

.bot-head {
  fill: url("#supportBotShell");
  stroke: rgba(7, 10, 18, 0.16);
  stroke-width: 2;
}

.bot-face {
  fill: none;
  stroke: url("#supportBotAccent");
  stroke-width: 3.2;
  stroke-linecap: round;
}

.bot-eye {
  fill: #070a12;
}

.support-widget__button:hover .bot-head,
.support-widget__button:focus-visible .bot-head {
  stroke: rgba(99, 91, 255, 0.38);
}

.support-widget__button:hover .bot-spark,
.support-widget__button:focus-visible .bot-spark {
  transform-origin: 50px 20px;
  animation: supportSpark 760ms ease both;
}

@keyframes supportSpark {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  50% {
    transform: scale(1.16) rotate(8deg);
  }
}

.support-widget__panel {
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 0.96)),
    var(--white);
  transform-origin: right bottom;
  animation: supportPanelIn 180ms ease both;
}

@keyframes supportPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.support-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 18px;
  background: #090d16;
  color: var(--white);
}

.support-widget__head p {
  margin: 0 0 6px;
  color: #a5b4fc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-widget__head strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.15;
}

.support-widget__close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}

.support-widget__intro {
  margin: 0;
  padding: 16px 20px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.support-widget__hours {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 20px 0;
  padding: 10px 12px;
  border: 1px solid rgba(99, 91, 255, 0.14);
  border-radius: 14px;
  background: rgba(99, 91, 255, 0.07);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.35;
}

.support-widget__hours span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: #19c37d;
  box-shadow: 0 0 0 5px rgba(25, 195, 125, 0.12);
}

.support-widget__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 14px 20px 0;
}

.support-widget__quick button {
  min-height: 38px;
  border: 1px solid rgba(7, 10, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 880;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.support-widget__quick button:hover,
.support-widget__quick button:focus-visible,
.support-widget__quick button.is-active {
  border-color: rgba(99, 91, 255, 0.28);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 10, 18, 0.12);
}

.support-widget__conversation {
  display: grid;
  gap: 9px;
  max-height: 178px;
  overflow: auto;
  margin: 14px 20px 0;
  padding-right: 3px;
}

.support-widget__thread {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
}

.support-widget__thread strong,
.support-widget__thread span {
  display: block;
}

.support-widget__thread strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.support-widget__thread span {
  margin-top: 2px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 880;
}

.support-widget__thread p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.support-widget__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 20px 20px;
}

.support-widget__form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 850;
}

.support-widget__form input,
.support-widget__form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(7, 10, 18, 0.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}

.support-widget__form input {
  min-height: 46px;
  padding: 0 12px;
}

.support-widget__form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.support-widget__wide,
.support-widget__submit,
.support-widget__mail,
.support-widget__status {
  grid-column: 1 / -1;
}

.support-widget__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.support-widget__submit {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.support-widget__submit:hover,
.support-widget__submit:focus-visible {
  transform: translateY(-1px);
  background: #182532;
}

.support-widget__submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.support-widget__mail {
  width: fit-content;
  color: var(--mint-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.support-widget__status {
  padding: 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 820;
}

.support-widget__status.is-success {
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.09);
  color: #0f766e;
}

.support-widget__status.is-error {
  border: 1px solid rgba(180, 35, 24, 0.22);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}

@media (max-width: 560px) {
  .support-widget {
    right: 12px;
    bottom: 12px;
    left: auto;
    justify-items: end;
  }

  .support-widget__button {
    width: 58px;
    height: 58px;
  }

  .support-widget__panel {
    width: min(360px, calc(100vw - 24px));
  }

  .support-widget__robot {
    width: 44px;
    height: 44px;
  }

  .support-widget__form {
    grid-template-columns: 1fr;
  }

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

/* Legal pages styling */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.legal-page h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 20px 0 60px;
  font-weight: 700;
}

.legal-page h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin: 60px 0 28px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}

.legal-content {
  line-height: 1.8;
  color: var(--ink-soft);
}

.legal-content p {
  margin: 16px 0;
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 28px;
}

.legal-content li {
  margin: 12px 0;
  font-size: 15px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(7, 10, 18, 0.04);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.legal-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.legal-item:last-child {
  border-bottom: none;
}

.legal-item.full-width {
  grid-column: 1 / -1;
}

.legal-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-item p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}

.legal-item small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.legal-item a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.legal-item a:hover {
  color: var(--mint-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 60px 16px;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-item {
    padding: 14px 0;
  }

  .legal-page h2 {
    margin: 48px 0 24px;
  }
}

/* Mobile optimization: 2-column layout for card grids */
@media (max-width: 768px) {
  .proof-links,
  .reviews-grid,
  .trust-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small screens: revert to 1 column */
@media (max-width: 480px) {
  .proof-links,
  .reviews-grid,
  .trust-compact-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium hover/focus pass */
:where(a, button, input, select, textarea, summary, [tabindex]) {
  -webkit-tap-highlight-color: rgba(99, 91, 255, 0.14);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.42);
  outline-offset: 4px;
}

:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .support-widget__mail, .order-submit) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .support-widget__mail, .order-submit)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .support-widget__mail, .order-submit):hover::before,
:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .support-widget__mail, .order-submit):focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .order-submit):hover,
:where(.btn, .nav-cta, .invoice-actions a, .support-widget__submit, .order-submit):focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 22px 52px rgba(7, 10, 18, 0.18),
    0 0 0 1px rgba(99, 91, 255, 0.08);
}

:where(.btn-secondary, .support-widget__mail):hover,
:where(.btn-secondary, .support-widget__mail):focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(99, 91, 255, 0.34);
  color: var(--accent);
  box-shadow:
    0 18px 42px rgba(7, 10, 18, 0.1),
    0 0 0 4px rgba(99, 91, 255, 0.06);
}

:where(.nav-links a:not(.nav-cta), .footer-links a, .legal-item a, .text-link) {
  border-radius: 8px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

:where(.nav-links a:not(.nav-cta), .footer-links a, .legal-item a, .text-link):hover,
:where(.nav-links a:not(.nav-cta), .footer-links a, .legal-item a, .text-link):focus-visible {
  color: var(--accent);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.legal-item a:focus-visible,
.text-link:focus-visible {
  background: rgba(99, 91, 255, 0.08);
  box-shadow: 0 0 0 8px rgba(99, 91, 255, 0.08);
}

:where(
  .benefit-card,
  .review-card,
  .work-card,
  .service-work-card,
  .feature,
  .transport-card,
  .included-feature,
  .mini-panel,
  .offer-faq,
  .service-panel,
  .trust-compact-grid article,
  .proof-links a,
  .reassurance-card,
  .order-steps article,
  .order-card,
  .contact-process div,
  .single-offer-card,
  .example-card,
  .journey-step,
  .useful-page,
  .client-panel,
  .client-hero-card,
  .document-card,
  .request-thread,
  .onboarding-item,
  .legal-card,
  .stack-list div
) {
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

:where(
  .benefit-card,
  .review-card,
  .work-card,
  .service-work-card,
  .feature,
  .transport-card,
  .included-feature,
  .mini-panel,
  .offer-faq,
  .service-panel,
  .trust-compact-grid article,
  .proof-links a,
  .reassurance-card,
  .order-steps article,
  .contact-process div,
  .single-offer-card,
  .example-card,
  .journey-step,
  .useful-page,
  .client-panel,
  .document-card,
  .request-thread,
  .onboarding-item,
  .stack-list div
):hover,
:where(
  .benefit-card,
  .review-card,
  .work-card,
  .service-work-card,
  .feature,
  .transport-card,
  .included-feature,
  .mini-panel,
  .offer-faq,
  .service-panel,
  .trust-compact-grid article,
  .proof-links a,
  .reassurance-card,
  .order-steps article,
  .contact-process div,
  .single-offer-card,
  .example-card,
  .journey-step,
  .useful-page,
  .client-panel,
  .document-card,
  .request-thread,
  .onboarding-item,
  .stack-list div
):focus-within {
  transform: translateY(-5px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow:
    0 30px 78px rgba(7, 10, 18, 0.12),
    0 0 0 1px rgba(99, 91, 255, 0.07);
  filter: saturate(1.03);
}

.work-card:hover .work-media img,
.service-work-card:hover .work-media img,
.example-card:hover img,
.example-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

:where(input, select, textarea) {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

:where(input, select, textarea):hover {
  border-color: rgba(99, 91, 255, 0.24);
  background: rgba(255, 255, 255, 0.98);
}

:where(input, select, textarea):focus,
:where(input, select, textarea):focus-visible {
  border-color: rgba(99, 91, 255, 0.62);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(99, 91, 255, 0.1),
    0 14px 34px rgba(7, 10, 18, 0.08);
}

:where(.order-check, .support-widget__form label, .client-form label, .contact-form label) {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.order-check:hover,
.order-check:focus-within {
  border-color: rgba(99, 91, 255, 0.26);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 10, 18, 0.07);
}

:where(.client-form label, .contact-form label, .support-widget__form label):focus-within {
  color: var(--accent);
}

summary {
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

details:hover,
details:focus-within {
  border-color: rgba(99, 91, 255, 0.2);
  box-shadow: 0 22px 58px rgba(7, 10, 18, 0.09);
}

summary:hover,
summary:focus-visible {
  color: var(--accent);
  background: rgba(99, 91, 255, 0.045);
}

.client-tabs a:hover,
.client-tabs a:focus-visible {
  box-shadow:
    0 14px 32px rgba(7, 10, 18, 0.14),
    0 0 0 4px rgba(99, 91, 255, 0.08);
}

.support-widget__button {
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.support-widget__button:hover,
.support-widget__button:focus-visible {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.9);
  filter: saturate(1.08);
  box-shadow:
    0 28px 62px rgba(37, 99, 235, 0.22),
    0 0 0 5px rgba(99, 91, 255, 0.1);
}

@media (hover: none) {
  :where(
    .benefit-card,
    .review-card,
    .work-card,
    .service-work-card,
    .feature,
    .transport-card,
    .included-feature,
    .mini-panel,
    .offer-faq,
    .service-panel,
    .trust-compact-grid article,
    .proof-links a,
    .reassurance-card,
    .order-steps article,
    .contact-process div,
    .single-offer-card,
    .example-card,
    .journey-step,
    .useful-page,
    .client-panel,
    .document-card,
    .request-thread,
    .onboarding-item,
    .stack-list div
  ):hover {
    transform: none;
  }
}

/* Support widget visual correction */
.support-widget .support-widget__panel {
  width: min(404px, calc(100vw - 24px));
  max-height: min(720px, calc(100svh - 28px));
  overflow: auto;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  box-shadow:
    0 34px 100px rgba(7, 10, 18, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.support-widget .support-widget__head {
  padding: 20px 20px 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 91, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #070a12 0%, #101827 100%);
}

.support-widget .support-widget__intro {
  padding: 16px 20px 0;
  color: #667085;
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.55;
}

.support-widget .support-widget__hours {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 12px 20px 0;
  padding: 11px 12px;
  border: 1px solid rgba(99, 91, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(37, 99, 235, 0.045));
  color: #344054;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.38;
}

.support-widget .support-widget__hours span {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow:
    0 0 0 4px rgba(22, 163, 74, 0.12),
    0 0 20px rgba(22, 163, 74, 0.22);
}

.support-widget .support-widget__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 15px 20px 0;
}

.support-widget .support-widget__choice {
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 999px;
  padding: 0 10px;
  background: #ffffff;
  color: #202636;
  box-shadow:
    0 8px 20px rgba(7, 10, 18, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  appearance: none;
}

.support-widget .support-widget__choice:hover,
.support-widget .support-widget__choice:focus-visible {
  border-color: rgba(99, 91, 255, 0.26);
  background: #f7f7ff;
  color: #4f46e5;
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(7, 10, 18, 0.08),
    0 0 0 4px rgba(99, 91, 255, 0.07);
}

.support-widget .support-widget__choice.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #070a12, #1d2a44);
  color: #ffffff;
  box-shadow:
    0 16px 32px rgba(7, 10, 18, 0.18),
    0 0 0 4px rgba(99, 91, 255, 0.08);
}

.support-widget .support-widget__hint {
  margin: 10px 20px 0;
  padding: 0;
  color: #667085;
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 1.42;
}

.support-widget .support-widget__form {
  gap: 12px;
  padding: 16px 20px 20px;
}

.support-widget .support-widget__form label {
  gap: 8px;
  color: #202636;
  font-size: 0.84rem;
  font-weight: 760;
}

.support-widget .support-widget__form input,
.support-widget .support-widget__form textarea {
  border: 1px solid rgba(7, 10, 18, 0.11);
  border-radius: 15px;
  background: #ffffff;
  color: #070a12;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.support-widget .support-widget__form input {
  min-height: 46px;
}

.support-widget .support-widget__form textarea {
  min-height: 112px;
}

.support-widget .support-widget__form textarea::placeholder {
  color: #8a94a6;
  font-weight: 520;
}

.support-widget .support-widget__submit {
  min-height: 50px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, #070a12, #111827);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 10, 18, 0.18);
  font-size: 0.95rem;
  font-weight: 900;
}

.support-widget .support-widget__mail {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #4f46e5;
  font-size: 0.9rem;
  font-weight: 820;
}

@media (max-width: 560px) {
  .support-widget .support-widget__panel {
    width: min(390px, calc(100vw - 22px));
  }

  .support-widget .support-widget__quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-widget .support-widget__choice {
    min-height: 42px;
    font-size: 0.86rem;
  }
}

/* Home visual upgrade */
.local-hero-stage {
  position: absolute;
  inset: 110px max(28px, 5vw) 70px auto;
  width: min(610px, 45vw);
  min-height: 620px;
}

.hero-browser-mockup,
.hero-phone-mockup,
.hero-notification {
  position: absolute;
  border: 1px solid rgba(7, 10, 18, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(7, 10, 18, 0.13);
  backdrop-filter: blur(20px);
}

.hero-browser-mockup {
  inset: 20px 42px auto auto;
  width: min(520px, 100%);
  min-height: 430px;
  overflow: hidden;
  border-radius: 22px;
  transform: rotate(-1.5deg);
  animation: homeVisualFloat 8s ease-in-out infinite;
}

.hero-browser-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(7, 10, 18, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.hero-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
}

.hero-browser-top span:nth-child(2) {
  background: #7c3aed;
}

.hero-browser-top span:nth-child(3) {
  background: #d8defa;
}

.hero-browser-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-browser-body {
  position: relative;
  min-height: 382px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 10, 18, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #f4f7ff);
  background-size: 34px 34px, 34px 34px, auto;
}

.hero-search-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(7, 10, 18, 0.06);
}

.hero-search-line span,
.hero-result-card small,
.hero-map-card small,
.phone-status,
.flow-kicker {
  color: var(--mint-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-search-line strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.hero-result-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(7, 10, 18, 0.08);
}

.hero-result-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.42rem;
  line-height: 1.05;
}

.hero-result-card p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero-result-actions span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-result-actions span + span {
  background: rgba(99, 91, 255, 0.1);
  color: var(--mint-dark);
}

.hero-map-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 184px;
  min-height: 136px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(7, 10, 18, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.12)),
    #ffffff;
}

.hero-map-card strong,
.hero-map-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-map-card strong {
  margin-top: 58px;
  font-size: 1rem;
}

.map-road {
  position: absolute;
  inset: 18px -12px auto -16px;
  height: 68px;
  border-bottom: 10px solid rgba(37, 99, 235, 0.2);
  border-radius: 0 0 60% 40%;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
  animation: homePulse 2.2s ease-in-out infinite;
}

.pin-one {
  top: 42px;
  left: 44px;
}

.pin-two {
  top: 68px;
  right: 42px;
  animation-delay: 0.45s;
}

.hero-phone-mockup {
  right: 0;
  bottom: 14px;
  width: 214px;
  padding: 12px;
  border-radius: 34px;
  background: rgba(7, 10, 18, 0.88);
  transform: rotate(3deg);
  animation: homeVisualFloat 7s ease-in-out infinite reverse;
}

.hero-phone-top {
  width: 58px;
  height: 7px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-phone-screen {
  min-height: 300px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}

.hero-phone-screen strong {
  display: block;
  margin-top: 44px;
  font-size: 1.42rem;
  line-height: 1.05;
}

.hero-phone-screen p {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-phone-screen button {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.hero-notification {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 220px;
  padding: 12px;
  border-radius: 18px;
  animation: notificationIn 6s ease-in-out infinite;
}

.hero-notification span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.hero-notification strong,
.hero-notification small {
  display: block;
}

.hero-notification small {
  color: var(--muted);
  font-weight: 760;
}

.notification-one {
  left: 8px;
  top: 112px;
}

.notification-two {
  left: 58px;
  bottom: 136px;
  animation-delay: 1.1s;
}

.before-after-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 91, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #ffffff 100%);
}

.before-after-section .section-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.before-after-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.before-card,
.after-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(7, 10, 18, 0.06);
}

.after-card {
  border-color: rgba(99, 91, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(99, 91, 255, 0.08), transparent 42%),
    #ffffff;
}

.compare-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.07);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.after-card .compare-label {
  background: rgba(99, 91, 255, 0.12);
  color: var(--mint-dark);
}

.before-card h3,
.after-card h3 {
  margin: 18px 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.06;
}

.compare-search {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(7, 10, 18, 0.08);
}

.compare-search span,
.compare-search strong,
.compare-search p {
  display: block;
}

.compare-search span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-search strong {
  margin-top: 8px;
  font-size: 1.14rem;
}

.compare-search p {
  margin: 8px 0 0;
  color: var(--muted);
}

.compare-search.bad {
  background: linear-gradient(145deg, rgba(7, 10, 18, 0.04), rgba(7, 10, 18, 0.02));
}

.compare-search.good {
  border-color: rgba(99, 91, 255, 0.2);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
}

.compare-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 760;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.18);
}

.after-card .compare-list li::before {
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 5px rgba(99, 91, 255, 0.1);
}

.compare-bridge {
  display: grid;
  place-items: center;
  align-self: center;
  gap: 10px;
  color: var(--mint-dark);
  font-weight: 900;
}

.compare-bridge span {
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
  box-shadow: 0 0 22px rgba(99, 91, 255, 0.28);
}

.taxi-flow {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.taxi-flow-card {
  position: absolute;
  width: min(330px, 78%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.taxi-flow-card strong,
.taxi-flow-card p {
  display: block;
}

.taxi-flow-card strong {
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.taxi-flow-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.search-step {
  left: 0;
  top: 18px;
  animation: taxiCardFloat 7s ease-in-out infinite;
}

.request-step {
  right: 0;
  bottom: 24px;
  animation: taxiCardFloat 7s ease-in-out infinite reverse;
}

.search-result-pill,
.request-status {
  margin-top: 16px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.taxi-phone-sim {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(265px, 64%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(22px);
}

.taxi-phone-speaker {
  width: 58px;
  height: 7px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.taxi-phone-screen {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}

.taxi-phone-screen strong {
  margin-top: 62px;
  font-size: 1.65rem;
  line-height: 1.04;
}

.taxi-phone-screen p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.taxi-phone-screen button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.taxi-phone-screen button + button {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.request-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.request-lines span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.request-lines strong {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
}

@keyframes homeVisualFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes homePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.22);
  }
}

@keyframes notificationIn {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.82;
  }

  48%,
  58% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes taxiCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .local-hero-stage {
    position: relative;
    inset: auto;
    width: min(100%, 720px);
    min-height: 620px;
    margin: 46px auto 0;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .compare-bridge {
    min-height: 44px;
  }
}

@media (max-width: 760px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 104px 0 48px;
    min-height: auto;
  }

  .home-hero .hero-inner {
    order: 1;
    width: min(calc(100% - 32px), 1180px);
  }

  .home-hero .eyebrow {
    margin-bottom: 12px;
  }

  .home-hero .home-hero-title {
    font-size: clamp(2.08rem, 9.4vw, 2.72rem);
    line-height: 1.04;
  }

  .home-hero .hero-copy {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .home-hero .trust-line {
    margin-top: 12px;
    font-size: 0.93rem;
    line-height: 1.46;
  }

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

  .home-hero .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .home-hero .hero-proof div {
    padding: 13px;
    border-radius: 16px;
  }

  .home-hero .proof-stat-card {
    grid-column: 1 / -1;
  }

  .home-hero .proof-stat-card dt {
    font-size: 1.95rem;
  }

  .home-hero .hero-proof dt {
    font-size: 0.92rem;
  }

  .home-hero .hero-proof dd {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .home-hero .hero-scene {
    position: relative;
    inset: auto;
    order: 2;
    z-index: 1;
    width: min(calc(100% - 32px), 420px);
    height: auto;
    min-height: 0;
    margin: 22px auto 0;
  }

  .home-hero .scene-grid {
    display: none;
  }

  .local-hero-stage {
    min-height: 352px;
    width: 100%;
    margin: 0;
  }

  .hero-browser-mockup {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    animation: none;
    border-radius: 20px;
  }

  .hero-browser-top {
    height: 38px;
    padding: 0 14px;
  }

  .hero-browser-top span {
    width: 8px;
    height: 8px;
  }

  .hero-browser-top strong {
    font-size: 0.68rem;
  }

  .hero-browser-body {
    min-height: 288px;
    padding: 14px;
  }

  .hero-search-line {
    min-height: 40px;
    padding: 0 12px;
    gap: 8px;
  }

  .hero-search-line span,
  .hero-result-card small,
  .phone-status,
  .flow-kicker {
    font-size: 0.62rem;
  }

  .hero-search-line strong {
    font-size: 0.84rem;
  }

  .hero-result-card {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-result-card strong {
    font-size: 1.08rem;
  }

  .hero-result-card p {
    margin: 7px 0 12px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-result-actions span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .hero-map-card {
    display: none;
  }

  .hero-phone-mockup {
    right: 10px;
    bottom: -8px;
    width: 138px;
    padding: 8px;
    border-radius: 24px;
    animation: none;
  }

  .hero-phone-screen {
    min-height: 190px;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-phone-screen strong {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .hero-phone-screen p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-phone-screen button {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .hero-notification {
    display: none;
  }

  .before-after-grid {
    width: min(calc(100% - 32px), 1180px);
    margin-top: 30px;
  }

  .before-card,
  .after-card {
    padding: 20px;
    border-radius: 20px;
  }

  .compare-bridge {
    display: none;
  }

  .taxi-flow {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .taxi-flow-card {
    position: relative;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  .search-step,
  .request-step {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .taxi-phone-sim {
    position: relative;
    left: auto;
    top: auto;
    width: min(270px, 100%);
    margin: 16px auto;
    transform: none;
  }
}

/* 404 page */
.not-found-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 84% 18%, rgba(99, 91, 255, 0.18), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
}

.not-found-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(7, 10, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 10, 18, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black 0%, transparent 86%);
}

.not-found-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.not-found-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.not-found-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.not-found-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.not-found-shortcuts a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(7, 10, 18, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.not-found-shortcuts a:hover,
.not-found-shortcuts a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.38);
  background: #ffffff;
}

.not-found-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(7, 10, 18, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 255, 0.86)),
    #ffffff;
  box-shadow: 0 34px 100px rgba(7, 10, 18, 0.15);
  backdrop-filter: blur(18px);
}

.not-found-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35%;
  height: 230px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.22), transparent 62%);
}

.not-found-window {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  margin: -8px -8px 34px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(7, 10, 18, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.not-found-window span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.not-found-window span:nth-child(2) { background: var(--mint); }
.not-found-window span:nth-child(3) { background: var(--gold); }

.not-found-card > strong {
  display: block;
  color: var(--ink);
  font-size: clamp(5.5rem, 12vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.not-found-card > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 850;
}

.not-found-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 42px;
  padding: 14px;
  border: 1px solid rgba(99, 91, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.not-found-status > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 14px 30px rgba(99, 91, 255, 0.22);
}

.not-found-status b,
.not-found-status small {
  display: block;
}

.not-found-status small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 760;
}

@media (max-width: 860px) {
  .not-found-hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .not-found-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 1180px);
  }

  .not-found-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    line-height: 1;
  }

  .not-found-card {
    min-height: 320px;
    border-radius: 24px;
  }

  .not-found-card > strong {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }
}
