:root {
  color-scheme: dark;
  --ink: #f6f8fc;
  --muted: #9aa9bd;
  --muted-strong: #c5cfdb;
  --night: #050912;
  --night-2: #08101d;
  --panel: rgba(13, 24, 40, 0.78);
  --panel-solid: #0d1828;
  --line: rgba(157, 188, 224, 0.16);
  --line-strong: rgba(128, 190, 255, 0.35);
  --blue: #1683ff;
  --blue-2: #5dbbff;
  --blue-soft: rgba(22, 131, 255, 0.14);
  --green: #25d366;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --container: min(1180px, calc(100% - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 6%, rgba(10, 91, 190, 0.19), transparent 28rem),
    radial-gradient(circle at 18% 35%, rgba(47, 138, 229, 0.08), transparent 35rem),
    var(--night);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  content: "";
  pointer-events: none;
}

::selection {
  color: white;
  background: rgba(22, 131, 255, 0.72);
}

img,
svg {
  display: block;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  font-weight: 620;
}

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

.section {
  position: relative;
  padding-block: clamp(82px, 10vw, 148px);
}

.section-compact {
  padding-block: 54px;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #8ec9ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.lede {
  max-width: 680px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--blue-2);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  border-color: var(--line);
  background: rgba(5, 9, 18, 0.78);
  backdrop-filter: blur(18px) saturate(1.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 1.06rem;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 62px;
  height: 48px;
  overflow: visible;
  border-radius: 18px;
  background: radial-gradient(ellipse at center, rgba(22, 131, 255, 0.18), transparent 68%);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.18) saturate(1.25) drop-shadow(0 0 12px rgba(82, 170, 255, 0.45));
  mix-blend-mode: screen;
  mask-image: none;
  -webkit-mask-image: none;
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 34px);
}

.site-nav a {
  position: relative;
  color: #b9c3d0;
  font-size: 0.86rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue-2);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: white;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 15px;
  border: 1px solid rgba(82, 174, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 131, 255, 0.1);
}

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

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(126, 172, 218, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #eef6ff;
  font-size: 0.94rem;
  font-weight: 620;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  border-color: rgba(126, 190, 255, 0.55);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(85, 173, 255, 0.65);
  background: linear-gradient(135deg, #0874ee, #168bff 62%, #3b9eff);
  box-shadow: 0 13px 38px rgba(10, 114, 241, 0.28), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  border-color: #8cc9ff;
  background: linear-gradient(135deg, #1687ff, #36a0ff);
  box-shadow: 0 16px 46px rgba(10, 114, 241, 0.38), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button-whatsapp svg {
  color: #bfffd4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8bc9ff;
  font-size: 0.9rem;
  font-weight: 620;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(900px, 100svh);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 9, 18, 0.95) 0%, rgba(5, 9, 18, 0.86) 42%, rgba(5, 9, 18, 0.72) 100%),
    radial-gradient(circle at 75% 42%, rgba(22, 131, 255, 0.23), transparent 34rem),
    url("hero-circuit-bg.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: -10%;
  width: min(680px, 65vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 112, 235, 0.17), rgba(5, 9, 18, 0) 66%);
  filter: blur(18px);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: center;
}

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

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 6.4vw, 6.5rem);
}

.hero-copy p {
  max-width: 620px;
  color: #b5c1cf;
  font-size: clamp(1.05rem, 1.8vw, 1.23rem);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: #8091a8;
  font-size: 0.82rem;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52aaff;
  box-shadow: 0 0 18px rgba(82, 170, 255, 0.9);
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 530px;
  perspective: 1100px;
}

.orbit {
  position: absolute;
  inset: 7% -4% 2% 2%;
  border: 1px solid rgba(40, 143, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(5, 92, 207, 0.08);
  transform: rotate(-12deg);
  animation: orbit-breathe 6s ease-in-out infinite;
}

.orbit::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(55, 164, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.hero-stage::before {
  position: absolute;
  z-index: 0;
  inset: 8% 0 2% 4%;
  border-radius: 46% 54% 50% 50%;
  background:
    radial-gradient(circle at 44% 46%, rgba(22, 131, 255, 0.2), transparent 42%),
    radial-gradient(circle at 75% 56%, rgba(93, 187, 255, 0.12), transparent 36%);
  filter: blur(18px);
  content: "";
}

.hero-device {
  position: absolute;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-laptop {
  z-index: 3;
  top: 52px;
  left: -4%;
  width: 88%;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 34px rgba(28, 124, 255, 0.14));
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(-1.5deg);
  animation: float-soft 7s ease-in-out infinite;
}

.hero-loyalty-phone {
  z-index: 5;
  bottom: -2px;
  left: 0;
  width: min(26%, 165px);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 28px rgba(255, 182, 73, 0.1));
  transform: rotate(-5deg);
  animation: float-soft 5.5s ease-in-out infinite;
}

.hero-ps5 {
  z-index: 4;
  right: -2%;
  bottom: 6px;
  width: min(38%, 290px);
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.43)) drop-shadow(-14px 0 30px rgba(22, 131, 255, 0.18));
  transform: rotate(2deg);
  animation: float-soft 6.5s ease-in-out infinite reverse;
}

