/* ═══════════════════════════════════════════════════════════════
   WEBSTYDIO — Light theme, vertical floating nav
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Light palette */
  --bg:             #f8f5f1;
  --bg-alt:         #f0ece6;
  --surface:        #ffffff;

  /* Glass */
  --glass:          rgba(0, 0, 0, 0.03);
  --glass-border:   rgba(0, 0, 0, 0.08);
  --glass-hover:    rgba(0, 0, 0, 0.06);

  /* Lines */
  --line:           rgba(0, 0, 0, 0.1);
  --line-accent:    rgba(232, 146, 124, 0.4);

  /* Text — dark warm */
  --text:           #1a1714;
  --text-2:         rgba(26, 23, 20, 0.6);
  --text-3:         rgba(26, 23, 20, 0.35);

  /* Accent — warm coral */
  --accent:         #e8927c;
  --accent-bright:  #d4765e;
  --accent-glow:    rgba(232, 146, 124, 0.35);
  --accent-soft:    rgba(232, 146, 124, 0.1);

  /* Secondary — cool blue */
  --blue:           #5b8af5;
  --blue-soft:      rgba(91, 138, 245, 0.08);

  /* Layout */
  --container:      1200px;
  --topbar-h:       72px;
  --vnav-w:         64px;

  /* Motion */
  --ease:           cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --r:              14px;
  --r-lg:           22px;
  --r-pill:         999px;
}


/* ── Reset ───────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  overflow-x: clip;
}

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding-left: calc(var(--vnav-w) + 16px);
}

.hide-mobile { display: inline; }


/* ═══════════════════════════════════════════════════════════════
   TOP BAR — logo + lang, minimal
   ═══════════════════════════════════════════════════════════════ */

.topbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 90;
  pointer-events: none;
  transition: none;
}

/* Burger sits above mobile overlay (z-index 105) when menu is open */
.topbar:has(.burger.is-open) {
  z-index: 120;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px 20px calc(var(--vnav-w) + 24px);
  pointer-events: auto;
  border-radius: 0;
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
}

.topbar.is-scrolled .topbar__inner {
  background: rgba(248, 245, 241, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
  padding-top: 14px;
  padding-bottom: 14px;
}


/* Logo -------------------------------------------------------- */

.logo {
  display: inline-block;
  position: relative;
}

.logo__word {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  position: relative;
}

.logo__o {
  display: inline-block;
  position: relative;
  color: var(--accent);
  transition: color 0.3s;
}

/* Scramble effect handled by JS — these are the visual states */
.logo__o.is-scrambling {
  animation: logo-glitch 0.08s steps(1) infinite;
}

@keyframes logo-glitch {
  0%   { opacity: 0.3; transform: translateX(2px) skewX(10deg); }
  25%  { opacity: 0.7; transform: translateX(-1px) skewX(-5deg); }
  50%  { opacity: 0.4; transform: translateX(1px) skewX(8deg); }
  75%  { opacity: 0.8; transform: translateX(-2px) skewX(-3deg); }
  100% { opacity: 0.5; transform: translateX(0) skewX(6deg); }
}

.logo__o.is-revealed {
  animation: none;
  opacity: 1;
  transform: none;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(232, 146, 124, 0.15);
  transition: all 0.4s var(--ease-out);
}

.logo__o.is-hidden {
  animation: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
}


/* Topbar calculator button --------------------------------------- */

.topbar-calc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 8px 0 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease);
}

.topbar-calc:hover {
  border-color: var(--line-accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(232, 146, 124, 0.4);
}

.topbar-calc:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.topbar-calc__label {
  position: relative;
  z-index: 1;
}

.topbar-calc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.topbar-calc:hover .topbar-calc__icon {
  background: var(--accent-bright);
  transform: rotate(-8deg) scale(1.06);
}


/* ═══════════════════════════════════════════════════════════════
   VERTICAL FLOATING NAV — fixed left
   ═══════════════════════════════════════════════════════════════ */

.vnav {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--vnav-w);
  height: 100vh;
  height: 100dvh;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--topbar-h) 0 24px;
}

.vnav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}

.vnav__link:hover,
.vnav__link--active {
  color: var(--text);
}

.vnav__link--active {
  font-weight: 700;
}

.vnav__line {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--line), transparent);
  transform: translateX(-50%);
}

.vnav__text {
  transform: rotate(180deg);
}

/* Light clone — visible only over dark footer via clip-path */
.vnav--light {
  pointer-events: none;
  z-index: 81;
}

.vnav--light .vnav__link {
  color: rgba(255, 255, 255, 0.45);
}

.vnav--light .vnav__link:hover,
.vnav--light .vnav__link--active {
  color: #fff;
}

.vnav--light .vnav__line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE BURGER + OVERLAY
   ═══════════════════════════════════════════════════════════════ */

.burger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(248, 245, 241, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mob-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mob-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mob-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mob-overlay__nav a {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-2);
  padding: 8px 24px;
  border-radius: var(--r);
  transition: color 0.25s, background 0.2s;
}

.mob-overlay__nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

/* Mobile overlay — calc CTA */
.mob-overlay__calc {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-accent);
  background: var(--accent-soft);
  color: var(--accent-bright);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease-out),
    color 0.3s var(--ease);
}

.mob-overlay__calc:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.mob-overlay__calc:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.4s var(--ease),
    color 0.3s;
}

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

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

