/* ============================================================
   Chameleon Wraps & Graphics — chameleonwraps.com
   Dark automotive theme · lime accent · Kanit / Barlow
   ============================================================ */

:root {
  --bg: #0a0c06;
  --bg-2: #0e1109;
  --panel: #13170d;
  --panel-2: #171c10;
  --line: rgba(182, 211, 49, 0.16);
  --lime: #b6d331;
  --lime-bright: #d7f24e;
  --lime-dim: #8ba823;
  --ink: #f4f7ec;
  --muted: #a8b096;
  --black: #0b0d07;
  --font-display: "Kanit", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-h: 76px;
  --radius: 14px;
  --shadow-glow: 0 0 60px rgba(182, 211, 49, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { width: min(860px, 100% - 48px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--lime);
  color: var(--black);
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--lime); color: var(--black); }

/* ---------- Typography helpers ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--lime);
}
.eyebrow__dash {
  width: 34px;
  height: 3px;
  background: var(--lime);
  flex: none;
  transform: skewX(-20deg);
}

.section-head { margin-bottom: clamp(40px, 6vw, 64px); }

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin-top: 14px;
}

.section-sub {
  margin-top: 14px;
  max-width: 560px;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transform: skewX(-8deg);
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  touch-action: manipulation;
}
.btn > * { transform: skewX(8deg); }
.btn:active { transform: skewX(-8deg) scale(0.97); }

.btn--primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(182, 211, 49, 0.25);
}
.btn--primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 10px 40px rgba(182, 211, 49, 0.4);
  transform: skewX(-8deg) translateY(-2px);
}

.btn--ghost {
  border-color: rgba(244, 247, 236, 0.25);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: skewX(-8deg) translateY(-2px);
}

.btn--whatsapp {
  background: #1fae54;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #25c25f;
  transform: skewX(-8deg) translateY(-2px);
}

.btn--lg { min-height: 60px; padding: 14px 40px; font-size: 17px; }
.btn--nav { min-height: 44px; padding: 8px 22px; font-size: 13px; }

.link-arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover::after { transform: translateX(6px); }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 12, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img { width: auto; height: 46px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links > a:not(.btn) {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.85;
  padding: 10px 2px;
  position: relative;
  transition: opacity 0.2s, color 0.2s;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  transition: right 0.25s var(--ease);
}
.nav__links > a:not(.btn):hover { opacity: 1; color: var(--lime); }
.nav__links > a:not(.btn):hover::after { right: 0; }

.nav__phone { font-variant-numeric: tabular-nums; white-space: nowrap; }

.lang-toggle {
  background: none;
  border: 1.5px solid rgba(244, 247, 236, 0.3);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  min-width: 44px;
  min-height: 38px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--lime); color: var(--lime); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__burger span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__glow {
  position: absolute;
  right: -10%;
  top: 20%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(182, 211, 49, 0.14) 0%, transparent 62%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(182, 211, 49, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 211, 49, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, black 20%, transparent 75%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(182, 211, 49, 0.4);
}

.hero__inner {
  position: relative;
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(52px, 8.4vw, 108px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 26px 0 24px;
  display: grid;
}
.hero__title .is-lime { color: var(--lime); }

.hero__sub {
  max-width: 480px;
  color: var(--muted);
  font-size: 18px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 40px;
}

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero__chips li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__chips svg { width: 20px; height: 20px; color: var(--lime); flex: none; }

.hero__media {
  position: relative;
}
.hero__media img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-glow), 0 30px 80px rgba(0, 0, 0, 0.55);
  clip-path: polygon(6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%, 0 6%);
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 90px;
  height: 90px;
  border-top: 3px solid var(--lime);
  border-left: 3px solid var(--lime);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 90px;
  height: 90px;
  border-bottom: 3px solid var(--lime);
  border-right: 3px solid var(--lime);
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--lime);
  overflow: hidden;
  transform: skewY(-1.2deg);
  margin-block: -10px 60px;
  border-block: 3px solid var(--black);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 13px 0;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 17px;
  color: var(--black);
  white-space: nowrap;
}
.marquee i { color: var(--black); font-size: 10px; font-style: normal; }

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

/* ---------- Services ---------- */

.services { padding: clamp(60px, 9vw, 110px) 0 0; }

.service {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0;
}
.service:nth-child(even of .service) { background: var(--bg-2); }

.service__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.service--flip .service__grid > .service__media { order: 2; }

.service__media {
  position: relative;
}
.service__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.service__num {
  position: absolute;
  top: -34px;
  left: -10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  opacity: 0.9;
  pointer-events: none;
}
.service--flip .service__num { left: auto; right: -10px; }

.service__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}
.service__title em {
  font-style: italic;
  color: var(--lime);
}