.laptop {
  position: absolute;
  z-index: 2;
  top: 72px;
  left: 8%;
  width: 76%;
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(-1.5deg);
  transform-style: preserve-3d;
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10.2;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #46556a;
  border-radius: 17px 17px 7px 7px;
  background: linear-gradient(145deg, #27303e, #080b11 8%, #131923);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.16);
}

.laptop-base {
  position: relative;
  left: -5%;
  width: 110%;
  height: 22px;
  border-radius: 3px 3px 22px 22px;
  background: linear-gradient(#aab4c1, #596573 42%, #222b35 68%, #10151c);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.35);
}

.laptop-base::after {
  position: absolute;
  top: 0;
  left: 43%;
  width: 14%;
  height: 5px;
  border-radius: 0 0 7px 7px;
  background: #747e89;
  content: "";
}

.mock-site {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  height: 100%;
  overflow: hidden;
  border-radius: 9px;
  background: #f3f0e9;
  color: #17202a;
}

.mock-site-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11%;
}

.mock-site-copy small {
  margin-bottom: 11px;
  color: #1b6b5b;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mock-site-copy strong {
  max-width: 180px;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.mock-site-copy span {
  width: 65px;
  height: 16px;
  margin-top: 18px;
  border-radius: 999px;
  background: #206b5d;
}

.mock-site-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, transparent 58%, rgba(5, 17, 25, 0.38)),
    linear-gradient(125deg, #516d76, #c7b99e 49%, #48645b);
}

.mock-site-image::before,
.mock-site-image::after {
  position: absolute;
  content: "";
}

.mock-site-image::before {
  right: 16%;
  bottom: 14%;
  width: 58%;
  height: 62%;
  border: 5px solid rgba(240, 229, 210, 0.7);
  box-shadow: -50px 28px 0 -10px rgba(22, 54, 48, 0.8);
}

.mock-site-image::after {
  right: -12%;
  bottom: -12%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(32, 66, 57, 0.7);
  filter: blur(2px);
}

.phone {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 0;
  width: 140px;
  padding: 8px;
  border: 1px solid #536276;
  border-radius: 29px;
  background: linear-gradient(145deg, #8995a4, #181e27 8%, #060910 92%, #6d7784);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.48);
  transform: rotate(-6deg);
  animation: float-soft 5s ease-in-out infinite;
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background: #05070b;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: 42px 13px 15px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(109, 192, 255, 0.34), transparent 42%),
    linear-gradient(160deg, #0c2b57, #071426);
}

.phone-screen small {
  color: #b8dfff;
  font-size: 0.55rem;
}

.loyalty-card {
  width: 100%;
  margin-top: 13px;
  padding: 18px 12px;
  border: 1px solid rgba(130, 207, 255, 0.35);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(47, 145, 255, 0.7), rgba(22, 74, 151, 0.64));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.25);
  text-align: center;
}

.loyalty-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.7rem;
}

.stamps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.stamps i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 2px rgba(5, 35, 70, 0.18);
}

.stamps i:last-child {
  background: rgba(255, 255, 255, 0.12);
}

.console {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: 50px;
  width: 126px;
  height: 300px;
  border-radius: 70% 12% 16% 55% / 14% 24% 22% 16%;
  background: linear-gradient(98deg, #bfc8d2, #f8f8f7 18%, #667182 22%, #101725 45%, #d9dfe6 48%, #fff 72%, #8b96a6);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), -16px 0 42px rgba(21, 109, 226, 0.2);
  transform: rotate(3deg);
}

.console::after {
  position: absolute;
  right: 17%;
  bottom: 10%;
  width: 4px;
  height: 65%;
  border-radius: 4px;
  background: #116cff;
  box-shadow: 0 0 16px #147dff;
  content: "";
}

.stage-label {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(130, 193, 255, 0.27);
  border-radius: 10px;
  background: rgba(8, 16, 28, 0.76);
  color: #cfe9ff;
  font-size: 0.71rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.stage-label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45a5ff;
  box-shadow: 0 0 12px #45a5ff;
  content: "";
}

.stage-label-web {
  top: 22%;
  left: 2%;
}

.stage-label-card {
  bottom: 9%;
  left: 26%;
}

.stage-label-repair {
  right: 0;
  bottom: 21%;
}

.quick-services {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 17, 29, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 134px;
  padding: 24px;
  transition: background 180ms ease;
}

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

.quick-card:hover {
  background: rgba(41, 126, 218, 0.075);
}

.quick-icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(104, 181, 255, 0.21);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(45, 146, 255, 0.2), rgba(8, 31, 62, 0.55));
  color: #63baff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
}

.quick-icon svg,
.service-icon svg {
  width: 27px;
  height: 27px;
}

.quick-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-arrow {
  color: #70859c;
  transition: color 180ms ease, transform 180ms ease;
}

.quick-arrow svg {
  width: 20px;
  height: 20px;
}

.quick-card:hover .quick-arrow {
  color: var(--blue-2);
  transform: translateX(3px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.section-heading > div:first-child {
  max-width: 740px;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.split-copy p {
  color: var(--muted);
}

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

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(57, 153, 255, 0.12), transparent 35%),
    rgba(11, 20, 34, 0.84);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  border-color: rgba(112, 187, 255, 0.34);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #f4f1ea;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 25px;
  padding-inline: 10px;
  background: #1d2631;
}

.browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #566273;
}