.btn--accent {
  background: var(--text);
  color: #fff;
  border: none;
  height: 48px;
  padding: 4px 20px 4px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  gap: 0;
  overflow: hidden;
  transition:
    padding 0.5s var(--ease),
    background 0.3s,
    color 0.3s;
}

.btn--accent:hover {
  padding: 4px 0 4px 56px;
  transform: none;
  box-shadow: none;
}

.btn--accent > span {
  position: relative;
  z-index: 1;
}

.btn__icon-circle {
  position: absolute;
  right: -14px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    right 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.btn--accent:hover .btn__icon-circle {
  right: calc(100% + 11px);
  transform: rotate(45deg);
}

.btn--outline {
  border-color: var(--glass-border);
  background: var(--surface);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--line-accent);
  background: var(--accent-soft);
}

.btn--outline:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.btn--icon {
  gap: 8px;
  padding: 0 22px;
}

.btn--icon svg {
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease-out);
}

.btn--icon:hover svg {
  opacity: 1;
  transform: scale(1.08);
}

.btn--white {
  background: #fff;
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.16);
}

.btn--white:hover {
  background: var(--bg);
  box-shadow: 0 18px 48px -8px rgba(0, 0, 0, 0.22);
}


/* ═══════════════════════════════════════════════════════════════
   HERO — Light typographic poster
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  padding: calc(var(--topbar-h) + 40px) 0 48px;
  overflow: clip;
}


/* Background layers ------------------------------------------- */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dotted surface canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__grad {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__grad--1 {
  width: 45vw; height: 45vw;
  top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.15) 0%, transparent 70%);
  animation: drift-1 22s ease-in-out infinite;
}

.hero__grad--2 {
  width: 35vw; height: 35vw;
  bottom: -5%; left: 10%;
  background: radial-gradient(circle, rgba(91, 138, 245, 0.08) 0%, transparent 70%);
  animation: drift-2 28s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-3vw, 2vh); }
  66% { transform: translate(2vw, -1vh); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2vw, -2vh); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.025;
  pointer-events: none;
}


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

.hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity;
}

.hero__content {
  max-width: 860px;
}


/* Eyebrow ----------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 32px rgba(232, 146, 124, 0.2);
  animation: pulse-dot 2.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%      { transform: scale(1.3); opacity: 1; }
}

.eyebrow__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}


/* H1 ---------------------------------------------------------- */

.hero__h1 {
  display: flex;
  flex-direction: column;
}

.hero__line {
  display: flex;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text);
  white-space: nowrap;
  padding-bottom: 4px;
}

/* Animated text — letter slide-up reveal */
.anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.anim-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accent line text — gradient after decode */
.hero__line--accent .anim-char.is-visible {
  color: var(--accent);
}

/* Gradient underline sweep */
.hero__line--accent {
  position: relative;
  overflow: visible;
  padding-bottom: 28px;
  margin-top: 10px;
  width: fit-content;
}

.hero__underline {
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), #c25a3f, var(--blue));
  width: 0%;
  transition: width 0.9s var(--ease-out);
  box-shadow: 0 4px 18px -2px rgba(232, 146, 124, 0.45);
}

.hero__underline.is-visible {
  width: 100%;
}


/* Sub --------------------------------------------------------- */

.hero__sub {
  max-width: 540px;
  margin-top: 36px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--text-2);
}


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

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

/* Wrapper around Telegram + Viber — transparent on desktop, becomes a
   row-flex container on mobile (see 480px override below) so the two
   messenger buttons stay side-by-side. */
.hero__cta-msgs {
  display: contents;
}


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

.hero__bottom {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  justify-content: flex-end;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__scroll-line {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-3));
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

.hero__scroll-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}


/* Decorative -------------------------------------------------- */

/* ── Neumorphic disc ─────────────────────────────────────── */

.hero__disc {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: disc-in 1.6s var(--ease-out) 1.2s forwards;
}

@keyframes disc-in {
  from { opacity: 0; transform: translateY(-50%) scale(0.85); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

.disc {
  position: relative;
  width: clamp(240px, 26vw, 400px);
  height: clamp(240px, 26vw, 400px);
  border-radius: 50%;
  background: var(--bg-alt);
  box-shadow:
    16px 16px 32px #d6cec4,
    -16px -16px 32px #ffffff;
}

.disc__ring {
  position: absolute;
  border-radius: 50%;
  background: var(--bg-alt);
}

.disc__ring--outer {
  inset: 2px;
  box-shadow:
    6px 6px 12px #d1c9bf inset,
    -6px -6px 12px #ffffff inset;
}

.disc__ring--inner {
  inset: 12px;
  box-shadow:
    4px 4px 8px #d1c9bf inset,
    -4px -4px 8px #ffffff inset;
}

.disc__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.disc__label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5a4e42;
  background: var(--bg-alt);
  padding: 10px 18px;
  border-radius: 16px;
}

.disc__orbit {
  position: absolute;
  inset: 0;
}

.disc__svg {
  width: 100%;
  height: 100%;
}

.disc__text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: url(#discGrad);
}


/* ── Hero reveal ─────────────────────────────────────────── */

.hero-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


/* ═══════════════════════════════════════════════════════════════
  SERVICES — static grid, layered previews, card hover
   ═══════════════════════════════════════════════════════════════ */

.services {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  border-radius: 32px 32px 0 0;
  background: var(--surface);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: clip;
}


/* Header ----------------------------------------------------- */

.services__header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  transform: translateZ(0);
}

