@font-face {
  font-family: "ViTech Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/vi-tech-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "ViTech Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/vi-tech-serif-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #102c44;
  --ink-strong: #071f33;
  --muted: #5c6f7f;
  --blue: #005ca2;
  --blue-bright: #0878c4;
  --blue-soft: #e6f3fb;
  --paper: #f7fafc;
  --white: #ffffff;
  --line: #cfdae3;
  --line-strong: #9fb6c7;
  --peach: #f3ddd4;
  --mint: #d9eee9;
  --coral: #efaea5;
  --gold: #d8bd72;
  --shadow-soft: 0 18px 48px rgba(16, 44, 68, 0.1);
  --shadow-card: 0 12px 28px rgba(16, 44, 68, 0.08);
  --radius-panel: 22px;
  --radius-control: 10px;
  --page: min(1480px, calc(100% - 40px));
  --font-sans: "ViTech Sans", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-display: "ViTech Serif", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 7%, rgba(176, 226, 247, 0.48), transparent 23rem),
    radial-gradient(circle at 92% 9%, rgba(246, 211, 195, 0.4), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.page-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.page-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), #4aa8dc);
  box-shadow: 0 0 12px rgba(0, 92, 162, 0.34);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.header-sentinel {
  position: absolute;
  top: 92px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #39a7e3;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--white);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 11px 16px 0;
  transition: padding 240ms ease;
}

.nav-shell {
  width: min(1420px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 7px 8px 7px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(207, 218, 227, 0.92);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(16, 44, 68, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 6px;
}

.site-header.is-scrolled .nav-shell {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(16, 44, 68, 0.12);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin-right: 4px;
  padding: 3px 22px 3px 2px;
  border-right: 1px solid rgba(159, 182, 199, 0.58);
  border-radius: 0;
  background: transparent;
}

.brand img {
  width: 154px;
  height: auto;
  transition: width 240ms ease;
}

.site-header.is-scrolled .brand img {
  width: 140px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.7vw, 28px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-strong);
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav .nav-utility {
  color: var(--ink-soft);
  font-weight: 600;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="true"] {
  color: var(--blue);
}

.button {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

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

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(16, 44, 68, 0.18);
}

.button-primary:hover {
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 92, 162, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--white);
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 17px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(0, 92, 162, 0.22);
}

.nav-cta:hover {
  background: #004f8c;
  box-shadow: 0 13px 28px rgba(0, 92, 162, 0.28);
}

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

.hero {
  width: var(--page);
  margin: 42px auto 0;
}

.hero-intro {
  position: relative;
  margin-bottom: 28px;
  padding: clamp(26px, 3vw, 44px) clamp(16px, 2vw, 30px) clamp(32px, 3.6vw, 52px) clamp(30px, 3.2vw, 50px);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.68fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
  border-left: 4px solid var(--blue);
  border-radius: 4px 24px 24px 4px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 251, 0.72)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(207, 218, 227, 0.62), 0 18px 48px rgba(16, 44, 68, 0.06);
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 2;
}

.hero-brand-watermark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 28%;
  width: clamp(210px, 23vw, 340px);
  height: auto;
  opacity: 0.045;
  pointer-events: none;
  transform: translateY(-50%) rotate(-8deg);
}

.hero-brand-lockup {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-brand-lockup img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 13px rgba(0, 92, 162, 0.12));
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.editorial-heading h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(54px, 5.3vw, 82px);
  font-weight: 780;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em,
.editorial-heading h2 em {
  display: block;
}

.hero h1 em,
.editorial-heading h2 em {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 span:first-child {
  margin-bottom: 0.08em;
  color: #35556e;
  font-size: 0.64em;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 em {
  margin-top: 0.17em;
  color: #41657d;
  font-size: 0.72em;
  font-style: italic;
  line-height: 0.98;
}

.hero h1 em strong {
  margin-left: 0.09em;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 0.92em;
  font-style: normal;
  font-weight: 830;
  letter-spacing: -0.055em;
}

.hero-side {
  padding: 0 10px 2px 0;
}

.hero-side > p {
  max-width: 500px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .button-primary {
  background: var(--blue);
  box-shadow: 0 11px 24px rgba(0, 92, 162, 0.22);
}

.hero-actions .button-primary:hover {
  background: #004f8c;
}

.hero-showcase {
  position: relative;
  height: clamp(540px, 46vw, 690px);
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.92fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 51, 0.42);
  border-radius: 18px;
  background: #eaf1f3;
  box-shadow: var(--shadow-soft);
}

.hero-showcase::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 92, 162, 0.04), transparent 30%, transparent 70%, rgba(239, 174, 165, 0.07));
  pointer-events: none;
  content: "";
}

.showcase-shot {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 9px;
  background: #dfe8ec;
}

.showcase-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-shot:hover img {
  transform: scale(1.035);
}