.project-preview {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #121822;
}

.project-preview::before,
.project-preview::after {
  position: absolute;
  content: "";
}

.project-preview small {
  display: block;
  margin-bottom: 9px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-preview strong {
  display: block;
  max-width: 180px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.03;
}

.project-preview span {
  display: block;
  width: 58px;
  height: 15px;
  margin-top: 15px;
  border-radius: 999px;
}

.project-live-preview {
  position: relative;
  height: clamp(250px, 19vw, 320px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(22, 131, 255, 0.18), transparent 34%),
    #0a101a;
}

.project-live-preview iframe {
  width: 235%;
  height: 235%;
  border: 0;
  background: #0a101a;
  transform: scale(0.425);
  transform-origin: top left;
  pointer-events: none;
}

.project-live-preview::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(180deg, rgba(5, 9, 18, 0.02), rgba(5, 9, 18, 0.12));
  content: "";
  pointer-events: none;
}

.project-nature {
  padding: 34px 24px;
  background:
    linear-gradient(90deg, rgba(235, 240, 225, 0.96) 0 54%, rgba(235, 240, 225, 0.04) 74%),
    radial-gradient(circle at 84% 34%, #dbe5ac 0 18%, transparent 19%),
    linear-gradient(145deg, #dce9c8, #5b765a 65%, #2d463b);
}

.project-nature small,
.project-nature span {
  color: #3f6a4c;
}

.project-nature span {
  background: #3f6a4c;
}

.project-nature::after {
  right: -12%;
  bottom: -24%;
  width: 58%;
  aspect-ratio: 1;
  border: 18px solid rgba(245, 255, 232, 0.38);
  border-radius: 52% 48% 60% 40%;
  transform: rotate(18deg);
}

.project-food {
  padding: 34px 24px;
  background:
    radial-gradient(circle at 75% 65%, #b4522a 0 16%, #f0b571 17% 23%, transparent 24%),
    radial-gradient(circle at 83% 52%, #3d5b31 0 5%, transparent 6%),
    linear-gradient(125deg, #171815 0 57%, #5b3325 58%, #201714);
  color: #f7ecda;
}

.project-food small {
  color: #e5b477;
}

.project-food span {
  background: #d57a3e;
}

.project-property {
  padding: 34px 24px;
  background:
    linear-gradient(90deg, rgba(235, 241, 244, 0.95) 0 52%, transparent 70%),
    linear-gradient(160deg, transparent 64%, #5fa6bc 65% 72%, #c2d8db 73%),
    linear-gradient(125deg, #d9e9f0, #6b8497);
}

.project-property small {
  color: #55718a;
}

.project-property span {
  background: #407d9d;
}

.project-property::after {
  right: 8%;
  bottom: 22%;
  width: 38%;
  height: 42%;
  background: linear-gradient(150deg, #f2f0eb 50%, #7a8790 51%);
  box-shadow: -34px 24px 0 -7px #d8d4cc;
}

.project-beauty {
  padding: 34px 24px;
  background:
    radial-gradient(circle at 82% 38%, rgba(255, 225, 222, 0.9), transparent 20%),
    linear-gradient(125deg, #fff7f3 0 54%, #d9a6a0 55%, #855c5b);
}

.project-beauty small {
  color: #9d5b63;
}

.project-beauty span {
  background: #ad6870;
}

.project-legal {
  padding: 34px 24px;
  background:
    linear-gradient(90deg, rgba(242, 237, 224, 0.95) 0 54%, transparent 70%),
    linear-gradient(145deg, #f2ede0, #343e4d 56%, #17202d);
}

.project-legal small {
  color: #8a7044;
}

.project-legal span {
  background: #77603b;
}

.project-shop {
  padding: 34px 24px;
  background:
    radial-gradient(circle at 80% 52%, #ff775c 0 16%, #f6d9c1 17% 26%, transparent 27%),
    linear-gradient(120deg, #f8eadf 0 54%, #7a9ca0 55%, #30545d);
}

.project-shop small {
  color: #b3513d;
}

.project-shop span {
  background: #ce5e47;
}

.project-meta {
  padding: 20px 9px 9px;
}

.project-meta p {
  margin: 0 0 14px;
  color: #8495aa;
  font-size: 0.82rem;
}

.project-meta h3 {
  margin-bottom: 7px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.project-tags span,
.tag {
  padding: 5px 9px;
  border: 1px solid rgba(134, 175, 218, 0.15);
  border-radius: 999px;
  background: rgba(112, 174, 238, 0.05);
  color: #8799ae;
  font-size: 0.67rem;
}

.project-meta .text-link {
  margin-top: 18px;
}

.compact-feature-grid {
  grid-template-columns: 1fr;
}

.human-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px dashed rgba(122, 172, 220, 0.25);
  border-radius: 13px;
  color: #8292a5;
  font-size: 0.8rem;
}

.human-note::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #53adff;
  content: "";
}

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

.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(48, 150, 255, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(16, 31, 51, 0.86), rgba(7, 14, 25, 0.92));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.23);
  flex-direction: column;
}

.pricing-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%);
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card h3 {
  margin-bottom: 12px;
  color: #f2f8ff;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.pricing-card p {
  margin-bottom: 18px;
  color: #9cabbc;
  font-size: 0.93rem;
}

.pricing-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.pricing-card-featured {
  border-color: rgba(83, 173, 255, 0.48);
  background:
    radial-gradient(circle at 78% 0%, rgba(83, 173, 255, 0.3), transparent 37%),
    linear-gradient(150deg, rgba(13, 44, 86, 0.96), rgba(7, 15, 29, 0.94));
  box-shadow: 0 24px 80px rgba(5, 95, 210, 0.18), var(--shadow);
}

.pricing-card-launch {
  border-color: rgba(96, 190, 255, 0.56);
  background:
    radial-gradient(circle at 14% 0%, rgba(42, 159, 255, 0.32), transparent 38%),
    radial-gradient(circle at 94% 8%, rgba(36, 211, 102, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(9, 37, 74, 0.98), rgba(5, 12, 24, 0.95));
}

.pricing-subscription-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 58px);
  margin-bottom: 20px;
  padding: clamp(28px, 4vw, 48px);
  border-color: rgba(86, 184, 255, 0.72);
  background:
    radial-gradient(circle at 8% 0%, rgba(55, 169, 255, 0.38), transparent 36%),
    radial-gradient(circle at 96% 100%, rgba(36, 211, 102, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(10, 46, 94, 0.98), rgba(5, 13, 27, 0.98) 58%, rgba(5, 23, 38, 0.98));
  box-shadow: 0 28px 90px rgba(3, 104, 224, 0.24), 0 0 0 1px rgba(86, 184, 255, 0.08) inset;
}

.pricing-subscription-card::after {
  position: absolute;
  right: -110px;
  top: -130px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(103, 196, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(91, 184, 255, 0.025), 0 0 0 104px rgba(91, 184, 255, 0.018);
  content: "";
  pointer-events: none;
}

.subscription-plan-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscription-plan-main .pricing-topline {
  width: 100%;
}

.subscription-plan-main .tag {
  border-color: rgba(125, 255, 178, 0.38);
  background: rgba(36, 211, 102, 0.13);
  color: #a8ffcb;
}

.subscription-kicker {
  margin-bottom: 9px;
  color: #75c8ff;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-subscription-card h3 {
  max-width: 620px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.pricing-subscription-card h4 {
  margin: 0 0 16px;
  color: #eff8ff;
  font-size: 1rem;
}

.subscription-price-row {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  margin: 10px 0 9px;
}

.subscription-price-item {
  display: grid;
  gap: 4px;
}

.subscription-price-item span {
  color: #9fb1c5;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subscription-price-item strong {
  color: #f5fbff;
  font-size: clamp(1.7rem, 3.1vw, 2.65rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.subscription-price-plus {
  color: #63bdff;
  font-size: 1.4rem;
  font-weight: 780;
}

.subscription-plan-main .price-note {
  margin-bottom: 28px;
}

.subscription-plan-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(121, 193, 255, 0.17);
  border-radius: 22px;
  background: rgba(3, 10, 20, 0.34);
  backdrop-filter: blur(12px);
}

.subscription-plan-details .pricing-list {
  margin-bottom: 0;
}

.pricing-list-conditions li {
  gap: 9px;
}

.condition-mark {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid rgba(97, 185, 255, 0.28);
  border-radius: 7px;
  background: rgba(52, 154, 255, 0.09);
  color: #72c4ff;
  font-size: 0.62rem;
  font-weight: 800;
}

.pricing-card-launch::after,
.pricing-card-featured::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(91, 184, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(91, 184, 255, 0.035), 0 0 0 56px rgba(91, 184, 255, 0.02);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 31px;
  margin-bottom: 18px;
}

.pricing-topline small {
  color: #7f93aa;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-topline .tag {
  border-color: rgba(93, 187, 255, 0.38);
  background: rgba(44, 148, 255, 0.12);
  color: #bfe3ff;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-block {
  display: grid;
  gap: 3px;
  margin: 8px 0 22px;
}

.price-old {
  width: max-content;
  color: #798ca2;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 99, 99, 0.8);
  text-decoration-thickness: 2px;
}

.price {
  color: #f7fbff;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-note {
  color: #77c1ff;
  font-size: 0.8rem;
  font-weight: 680;
}

.pricing-list {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #aebdcc;
  font-size: 0.86rem;
}

.pricing-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #51b6ff;
}

.pricing-card-launch .pricing-list svg,
.pricing-card-featured .pricing-list svg {
  color: #7dffb2;
}

.pricing-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.pricing-audience span {
  padding: 7px 10px;
  border: 1px solid rgba(117, 194, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c8d7e6;
  font-size: 0.75rem;
  font-weight: 650;
}

.pricing-note-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 20px;
}

.included-excluded {
  padding: 24px;
  border: 1px solid rgba(60, 199, 126, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 211, 102, 0.12), transparent 34%),
    rgba(9, 20, 34, 0.78);
}

.included-excluded h3 {
  color: #e9fff2;
}

.included-excluded-negative {
  border-color: rgba(255, 112, 112, 0.21);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 91, 91, 0.1), transparent 34%),
    rgba(9, 20, 34, 0.78);
}

.included-excluded-negative h3 {
  color: #ffe5e5;
}

.included-excluded-negative .check-list svg {
  color: #ff7474;
}

.maintenance-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(128, 190, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 50%, rgba(22, 131, 255, 0.16), transparent 28%),
    rgba(8, 17, 30, 0.84);
}

.maintenance-strip h3 {
  margin-bottom: 0;
}

.mini-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(108px, 1fr));
  gap: 10px;
}

.mini-price-grid span {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(133, 194, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #8ea0b5;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.mini-price-grid strong {
  color: #f6fbff;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.menu-offers {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 30px;
  align-items: start;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(112, 187, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(22, 131, 255, 0.19), transparent 31%),
    linear-gradient(145deg, rgba(11, 27, 49, 0.93), rgba(6, 12, 22, 0.94));
  box-shadow: var(--shadow);
}

.menu-offers p {
  color: var(--muted);
}

.menu-offer-grid {
  display: grid;
  gap: 12px;
}

.menu-offer-grid article {
  padding: 20px;
  border: 1px solid rgba(139, 200, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.menu-offer-grid h3 {
  margin-bottom: 7px;
  color: #f2f8ff;
  font-size: 1.05rem;
}

.menu-offer-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.catalog-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 18, 31, 0.84);
  box-shadow: var(--shadow);
}

.catalog-card img {
  width: 100%;
  height: auto;
}

.catalog-card figcaption {
  padding: 16px 20px 20px;
  color: #899bb0;
  font-size: 0.82rem;
}

.loyalty-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 50%, rgba(25, 119, 235, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(14, 28, 48, 0.94), rgba(7, 14, 25, 0.94));
}

.loyalty-showcase::after {
  position: absolute;
  top: -60%;
  right: -8%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(107, 190, 255, 0.06), transparent);
  content: "";
  transform: rotate(18deg);
  animation: sheen 8s ease-in-out infinite;
}

.loyalty-device {
  position: relative;
  z-index: 2;
  width: min(250px, 80%);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid #536276;
  border-radius: 42px;
  background: linear-gradient(145deg, #718092, #0a0d13 8%, #111924 92%, #6f7d8d);
  box-shadow: 0 40px 72px rgba(0, 0, 0, 0.45);
  transform: rotate(-5deg);
}

.loyalty-device::before {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #05070c;
  content: "";
  transform: translateX(-50%);
}

.loyalty-device-image {
  width: min(370px, 96%);
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
  transform: rotate(-3deg);
}

.loyalty-device-image::before {
  display: none;
}

.loyalty-device-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  filter: drop-shadow(0 38px 54px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 32px rgba(207, 155, 72, 0.12));
}

.loyalty-device-screen {
  min-height: 470px;
  padding: 64px 18px 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0, rgba(89, 178, 255, 0.36), transparent 36%),
    linear-gradient(160deg, #123a6f, #071324 72%);
}

.loyalty-device-screen > small {
  display: block;
  margin-bottom: 19px;
  color: #baddff;
  text-align: center;
}

.wallet-card {
  padding: 26px 21px;
  border: 1px solid rgba(159, 215, 255, 0.38);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(145deg, #167eef, #123e8d);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.28);
  text-align: center;
}

.wallet-card b {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.wallet-card p {
  margin-bottom: 21px;
  color: #dceeff;
  font-size: 0.74rem;
}

.wallet-card .stamps {
  gap: 9px;
}

.wallet-card .stamps i {
  background: rgba(255, 255, 255, 0.94);
}

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

.flow-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list li:last-child {
  border-bottom: 0;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(76, 165, 255, 0.28);
  border-radius: 50%;
  background: rgba(22, 131, 255, 0.1);
  color: #73bfff;
  font-size: 0.8rem;
  font-weight: 700;
}

.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.flow-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

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

.repair-shot {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(164, 185, 207, 0.15);
  border-radius: 18px;
  background: #171d23;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.repair-shot:nth-child(1),
.repair-shot:nth-child(4) {
  grid-column: span 7;
}

.repair-shot:nth-child(2),
.repair-shot:nth-child(3) {
  grid-column: span 5;
}

.repair-shot:nth-child(5),
.repair-shot:nth-child(6) {
  grid-column: span 6;
}

.repair-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(4, 8, 12, 0.76)),
    radial-gradient(circle at 78% 24%, rgba(255, 196, 128, 0.18), transparent 32%),
    linear-gradient(135deg, #303438, #171d23 52%, #413b34);
}

.repair-visual::before,
.repair-visual::after {
  position: absolute;
  content: "";
}

.repair-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.repair-shot::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 8, 12, 0.86)),
    linear-gradient(90deg, rgba(5, 9, 18, 0.2), transparent 48%);
  content: "";
}

.visual-laptop::before {
  top: 24%;
  left: 14%;
  width: 58%;
  height: 43%;
  border: 8px solid #222930;
  border-radius: 13px;
  background:
    radial-gradient(circle at 38% 52%, #151b21 0 18%, #444d54 19% 22%, transparent 23%),
    linear-gradient(135deg, #394148, #10151a);
  box-shadow: 0 16px 0 -5px #777f84, 0 30px 38px rgba(0, 0, 0, 0.48);
  transform: rotate(-7deg);
}

.visual-laptop::after {
  top: 12%;
  right: 10%;
  width: 18%;
  height: 60%;
  border-radius: 50%;
  background: linear-gradient(100deg, transparent 42%, #111 43% 54%, transparent 55%);
  transform: rotate(30deg);
}

.visual-desktop::before {
  top: 8%;
  right: 16%;
  width: 47%;
  height: 75%;
  border: 7px solid #0f1419;
  border-radius: 8px;
  background:
    radial-gradient(circle at 73% 26%, #171d22 0 12%, #53606a 13% 16%, transparent 17%),
    radial-gradient(circle at 73% 63%, #171d22 0 12%, #53606a 13% 16%, transparent 17%),
    repeating-linear-gradient(90deg, transparent 0 12%, rgba(86, 118, 141, 0.4) 13% 14%),
    #222a31;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.46);
  transform: perspective(700px) rotateY(-12deg);
}

.visual-desktop::after {
  top: 25%;
  left: 12%;
  width: 29%;
  height: 42%;
  border-radius: 44% 55% 38% 62%;
  background: #111820;
  box-shadow: 20px 8px 0 -8px #1c232a;
  transform: rotate(24deg);
}

.visual-console::before {
  top: 25%;
  left: 15%;
  width: 62%;
  height: 42%;
  border: 6px solid #1c252e;
  border-radius: 18px 18px 8px 8px;
  background:
    radial-gradient(circle at 30% 45%, #161c22 0 18%, #424e58 19% 21%, transparent 22%),
    repeating-linear-gradient(90deg, transparent 0 7%, rgba(76, 91, 102, 0.4) 8% 9%),
    #10161c;
  box-shadow: 0 28px 0 -12px #0a0d11, 0 34px 45px rgba(0, 0, 0, 0.55);
  transform: rotate(-4deg);
}

.visual-console::after {
  top: 11%;
  right: 11%;
  width: 28%;
  height: 58%;
  border-radius: 44% 55% 38% 62%;
  background: #0b1016;
  transform: rotate(30deg);
}

.visual-board::before {
  top: 18%;
  left: 15%;
  width: 64%;
  height: 56%;
  border: 7px solid #151a1f;
  border-radius: 8px;
  background:
    radial-gradient(circle at 29% 30%, #485056 0 8%, #161b1f 9% 14%, transparent 15%),
    linear-gradient(90deg, transparent 65%, #3c77a0 66% 70%, transparent 71%),
    repeating-linear-gradient(45deg, transparent 0 8%, rgba(66, 117, 91, 0.32) 9% 10%),
    #19332a;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.5);
  transform: rotate(-8deg);
}

.visual-board::after {
  top: 14%;
  right: 8%;
  width: 22%;
  height: 32%;
  border: 6px solid #e18b28;
  border-radius: 6px;
  background: #252a2e;
  box-shadow: inset 0 0 0 2px #111;
  transform: rotate(8deg);
}

.repair-caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.repair-caption span {
  display: block;
  color: #93a5b7;
  font-size: 0.75rem;
}

.repair-caption strong {
  font-size: 1rem;
}

.placeholder-flag {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.55);
  color: #8997a6;
  font-size: 0.62rem;
  backdrop-filter: blur(10px);
}

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

.review {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 32, 52, 0.84), rgba(8, 15, 25, 0.84));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 25px;
  color: #379bff;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.review blockquote {
  margin: 0;
  color: #dce5ef;
  font-size: 1.03rem;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 26px;
  color: #8ea0b3;
  font-size: 0.82rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(102, 179, 255, 0.2);
  border-radius: 50%;
  background: rgba(22, 131, 255, 0.1);
  color: #70bfff;
  font-size: 0.72rem;
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 36px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 21, 35, 0.78);
}

.contact-list {
  display: grid;
  gap: 17px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.contact-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #aab9c8;
  font-size: 0.9rem;
}

.contact-list svg {
  width: 18px;
  height: 18px;
  color: #5eb5ff;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.zone-list span,
.social-links a {
  padding: 7px 10px;
  border: 1px solid rgba(104, 181, 255, 0.18);
  border-radius: 999px;
  background: rgba(22, 131, 255, 0.06);
  color: #9fb6ca;
  font-size: 0.76rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  border-color: rgba(104, 181, 255, 0.42);
  background: rgba(22, 131, 255, 0.12);
  color: #d7edff;
}

.map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(147deg, transparent 0 42%, rgba(103, 135, 122, 0.16) 43% 46%, transparent 47%),
    repeating-radial-gradient(ellipse at 36% 44%, transparent 0 31px, rgba(104, 141, 124, 0.12) 32px 33px),
    linear-gradient(135deg, #1a3136, #16242c 46%, #26352f);
}

.map::before {
  position: absolute;
  top: -14%;
  left: -11%;
  width: 47%;
  height: 130%;
  border-radius: 43% 57% 67% 33% / 31% 37% 63% 69%;
  background: #0b2537;
  box-shadow: inset -16px 0 42px rgba(20, 85, 101, 0.34);
  content: "";
  transform: rotate(-12deg);
}

.map::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(28deg, transparent 49.6%, rgba(169, 195, 171, 0.2) 50%, transparent 50.4%),
    linear-gradient(154deg, transparent 64.6%, rgba(169, 195, 171, 0.12) 65%, transparent 65.4%);
  content: "";
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(218, 229, 220, 0.68);
  font-size: 0.7rem;
}

.map-label-1 {
  top: 25%;
  left: 49%;
}

.map-label-2 {
  right: 18%;
  bottom: 22%;
}

.map-label-3 {
  left: 27%;
  bottom: 19%;
}

.map-pin {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: 58%;
  color: #55b0ff;
  filter: drop-shadow(0 8px 15px rgba(21, 115, 229, 0.7));
  transform: translate(-50%, -100%);
}

.map-pin svg {
  width: 43px;
  height: 43px;
  fill: rgba(20, 114, 242, 0.18);
}

.map-pin span {
  position: absolute;
  top: 42px;
  left: 50%;
  padding: 4px 8px;
  border: 1px solid rgba(107, 181, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 11, 18, 0.76);
  color: #d6edff;
  font-size: 0.68rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 6vw, 65px);
  overflow: hidden;
  border: 1px solid rgba(90, 170, 255, 0.26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 50%, rgba(36, 133, 251, 0.24), transparent 27%),
    linear-gradient(135deg, #0b1a2e, #08111f 58%, #0d2443);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  right: -6%;
  bottom: -100%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(70, 165, 255, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(70, 165, 255, 0.04), 0 0 0 68px rgba(70, 165, 255, 0.025);
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel .button {
  position: relative;
  z-index: 2;
}

.request-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.05fr);
  align-items: start;
}

.request-form {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(123, 190, 255, 0.2);
  border-radius: 24px;
  background: rgba(3, 10, 18, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.request-form .form-grid {
  margin-top: 0;
}

.request-form .button {
  justify-self: start;
  margin-top: 2px;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 12, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 370px;
  margin: 21px 0 0;
  color: #7e8fa3;
  font-size: 0.87rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 17px;
  color: #cad4df;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: grid;
  gap: 11px;
  color: #8191a4;
  font-size: 0.84rem;
  font-style: normal;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #c9e7ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #66768a;
  font-size: 0.74rem;
}

.footer-bottom span:last-child {
  text-align: right;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 610px;
  padding-top: calc(var(--header-height) + 110px);
  padding-bottom: 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 9, 18, 0.94), rgba(5, 9, 18, 0.82) 54%, rgba(5, 9, 18, 0.72)),
    radial-gradient(circle at 78% 34%, rgba(22, 131, 255, 0.2), transparent 32rem),
    url("hero-circuit-bg.png") center / cover no-repeat;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 6%;
  width: 480px;
  aspect-ratio: 1;
  border: 1px solid rgba(67, 161, 255, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(33, 120, 234, 0.025), 0 0 0 160px rgba(33, 120, 234, 0.015);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 690px;
  color: #afbdcb;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 50px;
  align-items: end;
}

.page-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 23, 38, 0.7);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: #dff1ff;
  font-size: 1.5rem;
}

.stat-card span {
  color: #8091a5;
  font-size: 0.78rem;
}

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

.feature-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 51, 0.78), rgba(8, 15, 25, 0.82));
}

.feature-card .service-icon {
  margin-bottom: 36px;
}

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

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #a8b5c4;
  font-size: 0.9rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #54aeff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 240px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 22, 36, 0.76);
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 56px;
  color: #4da8ff;
  font-size: 0.78rem;
  font-weight: 700;
  content: "0" counter(process);
}

.process-card::after {
  position: absolute;
  top: 35px;
  right: -14px;
  width: 75px;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 164, 255, 0.4), transparent);
  content: "";
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 22, 36, 0.7);
}