.services__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}



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

.services-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


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

.services__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}

.services__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.services__scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 24px 28px calc(var(--vnav-w) + 24px);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services__scroller::-webkit-scrollbar {
  display: none;
}

.services__viewport::before,
.services__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(44px, 7vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.services__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.services__viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.services__scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.services-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: min(320px, 72vw);
  min-height: 340px;
  padding: 22px 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f3efe9 0%, #f7f3ee 100%);
  box-shadow:
    inset 0 0 0 1px rgba(26, 23, 20, 0.04),
    0 18px 40px rgba(26, 23, 20, 0.06);
  transition:
    background 0.7s var(--ease-out),
    box-shadow 0.7s var(--ease-out);
}

.services-card:hover {
  background: linear-gradient(180deg, #f6e7e4 0%, #f9efec 100%);
  box-shadow:
    inset 0 0 0 1px rgba(232, 146, 124, 0.12),
    0 16px 34px rgba(26, 23, 20, 0.05);
}

.services-card__visual {
  position: relative;
  flex: 1;
  min-height: 230px;
  margin-bottom: 16px;
  overflow: visible;
}

.services-card__stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-card__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70%, 220px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(26, 23, 20, 0.14));
  transition: transform 1.2s var(--ease-out);
}

.services-card__img--back {
  transform: translate(-50%, -50%) rotate(-10deg);
}

.services-card__img--front {
  transform: translate(-50%, -50%) rotate(4deg);
}

.services-card:hover .services-card__img--back {
  transition: transform 0.85s var(--ease-out);
  transform: translate(-50%, -50%) rotate(-14deg) scale(1.04);
}

.services-card:hover .services-card__img--front {
  transition: transform 0.85s var(--ease-out);
  transform: translate(-50%, -50%) rotate(7deg) scale(1.06);
}

.services-card__title {
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
}

.services-card__sub {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text-2);
  text-align: left;
}


/* ═══════════════════════════════════════════════════════════════
   TECH STACK — bento grid on dark warm-coal background
   ═══════════════════════════════════════════════════════════════ */

.tech {
  position: relative;
  z-index: 3;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #1a1714 0%, #221d18 100%);
  color: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.18);
  overflow: clip;
}

.tech__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tech__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.tech__glow--1 {
  width: 50vw;
  height: 50vw;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.13) 0%, transparent 60%);
}

.tech__glow--2 {
  width: 35vw;
  height: 35vw;
  bottom: -10%;
  left: 5%;
  background: radial-gradient(circle, rgba(91, 138, 245, 0.08) 0%, transparent 65%);
}

.tech__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.04;
}

.tech__inner {
  position: relative;
  z-index: 1;
}

.tech__header {
  max-width: 720px;
  margin-bottom: 56px;
}

.tech__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #fff;
  margin-top: 8px;
}

.tech__sub {
  max-width: 540px;
  margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}


/* ── Reveal ─────────────────────────────────────────────── */

.tech-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


/* ── Bento grid ─────────────────────────────────────────── */

.tech__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.tech-card {
  display: flex;
}

.tech-card--main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.tech-card--sla {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.tech-card--laser {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


/* ── Double-Bezel card architecture ────────────────────── */

.tech-card__shell {
  width: 100%;
  padding: 6px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease),
    transform 0.5s var(--ease-out);
}

.tech-card:hover .tech-card__shell {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(232, 146, 124, 0.22);
  transform: translateY(-3px);
}

.tech-card__core {
  width: 100%;
  height: 100%;
  padding: 32px 32px 36px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.tech-card--main .tech-card__core {
  padding: 40px 40px 44px;
}

/* Coral edge highlight on hover */
.tech-card__core::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 146, 124, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.tech-card:hover .tech-card__core::after {
  opacity: 1;
}


/* ── Card content ───────────────────────────────────────── */

.tech-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(232, 146, 124, 0.08);
  border: 1px solid rgba(232, 146, 124, 0.2);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  margin-bottom: 24px;
}

.tech-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2.8s ease-in-out infinite;
}

.tech-card__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tech-card__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: #fff;
}

.tech-card--main .tech-card__title {
  font-size: clamp(72px, 8vw, 112px);
}

.tech-card__materials {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0;
}

.tech-card__sep {
  display: inline-block;
  margin: 0 4px;
  color: rgba(232, 146, 124, 0.5);
}

.tech-card__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
  max-width: 460px;
}

.tech-card--main .tech-card__desc {
  font-size: 15.5px;
  margin-bottom: 36px;
  max-width: 540px;
}

.tech-card__specs {
  margin-top: auto;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
}

.tech-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.5), rgba(15, 12, 10, 0.35));
  font-size: 13.5px;
}

.tech-card__spec-label {
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: -0.005em;
}

.tech-card__spec-value {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING — light section with 3 examples + CTA
   ═══════════════════════════════════════════════════════════════ */

.pricing {
  position: relative;
  z-index: 4;
  padding: 110px 0 120px;
  background: var(--surface);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: clip;
}

.pricing__inner {
  position: relative;
  z-index: 1;
}

.pricing__header {
  max-width: 760px;
  margin-bottom: 56px;
}

.pricing__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-top: 8px;
}