.showcase-shot figcaption,
.concept-badge,
.template-image > span {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(7, 31, 51, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-shot figcaption {
  right: 10px;
  bottom: 10px;
}

.shot-nail {
  grid-column: 1;
  grid-row: 1;
}

.shot-owner {
  grid-column: 1;
  grid-row: 2;
}

.shot-spa {
  grid-column: 3;
  grid-row: 1;
}

.shot-barber {
  grid-column: 3;
  grid-row: 2;
}

.shot-owner img {
  object-position: 50% 48%;
}

.booking-phone {
  position: relative;
  z-index: 4;
  width: min(320px, calc(100% - 30px));
  min-height: 504px;
  margin: auto;
  padding: 17px 14px 15px;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  border: 8px solid #071f33;
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 26px 48px rgba(7, 31, 51, 0.28);
}

.booking-phone::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 84px;
  height: 18px;
  border-radius: 999px;
  background: #071f33;
  content: "";
  transform: translateX(-50%);
}

.phone-bar {
  min-height: 26px;
  padding: 1px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
}

.phone-bar b {
  color: var(--ink);
  font-size: 10px;
}

.phone-shop {
  padding: 20px 4px 15px;
  border-bottom: 1px solid var(--line);
}

.phone-shop small,
.phone-shop strong {
  display: block;
}

.phone-shop small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-shop strong {
  margin-top: 3px;
  color: var(--ink-strong);
  font-size: 18px;
}

.phone-services {
  padding: 9px 0 5px;
  display: grid;
  gap: 7px;
}

.phone-services > div,
.mini-service,
.mini-person,
.owner-list > div,
.ready-screen > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-services > div {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.phone-services p,
.mini-service p,
.mini-person p,
.owner-list p,
.ready-screen p {
  min-width: 0;
  margin: 0;
  flex: 1;
}

.phone-services p strong,
.phone-services p small,
.mini-service p b,
.mini-service p small,
.mini-person p b,
.mini-person p small,
.owner-list p b,
.owner-list p small,
.ready-screen p b,
.ready-screen p small {
  display: block;
}

.phone-services p strong {
  color: var(--ink-strong);
  font-size: 12px;
}

.phone-services p small {
  color: var(--muted);
  font-size: 9px;
}

.phone-services > div > b {
  font-size: 11px;
}

.service-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 7px;
}

.service-mark.coral {
  background: var(--coral);
}

.service-mark.blue {
  background: #98c9e7;
}

.service-mark.gold {
  background: var(--gold);
}

.phone-date {
  padding: 8px 0 12px;
}

.phone-date > span {
  color: var(--muted);
  font-size: 10px;
}

.phone-date > div {
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.phone-date b {
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 9px;
  text-align: center;
}

.phone-date b:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.phone-action {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.concept-badge {
  top: 23px;
  left: 50%;
  background: var(--blue);
  transform: translateX(-50%);
}

.showcase-caption {
  min-height: 72px;
  padding: 16px 25px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.6fr) 1fr;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.showcase-caption span {
  color: var(--muted);
  font-size: 13px;
}

.showcase-caption span:last-child {
  text-align: right;
}

.showcase-caption strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 400;
  text-align: center;
}

.proof-strip {
  width: var(--page);
  margin: 18px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.proof-strip > div {
  min-height: 92px;
  padding: 19px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-strip > div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--ink-strong);
  font-size: 16px;
}

.proof-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.services-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}

.services-heading h2,
.trust-heading h2 {
  max-width: 920px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.services-heading h2 em,
.trust-heading h2 em {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.services-heading > p {
  max-width: 410px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

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

.service-card {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(159, 182, 199, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(16, 44, 68, 0.075);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  border-color: rgba(0, 92, 162, 0.46);
  box-shadow: 0 22px 54px rgba(16, 44, 68, 0.12);
  transform: translateY(-5px);
}

.service-card--booking {
  min-height: 300px;
  grid-column: span 6;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 84% 14%, rgba(8, 120, 196, 0.35), transparent 15rem),
    var(--ink-strong);
  color: var(--white);
}

.service-card--web,
.service-card--hosting {
  grid-column: span 3;
}

.service-card--web {
  background: linear-gradient(155deg, #ffffff 35%, #e9f5fb);
}

.service-card--hosting {
  background: linear-gradient(155deg, #ffffff 35%, #eef7f4);
}

.service-card--logo,
.service-card--loyalty,
.service-card--ai {
  grid-column: span 4;
}

.service-card--logo {
  background: linear-gradient(155deg, #fffdfc 35%, #f4e4dc);
}

.service-card--loyalty {
  background: linear-gradient(145deg, #eaf6fc, #dceef7 55%, #eef7f4);
}

.service-card--ai {
  background: linear-gradient(155deg, #ffffff 35%, #edf1f5);
}

.service-brand-mark {
  position: absolute;
  top: -116px;
  right: -98px;
  width: 340px;
  height: 340px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(9deg);
}

.service-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card-topline > span {
  width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 92, 162, 0.25);
  border-radius: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.service-card--booking .service-card-topline > span {
  border-color: rgba(255, 255, 255, 0.22);
  color: #b9e4ff;
}

.service-card-topline small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: right;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-card--booking .service-card-topline small {
  color: #a9c0d0;
}

.service-card-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.service-card-copy h3 {
  margin: 20px 0 0;
  color: var(--ink-strong);
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.service-card--booking .service-card-copy h3 {
  max-width: 550px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 58px);
}

.service-card-copy p {
  max-width: 56ch;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}

.service-card--booking .service-card-copy p {
  max-width: 570px;
  color: #bfd0dc;
  font-size: 15px;
}

.booking-route {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(14px, 1fr) auto minmax(14px, 1fr) auto minmax(14px, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.booking-route span {
  color: #eaf7ff;
  font-size: 10px;
  font-weight: 720;
  white-space: nowrap;
}

.booking-route i {
  height: 1px;
  background: linear-gradient(90deg, rgba(111, 197, 244, 0.7), rgba(111, 197, 244, 0.12));
}

.service-icon--browser {
  position: relative;
  width: 118px;
  height: 76px;
  margin: 28px 0 10px auto;
  border: 1px solid rgba(0, 92, 162, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(0, 92, 162, 0.1);
}

.service-icon--browser::before {
  position: absolute;
  top: 13px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(0, 92, 162, 0.16);
  content: "";
}

.service-icon--browser i {
  position: relative;
  z-index: 1;
  width: 3px;
  height: 3px;
  margin: 5px 0 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--blue);
}

.service-icon--browser b,
.service-icon--browser span {
  position: absolute;
  left: 10px;
  height: 7px;
  display: block;
  border-radius: 3px;
  background: var(--blue-soft);
}

.service-icon--browser b {
  top: 25px;
  width: 64%;
}

.service-icon--browser span {
  top: 40px;
  width: 82%;
  height: 24px;
  background: linear-gradient(90deg, rgba(0, 92, 162, 0.18), rgba(239, 174, 165, 0.42));
}

.domain-chip {
  max-width: 210px;
  margin: 31px 0 15px auto;
  padding: 10px 13px;
  border: 1px solid rgba(16, 44, 68, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(16, 44, 68, 0.08);
  color: var(--ink);
  font-size: 11px;
  font-weight: 740;
  white-space: nowrap;
}

.domain-chip span {
  margin-right: 7px;
  color: #39a483;
  font-size: 8px;
}

.logo-sketch {
  min-height: 72px;
  margin: 24px 0 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.logo-sketch span,
.logo-sketch b {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink-strong);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.logo-sketch b {
  width: 74px;
  border: 1px solid rgba(7, 31, 51, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-strong);
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 830;
}

.logo-sketch i {
  width: 18px;
  height: 18px;
  border: 4px solid var(--blue);
  transform: rotate(45deg);
}

.loyalty-layout {
  min-height: 188px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.voucher-preview {
  position: relative;
  width: 142px;
  height: 132px;
  flex: 0 0 auto;
}

.voucher-ticket {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 118px;
  height: 82px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: var(--ink-strong);
  box-shadow: 0 16px 28px rgba(7, 31, 51, 0.22);
  color: var(--white);
  transform: rotate(5deg);
}

.voucher-ticket span,
.voucher-ticket small {
  color: #b8ccd9;
  font-size: 8px;
  font-weight: 700;
}

.voucher-ticket strong {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.qr-preview {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74px;
  height: 74px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border: 1px solid rgba(16, 44, 68, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 44, 68, 0.14);
}

.qr-preview span {
  background: var(--ink-strong);
}

.qr-preview span:nth-child(2),
.qr-preview span:nth-child(4),
.qr-preview span:nth-child(9) {
  border-radius: 50%;
  background: var(--blue);
}

.ai-route {
  margin: 34px 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
}

.ai-route span,
.ai-route b {
  padding: 7px 9px;
  border: 1px solid rgba(16, 44, 68, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 760;
  white-space: nowrap;
}

.ai-route b {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.ai-route i {
  height: 1px;
  background: var(--line-strong);
}

.services-disclosure {
  margin-top: 17px;
  padding: 16px 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.services-disclosure p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.text-arrow-link span {
  transition: transform 180ms ease;
}

.text-arrow-link:hover span {
  transform: translateX(4px);
}

.section {
  width: var(--page);
  margin: 130px auto 0;
}

.editorial-heading,
.section-intro {
  max-width: 930px;
  margin: 0 auto 46px;
  text-align: center;
}

.editorial-heading h2,
.section-intro h2,
.company-proof h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.editorial-heading h2 em {
  color: var(--blue);
  font-size: 0.95em;
}

.editorial-heading > p:last-child,
.section-intro > p {
  max-width: 720px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 17px;
}

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

.template-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(16, 44, 68, 0.14);
}

.template-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 20px 44px rgba(16, 44, 68, 0.14);
}

.template-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #dce7ec;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.template-image > span {
  right: 12px;
  bottom: 12px;
}

.template-body {
  padding: 25px 25px 27px;
}

.template-body > small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.template-body h3 {
  margin: 7px 0 13px;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.template-body ul {
  min-height: 58px;
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.template-body a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.template-body a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.journey-section {
  width: min(1580px, calc(100% - 24px));
  padding: 104px 0 76px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.journey-section .editorial-heading {
  padding: 0 20px;
}

.journey-toolbar {
  max-width: 1480px;
  min-height: 52px;
  margin: -12px auto 12px;
  padding: 0 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.journey-toolbar.is-scrollable {
  display: flex;
}

.journey-toolbar p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}

.journey-toolbar p strong {
  color: var(--ink-strong);
  font-size: 15px;
}

.journey-toolbar p small {
  margin-left: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.rail-controls button:hover:not(:disabled) {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.rail-controls button:disabled {
  cursor: default;
  opacity: 0.34;
}

.journey-scroll {
  max-width: 1480px;
  margin: 0 auto;
  padding: 8px 20px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.journey-step {
  position: relative;
  min-width: 210px;
  min-height: 568px;
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 44, 68, 0.06);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.journey-step.is-current {
  border-color: rgba(0, 92, 162, 0.65);
  box-shadow: 0 14px 34px rgba(0, 92, 162, 0.12);
}

.journey-step.is-featured {
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 92, 162, 0.13);
  transform: translateY(-6px);
}

.step-number {
  width: calc(100% + 24px);
  min-height: 58px;
  margin: 0 -12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}

.step-number span {
  width: 42px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.journey-step h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 17px;
  letter-spacing: -0.02em;
  text-align: center;
}

.journey-step > p {
  min-height: 42px;
  margin: 6px 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.mini-screen {
  width: 100%;
  min-height: 358px;
  padding: 12px 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfdfe;
}

.mini-top {
  min-height: 31px;
  margin: -3px -2px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
}

.mini-top b {
  color: var(--ink);
  font-size: 9px;
}

.mini-screen > small,
.calendar-screen > small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-service {
  margin-top: 8px;
  padding: 9px 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-service.selected,
.mini-person.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.mini-service p b,
.mini-person p b,
.owner-list p b,
.ready-screen p b {
  color: var(--ink-strong);
  font-size: 10px;
}

.mini-service p small,
.mini-person p small,
.owner-list p small,
.ready-screen p small {
  color: var(--muted);
  font-size: 8px;
}

.mini-service > strong {
  font-size: 9px;
}

.staff-screen {
  padding-top: 12px;
}

.mini-person {
  margin-top: 10px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.mini-person > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d7e8f2;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.mini-person > i {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.mini-person.selected > i {
  border: 4px solid var(--blue);
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-days {
  margin: 10px 0 4px;
  color: var(--muted);
  font-size: 7px;
}

.calendar-grid {
  gap: 2px 0;
  color: var(--ink);
  font-size: 8px;
}

.calendar-grid span,
.calendar-grid b {
  width: 22px;
  height: 22px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 500;
}

.calendar-grid b {
  background: var(--blue);
  color: var(--white);
}

.calendar-screen > small {
  display: block;
  margin-top: 14px;
}

.mini-times {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.mini-times span,
.mini-times b {
  padding: 7px 2px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 8px;
  font-weight: 650;
  text-align: center;
}

.mini-times b {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.details-screen label {
  margin-top: 10px;
  display: block;
  color: var(--ink);
  font-size: 8px;
  font-weight: 750;
}

.details-screen label span {
  min-height: 34px;
  margin-top: 5px;
  padding: 8px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.details-screen label:nth-of-type(3) span {
  min-height: 64px;
}

.mini-button {
  min-height: 36px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
}

.ready-screen {
  padding: 32px 14px 18px;
  text-align: center;
}

.ready-check {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.ready-screen h4 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 15px;
}

.ready-screen > strong {
  margin-top: 8px;
  display: block;
  color: var(--blue);
  font-size: 11px;
}

.ready-screen > div {
  margin: 21px 0 16px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: left;
}

.ready-screen > small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.journey-facts {
  max-width: 1040px;
  margin: 28px auto 0;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.journey-facts span {
  min-height: 38px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.journey-facts span + span {
  border-left: 1px solid var(--line);
}

.journey-facts b {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
}

.operations-section .editorial-heading {
  max-width: 990px;
}

.operations-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: center;
}

.operations-flow::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
  border-top: 2px dashed #81b7d8;
  content: "";
}

.operation-card {
  min-height: 450px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.operation-card > small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-card h3 {
  margin: 7px 0 6px;
  color: var(--ink-strong);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.operation-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.schedule-card {
  min-height: 510px;
  border-color: var(--blue);
}

.request-ticket {
  margin-top: 62px;
  padding: 21px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8fbfd;
}

.request-ticket > span,
.request-ticket > small {
  color: var(--muted);
  font-size: 10px;
}

.request-ticket > small {
  text-align: right;
}

.request-ticket > strong,
.request-ticket > p,
.request-ticket > b {
  grid-column: 1 / -1;
}

.request-ticket > strong {
  margin-top: 23px;
  color: var(--ink-strong);
  font-size: 15px;
}

.request-ticket > p {
  margin: 3px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.request-ticket > b {
  width: max-content;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--mint);
  color: #23584d;
  font-size: 9px;
}

.schedule-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 52px repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  font-size: 9px;
}

.schedule-grid > * {
  min-width: 0;
  min-height: 42px;
  padding: 7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.schedule-grid > b,
.schedule-grid > span {
  color: var(--muted);
  font-style: normal;
}

.schedule-grid > i {
  background: var(--blue-soft);
  color: var(--ink);
  font-style: normal;
  line-height: 1.25;
}

.schedule-grid > i.active {
  background: var(--blue);
  color: var(--white);
}

.schedule-summary {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.schedule-summary span {
  padding: 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.schedule-summary b {
  margin-right: 4px;
  color: var(--blue);
  font-size: 17px;
}

.owner-metrics {
  margin-top: 39px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.owner-metrics span {
  padding: 12px 6px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.owner-metrics span + span {
  border-left: 1px solid var(--line);
}

.owner-metrics b {
  display: block;
  color: var(--ink-strong);
  font-size: 20px;
}

.owner-list {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.owner-list > div {
  padding: 10px;
  border: 1px solid var(--line);
  background: #fbfdfe;
}

.owner-list > div > strong {
  color: var(--blue);
  font-size: 16px;
}

.concept-note {
  max-width: 950px;
  margin: 28px auto 0;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.concept-note strong {
  color: var(--blue);
}

.calculator-section {
  padding: 78px;
  border-radius: var(--radius-panel);
  background: var(--ink-strong);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.calculator-section .section-intro {
  max-width: 800px;
}

.calculator-section .section-intro h2 {
  color: var(--white);
}

.calculator-section .section-intro p {
  color: #b7c7d3;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.65fr);
  gap: 24px;
}

.calculator-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
}

.field label {
  min-height: 44px;
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.field input {
  width: 100%;
  height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink-strong);
  font-size: 23px;
  font-weight: 750;
}

.field small {
  margin-top: 8px;
  display: block;
  color: #aabcc9;
  font-size: 11px;
  line-height: 1.45;
}

.currency-input {
  position: relative;
}

.currency-input > span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 750;
  transform: translateY(-50%);
}

.currency-input input {
  padding-left: 32px;
}

.calculator-result {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(151, 205, 235, 0.5);
  background: var(--blue);
}

.calculator-result p {
  margin: 0;
  color: #d7effc;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.calculator-result > strong {
  margin: 8px 0 2px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 74px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.calculator-result > span {
  color: var(--white);
  font-size: 15px;
}

.calculator-result > small {
  margin-top: 18px;
  color: #c3e3f5;
  font-size: 10px;
}

.process-section {
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
}

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

.process-line li {
  position: relative;
  padding: 37px 30px 18px 62px;
}

.process-line li + li {
  border-left: 1px solid var(--line);
}

.process-line > li > span {
  position: absolute;
  top: 37px;
  left: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.process-line h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.packages-section {
  width: min(1240px, calc(100% - 40px));
  position: relative;
  padding: clamp(58px, 5.5vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 9%, rgba(176, 226, 247, 0.32), transparent 25rem),
    var(--white);
  box-shadow: var(--shadow-card);
}

.packages-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #58afd9 72%, transparent);
  content: "";
}

.packages-section > * {
  position: relative;
}

.package-selector {
  max-width: 820px;
  margin: 0 auto 20px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f2f6f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.package-selector button {
  min-width: 0;
  min-height: 66px;
  padding: 10px 14px;
  display: grid;
  place-content: center;
  gap: 3px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-selector button > span {
  display: block;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.package-selector button > small {
  display: block;
  color: inherit;
  font-size: 10px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.package-selector button:hover:not([aria-selected="true"]) {
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.package-selector button:active {
  transform: translateY(1px);
}

.package-selector button[aria-selected="true"] {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 44, 68, 0.1);
}

.package-panel {
  max-width: 1080px;
  min-width: 0;
  min-height: 300px;
  margin: 0 auto;
  padding: clamp(30px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(210px, 0.95fr) minmax(290px, 1.25fr);
  gap: clamp(25px, 3vw, 44px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(16, 44, 68, 0.08), inset 0 1px 0 var(--white);
  transition: opacity 180ms ease, transform 180ms ease;
}

.package-panel.is-switching {
  opacity: 0;
  transform: translateY(7px);
}

.package-heading,
.package-panel > div:first-child {
  min-width: 0;
  padding-right: clamp(12px, 2vw, 26px);
  align-self: stretch;
  border-right: 1px solid var(--line);
}

.package-heading [data-package-fit],
.package-panel > div:first-child > p:first-child {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.package-panel h3 {
  margin: 5px 0 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.package-rate {
  margin: 17px 0 0 !important;
  color: var(--ink) !important;
  font-size: 11px !important;
  font-weight: 690 !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0 !important;
  line-height: 1.38;
  text-transform: none !important;
}

.package-rate [data-pricing-rate] {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-strong);
  font-size: 29px;
  font-weight: 840;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.package-rate span {
  display: block;
  color: var(--muted);
  text-wrap: pretty;
}

.package-details {
  min-width: 0;
  display: grid;
  gap: 24px;
  align-content: start;
}

.package-panel ul {
  min-width: 0;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.package-panel li::marker {
  color: var(--blue);
}

.package-panel li + li {
  margin-top: 8px;
}

.package-action {
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  align-items: baseline;
  gap: 5px 12px;
  border-radius: 16px;
  background: var(--ink-strong);
  box-shadow: 0 16px 34px rgba(7, 31, 51, 0.18);
  color: var(--white);
}

.package-action > span {
  color: #c8e1ef;
  font-size: 11px;
  line-height: 1.35;
}

.package-action > span:first-child {
  color: #d7effc;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-action > span:nth-of-type(2) {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.package-action > strong[data-pricing-total] {
  color: var(--white);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 840;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 0.95;
  white-space: nowrap;
}

.package-action > p {
  grid-column: 1 / -1;
  margin: 0;
  text-wrap: pretty;
}

.package-action > [data-pricing-summary] {
  margin-top: 10px;
  color: #d7effc;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.4;
}

.package-action > [data-pricing-status] {
  min-height: 2.9em;
  color: #b9d5e6;
  font-size: 11px;
  line-height: 1.45;
}

.package-action > [data-pricing-cta] {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 50px;
  margin-top: 13px;
  background: var(--white);
  color: var(--ink-strong);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
}

.package-action > [data-pricing-cta]:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.package-action > [data-pricing-cta][aria-disabled="true"] {
  opacity: 0.46;
  box-shadow: none;
  pointer-events: none;
  transform: none;
  cursor: not-allowed;
}

.pricing-calculator,
.package-calculator {
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 22px;
  display: grid;
  gap: 13px;
  border: 1px solid rgba(0, 92, 162, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(230, 243, 251, 0.82), rgba(247, 250, 252, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package-calculator label {
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.package-calculator input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.package-calculator input:hover {
  border-color: #7298b4;
}

.package-calculator input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 92, 162, 0.12);
}

.package-calculator input[aria-invalid="true"],
.package-calculator input:invalid {
  border-color: #b7544c;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(183, 84, 76, 0.11);
}

.package-calculator small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.48;
  text-wrap: pretty;
}

.pricing-field {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: end;
}

.pricing-field label {
  grid-column: 1 / -1;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-field input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.pricing-field input:hover {
  border-color: #7298b4;
}

.pricing-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 92, 162, 0.12);
}

.pricing-field input[aria-invalid="true"],
.pricing-field input:invalid {
  border-color: #b7544c;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(183, 84, 76, 0.11);
}

.pricing-field small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-wrap: pretty;
}

.pricing-total {
  min-width: 0;
  padding-top: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 14px;
  align-items: baseline;
  border-top: 1px solid rgba(0, 92, 162, 0.17);
}

.pricing-total > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pricing-total strong,
[data-pricing-total] {
  color: var(--ink-strong);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 840;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.pricing-total small,
[data-pricing-summary] {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-wrap: pretty;
}

.pricing-status {
  min-height: 1.45em;
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
  text-wrap: pretty;
}

.package-panel:has(input[aria-invalid="true"]) [data-pricing-status],
.pricing-field:has(input[aria-invalid="true"]) + .pricing-total + .pricing-status,
.pricing-status.is-error,
.pricing-status[data-state="error"] {
  color: #ffb6ae;
}

.pricing-helper {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-wrap: pretty;
}

.pricing-calculator [data-pricing-cta] {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  text-align: center;
}

.pricing-calculator [data-pricing-cta][aria-disabled="true"] {
  opacity: 0.48;
  box-shadow: none;
  pointer-events: none;
  transform: none;
  cursor: not-allowed;
}

.pricing-disclosure,
.package-disclaimer {
  max-width: 1080px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.package-panel > .pricing-disclosure,
.package-panel > .package-disclaimer {
  grid-column: 1 / -1;
  max-width: none;
  margin: -8px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trust-section {
  display: block;
}

.trust-heading {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.trust-heading > p:last-child {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

.trust-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 16px;
}

.company-proof {
  position: relative;
  min-width: 0;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(0, 92, 162, 0.14);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 92% 8%, rgba(74, 168, 220, 0.2), transparent 17rem),
    var(--blue-soft);
}

.company-card-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.company-card-brand img {
  width: clamp(150px, 18vw, 216px);
  height: auto;
}

.company-card-brand span {
  padding: 7px 10px;
  border: 1px solid rgba(0, 92, 162, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-proof h3,
.terms-card h3 {
  max-width: 720px;
  margin: 44px 0 0;
  color: var(--ink-strong);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.company-proof > p,
.terms-card > p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.company-proof dl {
  max-width: 690px;
  margin: 30px 0 24px;
}

.company-proof dl > div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(0, 92, 162, 0.18);
}

.company-proof dt {
  color: var(--muted);
  font-size: 12px;
}

.company-proof dd {
  margin: 0;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 720;
}

.company-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.terms-card {
  position: relative;
  min-width: 0;
  padding: 46px;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 100% 0, rgba(8, 120, 196, 0.34), transparent 19rem),
    var(--ink-strong);
  box-shadow: 0 20px 52px rgba(7, 31, 51, 0.16);
  color: var(--white);
}

.terms-card::after {
  position: absolute;
  right: -46px;
  bottom: -72px;
  width: 230px;
  height: 230px;
  border: 36px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.terms-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.terms-card-topline span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #c8e9fd;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-card-topline small {
  color: #9fb8c9;
  font-size: 10px;
  font-weight: 680;
}

.terms-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  color: var(--white);
  font-size: clamp(36px, 3.5vw, 54px);
}

.terms-card > p {
  position: relative;
  z-index: 1;
  color: #b9cbd7;
}

.terms-card ul {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.terms-card li {
  min-height: 48px;
  padding: 11px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e6f1f7;
  font-size: 12px;
  font-weight: 620;
}

.terms-card li span {
  color: #71c5f0;
  font-size: 10px;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

.terms-card-actions {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.terms-card-actions .button-primary {
  background: var(--white);
  color: var(--ink-strong);
}

.terms-card-actions .button-primary:hover {
  background: var(--blue-soft);
}

.terms-card-actions .text-arrow-link {
  color: #bfe5fb;
}

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

.faq-list--wide {
  max-width: 1120px;
  margin: 34px auto 0;
}

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

.faq-list summary {
  position: relative;
  min-height: 82px;
  padding: 0 44px 0 0;
  display: flex;
  align-items: center;
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--blue), var(--blue)) center / 12px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center / 2px 12px no-repeat;
  content: "";
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.faq-list details[open] summary::after {
  border-color: rgba(0, 92, 162, 0.3);
  background:
    linear-gradient(var(--blue), var(--blue)) center / 12px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center / 2px 12px no-repeat,
    var(--blue-soft);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 0 27px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 14px;
}

.calculator-validation {
  min-height: 20px;
  margin: 0;
  grid-column: 1 / -1;
  color: #9b3f35;
  font-size: 12px;
  font-weight: 680;
}

.calculator-form input[aria-invalid="true"] {
  border-color: #c76b61;
  box-shadow: 0 0 0 3px rgba(199, 107, 97, 0.12);
}

.final-cta {
  width: var(--page);
  margin: 130px auto 0;
  padding: 65px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 46px;
  align-items: center;
  background: var(--ink-strong);
  color: var(--white);
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(39px, 4.2vw, 64px);
}

.final-cta p {
  margin: 14px 0 0;
  color: #b7c7d3;
}

.final-cta .button-primary {
  background: var(--white);
  color: var(--ink);
}

.final-cta .button-primary:hover {
  background: var(--blue-soft);
}

.button-large {
  min-height: 56px;
  padding: 0 26px;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 38px 0 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand .brand {
  padding-left: 0;
  background: transparent;
}

.footer-brand .brand img {
  width: 118px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.footer-brand > span {
  color: var(--muted);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--blue);
}

.mobile-sticky-cta {
  display: none;
}

.action-dock {
  position: fixed;
  z-index: 48;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  pointer-events: none;
}

.action-dock > * {
  pointer-events: auto;
}

.contact-launcher {
  position: relative;
  width: 58px;
  min-height: 58px;
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: var(--ink-strong);
  box-shadow: 0 16px 38px rgba(7, 31, 51, 0.28);
  color: var(--white);
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.contact-launcher::after {
  position: absolute;
  right: calc(100% + 10px);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--ink-strong);
  content: "Contact Vi-Tech";
  font-size: 11px;
  font-weight: 780;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity 160ms ease, transform 180ms ease;
  white-space: nowrap;
}

.contact-launcher:hover::after,
.contact-launcher:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.contact-launcher:hover {
  background: #0b3858;
  box-shadow: 0 20px 44px rgba(7, 31, 51, 0.34);
  transform: translateY(-3px);
}

.contact-launcher:active {
  transform: translateY(0) scale(0.98);
}

.contact-launcher-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue);
}

.contact-launcher-icon svg,
.contact-option-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-launcher-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(390px, calc(100vw - 32px));
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(159, 182, 199, 0.68);
  border-radius: 19px;
  background:
    radial-gradient(circle at 100% 0, rgba(182, 226, 248, 0.46), transparent 14rem),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 72px rgba(7, 31, 51, 0.24);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: right bottom;
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 220ms ease;
}

.contact-panel[hidden] {
  display: none;
}

.contact-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.contact-panel-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 11px;
  align-items: center;
}

.contact-panel-header img {
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 12px;
  background: var(--blue-soft);
}

.contact-panel-header small {
  display: block;
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel-header h2 {
  margin: 2px 0 0;
  color: var(--ink-strong);
  font-size: 25px;
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-panel-header button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-panel-header button:hover {
  background: var(--blue-soft);
  color: var(--blue);
  transform: rotate(4deg);
}

.contact-panel > p {
  margin: 17px 2px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-options {
  display: grid;
  gap: 8px;
}

.contact-options > a {
  min-height: 66px;
  padding: 10px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-strong);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-options > a:hover {
  border-color: rgba(0, 92, 162, 0.38);
  background: var(--white);
  transform: translateX(3px);
}

.contact-option-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
}

.contact-options strong,
.contact-options small {
  display: block;
}

.contact-options strong {
  font-size: 13px;
}

.contact-options small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.contact-options b {
  color: var(--blue);
  font-size: 16px;
}

.contact-legal-link {
  margin: 13px 2px 0;
  display: inline-block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  text-underline-offset: 3px;
}

@media (max-width: 1250px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    width: min(100% - 40px, 760px);
    margin: 8px auto 0;
    padding: 10px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 720;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-control);
    background: var(--ink);
    color: var(--white);
  }

  .mobile-nav a[aria-current="true"]:not(:last-child) {
    color: var(--blue);
  }

  .hero-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.84fr) minmax(0, 1fr);
  }

  .template-image {
    height: 270px;
  }

  .journey-scroll {
    grid-template-columns: repeat(5, 240px);
    scroll-snap-type: x proximity;
  }

  .operations-flow {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr) minmax(0, 0.9fr);
  }

  .operation-card {
    padding: 23px;
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 30px, 1480px);
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    width: min(100% - 40px, 760px);
    margin: 8px auto 0;
    padding: 10px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 720;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-control);
    background: var(--ink);
    color: var(--white);
  }

  .mobile-nav a[aria-current="true"]:not(:last-child) {
    color: var(--blue);
  }

  .hero {
    margin-top: 36px;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-side {
    max-width: 680px;
  }

  .hero-showcase {
    height: auto;
    min-height: 925px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 210px 485px 210px;
  }

  .shot-nail {
    grid-column: 1;
    grid-row: 1;
  }

  .shot-spa {
    grid-column: 2;
    grid-row: 1;
  }

  .booking-phone {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .shot-owner {
    grid-column: 1;
    grid-row: 3;
  }

  .shot-barber {
    grid-column: 2;
    grid-row: 3;
  }

  .concept-badge {
    top: 225px;
  }

  .showcase-caption {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
  }

  .showcase-caption span:last-child {
    text-align: center;
  }

  .template-grid {
    padding-bottom: 14px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .template-card {
    min-width: min(76vw, 470px);
    scroll-snap-align: center;
  }

  .operations-flow {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .operations-flow::before {
    display: none;
  }

  .operation-card,
  .schedule-card {
    min-height: 0;
  }

  .request-ticket {
    margin-top: 30px;
  }

  .calculator-section,
  .packages-section {
    padding: 58px 34px;
  }

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

  .package-panel {
    grid-template-columns: minmax(155px, 0.7fr) minmax(0, 1.3fr);
  }

  .package-action {
    grid-column: 1 / -1;
    min-height: 0;
    align-items: baseline;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }
}

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

  html {
    scroll-padding-top: 84px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  body {
    background:
      radial-gradient(circle at 5% 4%, rgba(176, 226, 247, 0.38), transparent 19rem),
      radial-gradient(circle at 95% 7%, rgba(246, 211, 195, 0.32), transparent 21rem),
      var(--paper);
  }

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

  .nav-shell {
    min-height: 58px;
    padding: 5px 6px 5px 12px;
    border-radius: 12px;
  }

  .brand img {
    width: 110px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .mobile-nav {
    width: calc(100% - 20px);
  }

  .hero {
    margin-top: 30px;
  }

  .hero h1,
  .editorial-heading h2,
  .section-intro h2,
  .company-proof h2,
  .final-cta h2 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -0.055em;
  }

  .hero-side > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 781px;
    padding: 7px;
    grid-template-rows: 150px 461px 150px;
    gap: 6px;
  }

  .showcase-shot figcaption {
    right: 6px;
    bottom: 6px;
    padding: 5px 6px;
    font-size: 8px;
  }

  .booking-phone {
    width: min(278px, calc(100% - 36px));
    min-height: 432px;
    padding: 13px 11px 12px;
    border-width: 6px;
    border-radius: 31px;
  }

  .booking-phone::before {
    top: 5px;
    width: 72px;
    height: 15px;
  }

  .phone-shop {
    padding-top: 15px;
  }

  .phone-services {
    gap: 4px;
  }

  .phone-services > div {
    padding: 6px;
  }

  .phone-date {
    padding-bottom: 8px;
  }

  .concept-badge {
    top: 163px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .showcase-caption {
    padding: 13px 16px;
  }

  .showcase-caption span {
    font-size: 11px;
  }

  .proof-strip {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 70px;
    padding: 14px 18px;
  }

  .proof-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    margin-top: 92px;
  }

  .editorial-heading,
  .section-intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .editorial-heading > p:last-child,
  .section-intro > p {
    margin-top: 15px;
    font-size: 15px;
  }

  .template-grid {
    margin-right: -12px;
  }

  .template-card {
    min-width: 86vw;
  }

  .template-image {
    height: 250px;
  }

  .journey-section {
    width: 100%;
    padding: 76px 0 55px;
  }

  .journey-section .editorial-heading {
    padding: 0 24px;
  }

  .journey-toolbar {
    margin-top: -7px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .journey-toolbar p small {
    max-width: 34vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .journey-scroll {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: repeat(5, min(78vw, 276px));
    scroll-snap-type: x mandatory;
  }

  .journey-step.is-featured {
    transform: none;
  }

  .journey-facts {
    width: calc(100% - 48px);
    padding: 0;
    grid-template-columns: 1fr;
  }

  .journey-facts span {
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }

  .journey-facts span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .operation-card {
    padding: 24px 20px;
  }

  .schedule-grid {
    grid-template-columns: 43px repeat(3, 1fr);
  }

  .concept-note {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .calculator-section,
  .packages-section {
    width: 100%;
    padding: 52px 24px;
    border-radius: 0;
  }

  .calculator-form {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .field label {
    min-height: 0;
    margin-bottom: 6px;
  }

  .calculator-result {
    min-height: 210px;
  }

  .process-section {
    padding-top: 54px;
  }

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

  .process-line li {
    padding: 26px 16px 26px 58px;
  }

  .process-line li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-line > li > span {
    top: 29px;
    left: 16px;
  }

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

  .package-selector button {
    min-width: 0;
    min-height: 72px;
    padding: 9px 6px;
    font-size: 12px;
  }

  .package-selector button > span {
    font-size: 12px;
  }

  .package-selector button > small {
    font-size: 10px;
    line-height: 1.2;
  }

  .package-panel {
    padding: 28px 21px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .package-heading,
  .package-panel > div:first-child {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-panel h3 {
    font-size: 44px;
  }

  .package-details {
    gap: 20px;
  }

  .pricing-calculator,
  .package-calculator {
    padding: 18px;
  }

  .package-action {
    grid-column: auto;
    min-height: 0;
    padding: 20px;
    align-items: baseline;
  }

  .package-action > strong[data-pricing-total] {
    font-size: 38px;
  }

  .pricing-disclosure,
  .package-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
  }

  .company-proof {
    padding: 35px 24px;
    border-radius: 0;
  }

  .company-proof dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .faq-list summary {
    min-height: 74px;
    padding-right: 10px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .final-cta {
    width: 100%;
    margin-top: 92px;
    padding: 50px 24px 88px;
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .site-footer {
    padding: 31px 0 calc(100px + env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    gap: 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    min-height: 52px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: var(--ink-strong);
    box-shadow: 0 14px 34px rgba(7, 31, 51, 0.28);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(120%);
    transition: transform 220ms ease;
  }

  .mobile-sticky-cta.is-visible {
    display: flex;
    transform: translateY(0);
  }

  body.is-form-active .mobile-sticky-cta {
    pointer-events: none;
    transform: translateY(140%);
  }
}

@media (max-width: 980px) {
  .brand {
    margin-right: 0;
    padding-right: 6px;
    border-right: 0;
  }

  .brand img {
    width: 142px;
  }

  .site-header.is-scrolled .brand img {
    width: 132px;
  }

  .hero-intro {
    padding: 30px 34px 36px;
    gap: 22px;
  }

  .hero-brand-watermark {
    top: 44px;
    right: -34px;
    width: 250px;
    opacity: 0.038;
    transform: rotate(-8deg);
  }

  .hero-side {
    max-width: 640px;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    min-height: 64px;
    padding-left: 12px;
  }

  .brand img {
    width: 132px;
  }

  .site-header.is-scrolled .brand img {
    width: 122px;
  }

  .hero {
    margin-top: 24px;
  }

  .hero-intro {
    margin-bottom: 20px;
    padding: 21px 16px 28px 22px;
    border-left-width: 3px;
    border-radius: 3px 18px 18px 3px;
  }

  .hero-brand-lockup {
    margin-bottom: 14px;
    gap: 9px;
  }

  .hero-brand-lockup img {
    width: 32px;
    height: 32px;
  }

  .eyebrow {
    max-width: 190px;
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  .hero h1 span:first-child {
    font-size: 0.7em;
  }

  .hero h1 em {
    margin-top: 0.2em;
    font-size: 0.78em;
  }

  .hero-brand-watermark {
    top: 20px;
    right: -54px;
    width: 190px;
  }

  .hero-side {
    padding: 0;
  }

  .hero-showcase {
    border-radius: 14px;
  }
}

@media (max-width: 980px) {
  .services-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-heading > p {
    max-width: 640px;
    margin: 0;
  }

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

  .service-card--booking,
  .service-card--ai {
    grid-column: span 2;
  }

  .service-card--web,
  .service-card--hosting,
  .service-card--logo,
  .service-card--loyalty {
    grid-column: span 1;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .terms-card h3 {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .services-heading,
  .trust-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .services-heading h2,
  .trust-heading h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .trust-heading > p:last-child {
    margin: 15px 0 0;
    font-size: 15px;
  }

  .service-card {
    min-height: 222px;
    padding: 21px;
    border-radius: 14px;
  }

  .service-card--booking {
    min-height: 264px;
  }

  .service-card--booking .service-card-copy h3 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .service-card-copy h3 {
    font-size: 27px;
  }

  .services-disclosure {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .company-proof,
  .terms-card {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .company-card-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-card-brand img {
    width: 178px;
  }

  .company-proof h3,
  .terms-card h3 {
    margin-top: 34px;
    font-size: clamp(36px, 10vw, 48px);
  }

  .company-proof dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .terms-card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .terms-card-actions .button {
    width: 100%;
  }

  .faq-list--wide {
    margin-top: 24px;
  }

  .action-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 8px;
    align-items: end;
  }

  .action-dock .mobile-sticky-cta {
    position: static;
    grid-column: 1;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 54px;
    border-radius: 13px;
  }

  .contact-launcher {
    width: 54px;
    min-height: 54px;
    padding: 6px;
    grid-column: 2;
    justify-content: center;
    border-radius: 13px;
  }

  .contact-launcher-icon {
    width: 42px;
    height: 42px;
  }

  .contact-launcher-label {
    position: absolute;
  }

  .contact-launcher::after {
    display: none;
  }

  .contact-panel {
    position: fixed;
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-height: calc(100dvh - 108px - env(safe-area-inset-bottom));
    overflow-y: auto;
    transform-origin: right bottom;
  }

  body.is-form-active .contact-launcher {
    pointer-events: none;
    opacity: 0;
    transform: translateY(140%);
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--booking,
  .service-card--web,
  .service-card--hosting,
  .service-card--logo,
  .service-card--loyalty,
  .service-card--ai {
    min-height: 0;
    grid-column: span 1;
  }

  .service-card--booking {
    min-height: 235px;
  }

  .service-icon--browser,
  .domain-chip,
  .logo-sketch,
  .voucher-preview,
  .ai-route {
    display: none;
  }

  .service-card-copy {
    margin-top: 28px;
  }

  .loyalty-layout {
    min-height: 0;
    margin-top: 0;
    display: block;
  }

  .booking-route {
    gap: 5px;
  }

  .booking-route span {
    font-size: 8px;
  }

  .terms-card-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-side,
  .hero-showcase {
    animation: reveal-up 520ms both cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .hero-side {
    animation-delay: 60ms;
  }

  .hero-showcase {
    animation-delay: 120ms;
  }

  .reveal-item {
    transform: translateY(18px);
    transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal-item.is-revealed {
    transform: translateY(0);
  }

  .faq-list details[open] > p {
    animation: faq-open 240ms both ease-out;
  }

  .calculator-result.is-updated strong {
    animation: result-update 260ms both ease-out;
  }

  @keyframes result-update {
    0% {
      opacity: 0.62;
      transform: translateY(4px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes faq-open {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

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

  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

@media (prefers-reduced-transparency: reduce) {
  .nav-shell,
  .proof-strip,
  .showcase-caption,
  .concept-note {
    background: var(--white);
    backdrop-filter: none;
  }
}