.faq-list summary {
  position: relative;
  padding: 22px 38px 22px 0;
  cursor: pointer;
  font-weight: 590;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #6dbbff;
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 22px;
  color: var(--muted);
}

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

.legal-card {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 51, 0.84), rgba(8, 15, 25, 0.86));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
}

.legal-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.legal-card p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-option {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 23, 38, 0.76);
}

.contact-option svg {
  width: 24px;
  height: 24px;
  margin-bottom: 19px;
  color: #62b7ff;
}

.contact-option p {
  margin-bottom: 6px;
  color: #7f91a5;
  font-size: 0.82rem;
}

.contact-option a,
.contact-option address {
  color: #dce8f4;
  font-size: 1rem;
  font-style: normal;
}

.contact-form {
  padding: clamp(27px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 51, 0.86), rgba(8, 15, 25, 0.88));
}

.contact-form h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

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

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

.field label {
  color: #9aabbd;
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(137, 172, 209, 0.18);
  border-radius: 13px;
  outline: none;
  background: rgba(2, 8, 15, 0.5);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 50px;
  padding-inline: 15px;
}

.field textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(69, 165, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(28, 130, 243, 0.12);
}

.form-note {
  margin: 16px 0 0;
  color: #718196;
  font-size: 0.74rem;
}

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

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