.pricing__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.pricing__title em::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 6%;
  height: 10px;
  background: rgba(232, 146, 124, 0.18);
  border-radius: 4px;
  z-index: -1;
}

.pricing__sub {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text-2);
}


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

.pricing-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.pricing-reveal.btn--accent.is-visible {
  transition:
    padding 0.5s var(--ease),
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 0.3s,
    color 0.3s;
}


/* Examples grid ---------------------------------------------- */

.pricing__examples {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 56px;
}

.pricing-example {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, #faf7f3 0%, #f4ede4 100%);
  border: 1px solid rgba(26, 23, 20, 0.06);
  border-radius: 24px;
  box-shadow: 0 14px 36px -16px rgba(26, 23, 20, 0.12);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease);
}

.pricing-example:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -18px rgba(26, 23, 20, 0.18);
  border-color: rgba(232, 146, 124, 0.22);
}

.pricing-example--featured {
  background: linear-gradient(180deg, #1f1a16 0%, #2a2520 100%);
  border-color: rgba(232, 146, 124, 0.3);
  box-shadow: 0 22px 60px -18px rgba(26, 23, 20, 0.4);
  transform: scale(1.03);
}

.pricing-example--featured:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 72px -18px rgba(26, 23, 20, 0.5);
  border-color: rgba(232, 146, 124, 0.5);
}

.pricing-example__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(232, 146, 124, 0.18);
  border: 1px solid rgba(232, 146, 124, 0.32);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.pricing-example__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2.8s ease-in-out infinite;
}

.pricing-example__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--text);
}

.pricing-example--featured .pricing-example__head {
  color: #fff;
}

.pricing-example__weight {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.pricing-example__layer {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
}

.pricing-example--featured .pricing-example__layer {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-example__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.pricing-example__price strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--accent);
}

.pricing-example--featured .pricing-example__price strong {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(232, 146, 124, 0.35);
}

.pricing-example__price span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-2);
}

.pricing-example--featured .pricing-example__price span {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-example__total {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-example--featured .pricing-example__total {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-example__note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 23, 20, 0.08);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.pricing-example--featured .pricing-example__note {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}


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

.pricing__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  letter-spacing: -0.005em;
}

.pricing__hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT STUDIO
   ═══════════════════════════════════════════════════════════════ */

.about-studio {
  position: relative;
  z-index: 5;
  padding: 120px 0 128px;
  background: linear-gradient(180deg, #f3efe9 0%, #f7f3ee 100%);
  color: var(--text);
  overflow: clip;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.08);
}

.about-studio__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-studio__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.08) 0%, transparent 55%);
  filter: blur(60px);
}

.about-studio__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.04;
}

.about-studio__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-studio__eyebrow {
  margin-bottom: 20px;
}

.about-studio__eyebrow .eyebrow__dot {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 32px rgba(232, 146, 124, 0.2);
}

.about-studio__eyebrow .eyebrow__text {
  color: var(--accent-bright);
}

.about-studio__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
}

.about-studio__text {
  max-width: 720px;
  margin-top: 22px;
  padding: 0 16px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--text-2);
}

.about-studio__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1100px);
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.about-studio__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  position: relative;
}

.about-studio__stat + .about-studio__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(26, 23, 20, 0.12);
}

.about-studio__value {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.about-studio__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text-2);
}

.about-studio__cta {
  margin-top: 52px;
}


/* About reveal ------------------------------------------------ */

.about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.about-reveal.btn--accent.is-visible {
  transition:
    padding 0.5s var(--ease),
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 0.3s,
    color 0.3s;
}


/* ═══════════════════════════════════════════════════════════════
   CASES / OUR WORKS — white surface, perspective wave bottom
   ═══════════════════════════════════════════════════════════════ */

.cases {
  position: relative;
  z-index: 6;
  padding: 100px 0 0;
  background: var(--surface);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: clip;
  transform: translateZ(0);
}


/* Header -------------------------------------------------------- */

.cases__header {
  margin-bottom: 64px;
}

.cases__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-top: 8px;
}

.cases__sub {
  max-width: 500px;
  margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--text-2);
}

/* ── Portfolio horizontal scroller (mirrors services pattern) ── */

.cases__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 2;
}

.cases__viewport::before,
.cases__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(44px, 7vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.cases__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.cases__viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.cases__scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 24px 36px calc(var(--vnav-w) + 24px);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cases__scroller::-webkit-scrollbar {
  display: none;
}

.cases__scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cases__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}


/* ── Work card ──────────────────────────────────────────────── */

.work-card {
  display: block;
  flex: 0 0 auto;
  width: 290px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  text-align: inherit;
  text-decoration: none;
  font: inherit;
  color: inherit;
  background: var(--bg-alt);
  box-shadow:
    inset 0 0 0 1px rgba(26, 23, 20, 0.05),
    0 14px 36px rgba(26, 23, 20, 0.08);
  transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.work-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(232, 146, 124, 0.2),
    0 24px 64px rgba(26, 23, 20, 0.14);
  transform: translateY(-4px);
}

.work-card__media {
  display: block;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease-out), opacity 0.5s var(--ease-out);
  will-change: transform;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.work-card:hover .work-card__img {
  transform: scale(1.08);
  opacity: 0.35;
}

/* Overlay — slides text info in on hover */
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 14, 0.62);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
  border-radius: inherit;
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.work-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 0.4s var(--ease-out) 0.05s,
    transform 0.4s var(--ease-out) 0.05s;
  will-change: transform;
}