.service__lead {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 18px;
  max-width: 460px;
}

.ticks {
  list-style: none;
  display: grid;
  gap: 12px;
}
.ticks li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 0;
  height: 0;
  border-left: 9px solid var(--lime);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.service__foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.price-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}
.price-tag small {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 6px;
}

/* ---------- Process ---------- */

.process {
  padding: clamp(70px, 10vw, 120px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 26px 34px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 211, 49, 0.45);
  background: var(--panel-2);
}

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
  display: block;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- Work ---------- */

.work { padding: clamp(70px, 10vw, 120px) 0; }

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

.work__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0;
}
.work__item--wide { grid-column: 1 / -1; }

.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.6s var(--ease);
}
.work__item--wide img { aspect-ratio: 21 / 9; }
.work__item:hover img { transform: scale(1.04); }

.work__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(10, 12, 6, 0.92));
  display: grid;
  gap: 2px;
}
.work__item figcaption span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11.5px;
  color: var(--lime);
}
.work__item figcaption strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.02em;
}

/* ---------- Pricing ---------- */

.pricing {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 211, 49, 0.5);
}

.price-card--hot {
  background: linear-gradient(160deg, rgba(182, 211, 49, 0.14), var(--panel) 55%);
  border-color: rgba(182, 211, 49, 0.55);
}

.price-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  transform: skewX(-8deg);
}

.price-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  padding-right: 20px;
}

.price-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--lime);
}
.price-card__price small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-card__desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- FAQ ---------- */

.faq { padding: clamp(70px, 10vw, 120px) 0; }

.accordion { display: grid; gap: 12px; }

.accordion details {
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color 0.25s;
}
.accordion details[open] { border-color: rgba(182, 211, 49, 0.5); }

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 16.5px;
  min-height: 64px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--lime);
  flex: none;
  transition: transform 0.3s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(45deg); }

.accordion details p {
  padding: 0 24px 22px;
  color: var(--muted);
  max-width: 700px;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(182, 211, 49, 0.16), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.cta__bar {
  position: absolute;
  top: -3px;
  left: -5%;
  width: 110%;
  height: 8px;
  background: var(--lime);
  transform: rotate(-1.2deg);
}

.cta__inner { display: grid; justify-items: center; }

.cta__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1;
  margin: 18px 0 10px;
}

.cta__phone {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 48px);
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  margin-bottom: 34px;
  transition: color 0.2s;
}
.cta__phone:hover { color: var(--lime-bright); }

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.cta__note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  align-items: start;
}

.footer__brand img { width: 230px; height: auto; }
.footer__brand p {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--lime);
}

.footer__nav {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.footer__nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--lime); }

.footer__contact {
  display: grid;
  gap: 10px;
  justify-items: start;
  color: var(--muted);
}
.footer__contact a[href^="tel"] {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.footer__contact a[href^="tel"]:hover { color: var(--lime); }

.footer__social {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer__social a:hover {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-3px);
}

.footer__legal {
  border-top: 1px solid rgba(182, 211, 49, 0.1);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }
.reveal.d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 640px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    width: min(340px, 86vw);
    background: rgba(11, 13, 7, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 30px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links > a:not(.btn) {
    font-size: 19px;
    padding: 12px 0;
    width: 100%;
  }
  .nav__phone { margin-top: 10px; }
  .lang-toggle { margin: 14px 0; }
  .btn--nav { margin-top: 8px; min-height: 52px; width: 100%; }
  .nav__burger { display: flex; }
  .nav { background: rgba(10, 12, 6, 0.88); backdrop-filter: blur(14px); border-bottom-color: var(--line); }

  .service__grid { grid-template-columns: 1fr; }
  .service--flip .service__grid > .service__media { order: 0; }
  .service__num { top: -26px; font-size: 70px; }
  .service--flip .service__num { right: auto; left: -6px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .container--narrow { width: calc(100% - 36px); }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__sub { font-size: 16.5px; }
  .hero__cta .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work__item--wide img, .work__item img { aspect-ratio: 16 / 10; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { width: 100%; }
}

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