[data-reveal-delay="1"] {
  transition-delay: 90ms;
}

[data-reveal-delay="2"] {
  transition-delay: 180ms;
}

[data-reveal-delay="3"] {
  transition-delay: 270ms;
}

@keyframes float-soft {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-9px);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: rotate(-12deg) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: rotate(-9deg) scale(1.025);
  }
}

@keyframes sheen {
  0%,
  70%,
  100% {
    transform: translateX(-180%) rotate(18deg);
  }
  85% {
    transform: translateX(220%) rotate(18deg);
  }
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero-copy {
    max-width: 770px;
  }

  .hero-stage {
    width: min(740px, 100%);
    margin-inline: auto;
  }

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

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

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

  .split-copy {
    position: static;
    max-width: 700px;
  }

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

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

  .pricing-subscription-card {
    grid-template-columns: 1fr;
  }

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

  .review:last-child,
  .feature-card:last-child {
    grid-column: 1 / -1;
  }

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

  .page-stat {
    max-width: 520px;
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 720px);
    --header-height: 68px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100svh - var(--header-height));
    padding: 22px 25px 80px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(5, 9, 18, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .menu-open {
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

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

  .site-nav .nav-cta {
    margin-top: 16px;
    border: 1px solid rgba(82, 174, 255, 0.34);
    text-align: center;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-stage {
    min-height: 430px;
    overflow: hidden;
  }

  .hero-laptop {
    top: 58px;
    left: 1%;
    width: 82%;
  }

  .hero-loyalty-phone {
    bottom: 16px;
    left: 2%;
    width: min(27%, 135px);
  }

  .hero-ps5 {
    right: -1%;
    bottom: 18px;
    width: min(34%, 220px);
  }

  .laptop {
    top: 55px;
    left: 7%;
    width: 77%;
  }

  .phone {
    bottom: 18px;
    width: 112px;
  }

  .phone-screen {
    min-height: 210px;
    padding-top: 37px;
  }

  .console {
    right: 1%;
    bottom: 34px;
    width: 95px;
    height: 236px;
  }

  .stage-label {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button,
  .section-heading .text-link {
    margin-top: 20px;
  }

  .loyalty-showcase {
    grid-template-columns: 1fr;
  }

  .pricing-note-grid,
  .maintenance-strip,
  .menu-offers {
    grid-template-columns: 1fr;
  }

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

  .loyalty-device {
    width: 220px;
  }

  .loyalty-device-image {
    width: min(340px, 88%);
  }

  .location-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 330px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .repair-shot:nth-child(n) {
    grid-column: span 6;
  }
}

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

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  .section {
    padding-block: 78px;
  }

  .brand-mark {
    width: 54px;
    height: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-stage {
    min-height: 330px;
    margin-top: 25px;
  }

  .orbit {
    inset: 8% 10% 2%;
  }

  .hero-laptop {
    top: 52px;
    left: -8%;
    width: 100%;
  }

  .hero-loyalty-phone {
    bottom: 16px;
    left: -1%;
    width: min(32%, 112px);
  }

  .hero-ps5 {
    right: -6%;
    bottom: 8px;
    width: min(40%, 150px);
  }

  .laptop {
    top: 43px;
    width: 80%;
  }

  .laptop-screen {
    padding: 6px;
    border-radius: 11px 11px 5px 5px;
  }

  .laptop-base {
    height: 15px;
  }

  .phone {
    width: 86px;
    padding: 5px;
    border-radius: 20px;
  }

  .phone::before {
    top: 8px;
    width: 32px;
    height: 8px;
  }

  .phone-screen {
    min-height: 162px;
    padding: 26px 7px 7px;
    border-radius: 15px;
  }

  .phone-screen small {
    display: none;
  }

  .loyalty-card {
    margin-top: 5px;
    padding: 10px 7px;
  }

  .loyalty-card strong {
    margin-bottom: 9px;
    font-size: 0.5rem;
  }

  .stamps {
    gap: 3px;
  }

  .console {
    width: 73px;
    height: 183px;
  }

  .quick-card {
    grid-template-columns: 48px 1fr auto;
    min-height: 116px;
    padding: 19px;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
  }

  .quick-icon svg {
    width: 22px;
    height: 22px;
  }

  .project-grid,
  .reviews-grid,
  .feature-grid,
  .pricing-grid,
  .pricing-grid-four,
  .process-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 22px;
  }

  .subscription-plan-details {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .subscription-price-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subscription-price-plus {
    display: none;
  }

  .pricing-topline {
    display: grid;
    justify-content: stretch;
  }

  .maintenance-strip,
  .menu-offers {
    padding: 22px;
  }

  .mini-price-grid {
    grid-template-columns: 1fr;
  }

  .review:last-child,
  .feature-card:last-child {
    grid-column: auto;
  }

  .repair-shot:nth-child(n) {
    grid-column: 1 / -1;
  }

  .repair-shot {
    min-height: 235px;
  }

  .map {
    min-height: 350px;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 130px;
  }

  .page-stat {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span:last-child {
    margin-top: 7px;
    text-align: left;
  }
}

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

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

@view-transition {
  navigation: auto;
}