.work-card:hover .work-card__title {
  opacity: 1;
  transform: translateY(0);
}

.work-card__hr {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.45s var(--ease-out) 0.12s;
}

.work-card:hover .work-card__hr {
  width: 36px;
}

.work-card__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s var(--ease-out) 0.1s,
    transform 0.4s var(--ease-out) 0.1s;
  will-change: transform;
}

.work-card:hover .work-card__category {
  opacity: 1;
  transform: translateY(0);
}


/* Perspective wave ---------------------------------------------- */

.cases__wave {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: -80px;
  z-index: 1;
  overflow: hidden;
}

/* Gradient: white at top fading to transparent — blends canvas into section */
.cases__wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--surface)               0%,
    var(--surface)              10%,
    rgba(255, 255, 255, 0.82)   28%,
    rgba(255, 255, 255, 0.45)   48%,
    rgba(255, 255, 255, 0.12)   66%,
    transparent                 80%
  );
  z-index: 1;
  pointer-events: none;
}

.cases__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}


/* Cases reveal -------------------------------------------------- */

.cases-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


/* ── Lightbox (gallery for Наші роботи) ────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 12, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.lightbox__stage {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 17, 14, 0.55);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  pointer-events: auto;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(232, 146, 124, 0.85);
  border-color: rgba(232, 146, 124, 0.95);
  transform: scale(1.05);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox__caption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: rgba(20, 17, 14, 0.55);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .lightbox { padding: 16px; }
  .lightbox__close,
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .vnav { display: none; }

  .burger { display: inline-flex; }

  .container {
    padding-left: 0;
  }

  /* TECH responsive — stack vertically */
  .tech {
    padding: 80px 0 100px;
    border-radius: 24px 24px 0 0;
  }

  .tech__header { margin-bottom: 40px; }

  .tech__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .tech-card--main {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .tech-card--sla {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .tech-card--laser {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  /* PRICING 1024 — stack featured center */
  .pricing {
    padding: 80px 0 100px;
    border-radius: 24px 24px 0 0;
  }

  .pricing__examples {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }

  .pricing-example--featured {
    transform: none;
  }

  .pricing-example--featured:hover {
    transform: translateY(-4px);
  }

  /* ORDER 1024 — stack form + contacts vertically */
  .order {
    padding: 80px 0 100px;
    border-radius: 24px 24px 0 0;
  }

  .order__header { margin-bottom: 40px; }

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

  .order-contacts {
    position: static;
  }

  .topbar__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar-calc { display: none; }

  .hero__disc {
    right: -5%;
    opacity: 0.5;
  }
  .disc {
    width: 200px;
    height: 200px;
  }

  .services__scroller {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-studio__stats {
    flex-wrap: wrap;
    width: min(100%, 560px);
    padding: 32px 24px;
  }

  .about-studio__stat {
    flex: 0 0 33.333%;
    padding: 16px 8px;
  }

  .about-studio__stat + .about-studio__stat::before {
    display: none;
  }

  .cases {
    padding: 80px 0 0;
    border-radius: 24px 24px 0 0;
  }

  .cases__scroller {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cases__wave {
    height: 280px;
    margin-top: -60px;
  }

}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  /* TECH 768 */
  .tech {
    padding: 64px 0 80px;
    border-radius: 20px 20px 0 0;
  }
  .tech-card__core { padding: 26px 22px; }
  .tech-card--main .tech-card__core { padding: 30px 26px 34px; }
  .tech-card--main .tech-card__title { font-size: clamp(60px, 14vw, 80px); }
  .tech-card__specs li { padding: 12px 14px; font-size: 12.5px; }

  /* PRICING 768 */
  .pricing {
    padding: 64px 0 80px;
    border-radius: 20px 20px 0 0;
  }
  .pricing__header { margin-bottom: 36px; }
  .pricing-example { padding: 26px 22px 22px; }
  .pricing-example__weight { font-size: 28px; }
  .pricing-example--featured { transform: none; }
  .pricing-example--featured:hover { transform: translateY(-4px); }

  /* ORDER 768 */
  .order {
    padding: 64px 0 80px;
    border-radius: 20px 20px 0 0;
  }
  .order-form {
    padding: 28px 22px;
    border-radius: 22px;
  }
  .order-form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .order-contacts {
    padding: 26px 22px;
    border-radius: 22px;
  }
  .order-form__submit {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: calc(var(--topbar-h) + 24px) 0 32px;
  }

  .hero__line {
    font-size: clamp(40px, 12vw, 72px);
  }

  .hero__disc { display: none; }
  .hide-mobile { display: none; }

  .services {
    padding: 60px 0 80px;
    border-radius: 24px 24px 0 0;
  }

  .services__header {
    margin-bottom: 32px;
  }

  .services__scroller {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 24px;
  }

  .services__grid {
    gap: 22px;
  }

  .services-card {
    width: min(300px, 78vw);
    min-height: 320px;
  }

  .services-card__title {
    font-size: 19px;
  }

  .about-studio {
    padding: 96px 0 104px;
  }

  .about-studio__stats {
    margin-top: 44px;
  }

  .cases {
    padding: 64px 0 0;
    border-radius: 20px 20px 0 0;
  }

  .cases__header {
    margin-bottom: 48px;
  }

  .cases__scroller {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 28px;
  }

  .cases__list {
    gap: 20px;
  }

  .work-card {
    width: 230px;
  }

  .work-card__title {
    font-size: 16px;
  }

  .cases__wave {
    height: 240px;
    margin-top: -48px;
  }
}

@media (max-width: 480px) {
  .hero__line {
    font-size: clamp(32px, 11vw, 50px);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    align-self: center;
  }

  /* Telegram + Viber — на одній строці поруч */
  .hero__cta-msgs {
    display: inline-flex;
    gap: 10px;
    align-self: center;
  }

  .eyebrow { margin-bottom: 24px; }

  .topbar__inner {
    padding: 16px 16px 16px 16px;
  }

  .services {
    border-radius: 20px 20px 0 0;
    padding: 48px 0 60px;
  }

  .services__grid {
    gap: 18px;
  }

  .services-card {
    width: min(280px, 84vw);
    min-height: 300px;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .services-card__visual {
    min-height: 210px;
    margin-bottom: 14px;
  }

  .services-card__title {
    font-size: 18px;
  }

  .about-studio {
    padding: 72px 0 80px;
  }

  .about-studio__title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .about-studio__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-studio__stats {
    margin-top: 36px;
    padding: 28px 20px;
    border-radius: var(--r);
  }

  .about-studio__value {
    font-size: clamp(28px, 9vw, 40px);
  }

  .about-studio__cta {
    margin-top: 36px;
  }

  .cases {
    padding: 56px 0 0;
  }

  .cases__list {
    gap: 16px;
  }

  .work-card {
    width: min(210px, 60vw);
    border-radius: 16px;
  }

  .work-card__title {
    font-size: 15px;
  }

  .cases__wave {
    height: 200px;
    margin-top: -36px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ORDER — inline form + direct contacts
   ═══════════════════════════════════════════════════════════════ */

.order {
  position: relative;
  z-index: 7;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #faf7f3 0%, #f0e9df 100%);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.08);
  overflow: clip;
}

.order__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.order__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: -25%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.1) 0%, transparent 60%);
  filter: blur(80px);
}

.order__inner {
  position: relative;
  z-index: 1;
}

.order__header {
  max-width: 760px;
  margin-bottom: 56px;
}

.order__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-top: 8px;
}

.order__sub {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text-2);
}


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

.order-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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


/* Layout: form + contacts ----------------------------------- */

.order__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: start;
}

/* Stack form above contacts on tablets + phones */
@media (max-width: 1100px) {
  .order__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .order-form { order: 1; }
  .order-contacts {
    order: 2;
    position: static;
  }
}


/* ── Form ─────────────────────────────────────────────────── */

.order-form {
  background: var(--surface);
  border: 1px solid rgba(26, 23, 20, 0.06);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 56px -22px rgba(26, 23, 20, 0.14);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.order-form__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-form__group[hidden] {
  display: none;
}

.order-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.order-form__legend {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.order-form__legend--req::after {
  content: ' *';
  color: var(--accent);
}


/* Chips ----------------------------------------------------- */

.order-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-form__chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.order-form__chip input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.order-form__chip span {
  display: block;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(26, 23, 20, 0.1);
  background: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-2);
  transition:
    border-color 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
  white-space: nowrap;
}

.order-form__chip:hover span {
  border-color: var(--line-accent);
  background: var(--accent-soft);
  color: var(--text);
}

.order-form__chip input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-bright);
  font-weight: 600;
}


/* Calc preview card ----------------------------------------- */

.order-form__calc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f1a16 0%, #2a2520 100%);
  color: #fff;
  border: 1px solid rgba(232, 146, 124, 0.22);
}

.order-form__calc-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.92);
}

.order-form__calc-clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border: 0;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}

.order-form__calc-clear:hover {
  background: rgba(232, 146, 124, 0.18);
  color: var(--accent);
  transform: rotate(90deg);
}


/* Inputs ---------------------------------------------------- */

.order-form__input,
.order-form__textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.22s,
    background 0.22s,
    box-shadow 0.22s;
  resize: none;
  line-height: 1.55;
}

.order-form__textarea::placeholder,
.order-form__input::placeholder {
  color: var(--text-3);
}

.order-form__textarea:focus,
.order-form__input:focus {
  border-color: rgba(232, 146, 124, 0.5);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(232, 146, 124, 0.1);
}


/* Policy ---------------------------------------------------- */

.order-form__policy {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.order-form__policy-check {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.order-form__policy-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(26, 23, 20, 0.18);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.15s;
}

.order-form__policy-check:checked ~ .order-form__policy-box {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.order-form__policy-text a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Submit ---------------------------------------------------- */

.order-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: flex-start;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  background: var(--text);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  position: relative;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-out),
    box-shadow 0.3s;
}

.order-form__submit:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(232, 146, 124, 0.45);
}

.order-form__submit:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.order-form__submit:disabled {
  background: rgba(26, 23, 20, 0.25);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.order-form__submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.order-form__submit:hover .order-form__submit-icon {
  transform: rotate(45deg);
}


/* ── Contacts panel ───────────────────────────────────────── */

.order-contacts {
  background: linear-gradient(180deg, #1f1a16 0%, #2a2520 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--topbar-h) + 24px);
  box-shadow: 0 20px 60px -20px rgba(26, 23, 20, 0.35);
}

.order-contacts__title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}

.order-contacts__sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.order-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 -10px;
}

.order-contacts__item {
  list-style: none;
}

.order-contacts__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.22s var(--ease);
}

.order-contacts__link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.order-contacts__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.3s var(--ease);
}

.order-contacts__link:hover .order-contacts__icon {
  background: rgba(232, 146, 124, 0.12);
  border-color: rgba(232, 146, 124, 0.3);
  transform: rotate(-6deg) scale(1.04);
}

.order-contacts__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.order-contacts__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.order-contacts__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-contacts__arrow {
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.22s var(--ease);
}

.order-contacts__link:hover .order-contacts__arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.order-contacts__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.order-contacts__footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
  animation: pulse-dot 2.8s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════════════
   SITE FOOTER / CTA
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  position: relative;
  z-index: 8;
  background: var(--text);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 72px rgba(0, 0, 0, 0.18);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-footer__glow {
  position: absolute;
  width: 80vw;
  height: 80vw;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.14) 0%, transparent 60%);
  filter: blur(80px);
}

/* Body — centered column */
.site-footer__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px 100px;
}

/* Logo */
.site-footer__logo {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 68px;
  transition: opacity 0.3s;
}

.site-footer__logo:hover {
  opacity: 0.75;
}

.site-footer__logo-o {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Headline */
.site-footer__headline {
  margin-bottom: 64px;
}

.site-footer__line {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.site-footer__line--dim {
  color: rgba(255, 255, 255, 0.28);
}

.site-footer__line--bright {
  color: #fff;
  min-height: 1.2em;
}

/* Typewriter cursor */
.site-footer__cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  margin-left: 3px;
  animation: footer-cursor-blink 1s steps(1) infinite;
}

@keyframes footer-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Main CTA — light accent variant (white bg, dark text, same arrow animation) */
.btn--accent-light {
  background: #fff;
  color: var(--text);
  border: none;
  height: 48px;
  padding: 4px 20px 4px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  gap: 0;
  overflow: hidden;
  transition:
    padding 0.5s var(--ease),
    background 0.3s,
    color 0.3s;
  margin-bottom: 28px;
}

.btn--accent-light:hover {
  padding: 4px 0 4px 56px;
  transform: none;
  box-shadow: none;
  background: var(--bg);
}

.btn--accent-light > span {
  position: relative;
  z-index: 1;
}

.btn--accent-light .btn__icon-circle {
  background: var(--text);
  color: #fff;
}

.btn--accent-light:hover .btn__icon-circle {
  right: calc(100% + 11px);
  transform: rotate(45deg);
}

/* Ghost button — for dark background social links */
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
  border-color: rgba(232, 146, 124, 0.5);
  background: rgba(232, 146, 124, 0.08);
  color: var(--accent);
}

/* Social row */
.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer meta line ------------------------------------------- */
.site-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 48px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.005em;
}

.site-footer__meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 146, 124, 0.45) 40%,
    rgba(232, 146, 124, 0.45) 60%,
    transparent
  );
}

.site-footer__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* Bottom bar */
.site-footer__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 16px;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.22s ease;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

/* ── Footer responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
  .site-footer__body {
    padding: 96px 24px 68px;
  }

  .site-footer__logo {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .site-footer__headline {
    margin-bottom: 48px;
  }

  .site-footer__locations {
    margin-top: 44px;
    gap: 16px 24px;
    padding-top: 40px;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
  }

  .site-footer__nav {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-footer__locations {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .site-footer__location {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 480px) {
  .site-footer__body {
    padding: 64px 20px 48px;
  }

  .site-footer__locations {
    margin-top: 36px;
    padding-top: 36px;
  }

  .site-footer__nav {
    gap: 16px;
  }
}


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


/* ═══════════════════════════════════════════════════════════════
   FLOATING CALCULATOR BUTTON (FAB)
   ═══════════════════════════════════════════════════════════════ */

.fab-calc {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 56px;
  background: var(--accent);
  color: #0f0e0d;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 16px 40px -10px rgba(232, 146, 124, 0.55),
    0 4px 12px -2px rgba(26, 23, 20, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    background 0.3s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.5s var(--ease);
}

.fab-calc.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-calc:hover {
  background: var(--accent-bright);
  padding-right: 22px;
  box-shadow:
    0 22px 50px -10px rgba(232, 146, 124, 0.7),
    0 6px 18px -2px rgba(26, 23, 20, 0.22);
}

.fab-calc:active {
  transform: translateY(0) scale(0.95);
  transition-duration: 0.12s;
}

.fab-calc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}

.fab-calc:hover .fab-calc__icon {
  transform: rotate(-8deg);
}

.fab-calc__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.5s var(--ease), opacity 0.35s var(--ease);
}

.fab-calc:hover .fab-calc__label {
  max-width: 180px;
  opacity: 1;
}

@media (max-width: 768px) {
  .fab-calc {
    right: 16px;
    bottom: 16px;
    height: 52px;
    border-radius: 52px;
  }
  .fab-calc__icon { width: 52px; height: 52px; }
  /* On mobile keep label hidden — icon-only */
  .fab-calc:hover { padding-right: 0; }
  .fab-calc:hover .fab-calc__label { max-width: 0; opacity: 0; }
}


/* ═══════════════════════════════════════════════════════════════
   CALCULATOR PANEL — slides up from bottom
   ═══════════════════════════════════════════════════════════════ */

.calc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 195;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

.calc-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.calc {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: min(100%, 720px);
  max-height: 88vh;
  z-index: 200;
  background: linear-gradient(180deg, #14110e 0%, #0f0c0a 100%);
  border-top: 1px solid rgba(232, 146, 124, 0.2);
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  transform: translate(-50%, 100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  box-shadow: 0 -28px 90px rgba(0, 0, 0, 0.55);
}

.calc.is-open {
  transform: translate(-50%, 0);
}

/* Drag handle indicator */
.calc::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
}


/* ── Header ───────────────────────────────────────────────────── */

.calc__header {
  padding: 32px 40px 0;
  flex-shrink: 0;
}

.calc__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.calc__pretitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.92);
}

.calc__pretitle .eyebrow__dot {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 8px var(--accent-glow);
}

.calc__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.25s var(--ease);
}

.calc__close:hover {
  background: rgba(232, 146, 124, 0.16);
  color: var(--accent);
  transform: rotate(90deg);
}


/* ── Body ─────────────────────────────────────────────────────── */

.calc__body {
  overflow-y: auto;
  padding: 28px 40px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 146, 124, 0.25) transparent;
}

.calc__body::-webkit-scrollbar { width: 4px; }
.calc__body::-webkit-scrollbar-track { background: transparent; }
.calc__body::-webkit-scrollbar-thumb {
  background: rgba(232, 146, 124, 0.25);
  border-radius: 2px;
}

.calc__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}


/* ── Field ────────────────────────────────────────────────────── */

.calc__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calc__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}


/* Numeric value input (weight) ------------------------------ */

.calc__value-input {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}

.calc__value-input:focus-within {
  border-color: rgba(232, 146, 124, 0.5);
  background: rgba(232, 146, 124, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 146, 124, 0.1);
}

.calc__value-num {
  width: 68px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: right;
  outline: 0;
  -moz-appearance: textfield;
}

.calc__value-num::-webkit-outer-spin-button,
.calc__value-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc__value-unit {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.5);
}


/* Slider ---------------------------------------------------- */

.calc__slider {
  position: relative;
  padding: 8px 0;
}

.calc__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-pill);
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) var(--rp-slider-fill, 0%),
    rgba(255, 255, 255, 0.1) var(--rp-slider-fill, 0%),
    rgba(255, 255, 255, 0.1) 100%
  );
  outline: none;
  cursor: pointer;
}

.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 16px -4px rgba(232, 146, 124, 0.55);
  transition: transform 0.15s var(--ease-out), box-shadow 0.2s var(--ease);
}

.calc__range::-webkit-slider-thumb:hover {
  transform: scale(1.08);
}

.calc__range::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.12);
  box-shadow: 0 6px 22px -4px rgba(232, 146, 124, 0.75);
}

.calc__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 16px -4px rgba(232, 146, 124, 0.55);
}

.calc__slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.38);
}


/* Chips (layer thickness) ----------------------------------- */

.calc__chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.calc__chip {
  position: relative;
  cursor: pointer;
}

.calc__chip input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.calc__chip span {
  display: block;
  text-align: center;
  padding: 12px 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.22s var(--ease);
  user-select: none;
}

.calc__chip:hover span {
  border-color: rgba(232, 146, 124, 0.35);
  color: #fff;
  background: rgba(232, 146, 124, 0.06);
}

.calc__chip input:checked + span {
  border-color: var(--accent);
  background: rgba(232, 146, 124, 0.14);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232, 146, 124, 0.25);
}

.calc__chip-hints {
  display: flex;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.4);
}


/* Result block --------------------------------------------- */

.calc__result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(232, 146, 124, 0.1) 0%, rgba(232, 146, 124, 0.04) 100%);
  border: 1px solid rgba(232, 146, 124, 0.18);
  position: relative;
  overflow: hidden;
}

.calc__result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 146, 124, 0.4), transparent);
}

.calc__result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.calc__result-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.calc__result-value {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s var(--ease);
}

.calc__result-value em {
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

.calc__result-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.calc__result-value--total {
  font-size: 32px;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(232, 146, 124, 0.35);
}

.calc__result-value--total em {
  color: rgba(232, 146, 124, 0.55);
}

.calc__result-row--total .calc__result-label {
  color: rgba(255, 255, 255, 0.7);
}

.calc__result-note {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

/* Number flash animation when value changes */
.calc__result-value.is-flashing {
  color: var(--accent);
}


/* ── Footer with submit ────────────────────────────────────── */

.calc__footer {
  padding: 20px 40px 28px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 12, 10, 0.6);
  backdrop-filter: blur(8px);
}

.calc__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #0f0e0d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
}

.calc__submit:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(232, 146, 124, 0.35);
}

.calc__submit:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
  box-shadow: none;
}

.calc__submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.18);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.calc__submit:hover .calc__submit-icon {
  transform: rotate(45deg);
}


/* ── Body lock when panel is open ─────────────────────────────── */

body.calc-open {
  overflow: hidden;
}


/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .calc__header { padding: 26px 20px 0; }
  .calc__body   { padding: 24px 20px 28px; }
  .calc__footer { padding: 18px 20px 22px; }

  .calc__chips {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .calc__chip span { padding: 11px 4px; font-size: 14px; }

  .calc__result { padding: 18px 18px; }
  .calc__result-value--total { font-size: 28px; }
}

@media (max-width: 480px) {
  .calc {
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
  .calc__pretitle { font-size: 0.92rem; }
}
