/* ==========================================================================
   FreshLab — Perfection is in the details
   Design system  ·  dark / chrome / electric blue
   Structure & presentation model adapted from the "Autovera" layout pattern.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* surfaces */
  --bg:            #000000;
  --bg-1:          #060708;
  --bg-2:          #0b0d10;
  --panel:         #101317;
  --panel-2:       #15191e;
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .16);

  /* brand */
  --blue:          #0f8cff;
  --blue-600:      #0b6fd6;
  --blue-300:      #61b4ff;
  --blue-glow:     rgba(15, 140, 255, .45);

  /* chrome / text */
  --white:         #ffffff;
  --text:          #e9edf2;
  --muted:         #98a2ae;
  --muted-2:       #6d7783;

  /* type */
  --font: "Inter", "Inter Display", "Segoe UI Variable Text", "Segoe UI",
          system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --h1: clamp(2.75rem, 7.2vw, 5rem);
  --h2: clamp(2rem, 4.8vw, 3.75rem);
  --h3: clamp(1.35rem, 2.4vw, 1.9rem);
  --lead: clamp(1.0625rem, 1.35vw, 1.25rem);

  /* rhythm */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(5rem, 10vw, 9rem);

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --ease: cubic-bezier(.22, .61, .36, 1);

  --chrome: linear-gradient(180deg, #ffffff 0%, #eef2f7 38%, #9aa4b1 52%, #e3e9f0 64%, #7c848f 100%);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.032em;
  font-weight: 800;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); letter-spacing: -.02em; line-height: 1.2; }
p  { margin: 0; }

::selection { background: var(--blue); color: #fff; }

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

/* ---------- 3. Layout helpers ------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.stack   { display: grid; gap: 1.25rem; }
.stack-s { display: grid; gap: .6rem; }

.center { text-align: center; }

/* grid utilities — used instead of inline grid-template-columns so that the
   responsive rules at the bottom of this file can still collapse them */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pair   { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* section heading block */
.head { max-width: 46rem; }
.head--center { margin-inline: auto; text-align: center; }
.head p.sub {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: var(--lead);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.head--center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

/* chrome text treatment (brand wordmarks / big numerals) */
.chrome {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  border: 0;
  border-radius: 12px;
  background: var(--btn-bg);
  color: #fff;
  font-weight: 650;
  font-size: .975rem;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(0, 0, 0, .28),
    0 10px 26px -12px var(--blue-glow);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .28),
    0 18px 40px -14px var(--blue-glow);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-strong);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: none;
}

.btn--lg { padding: 1.1rem 2rem; font-size: 1.03rem; }
.btn--block { width: 100%; }

.btn .ico { width: 18px; height: 18px; flex: none; }

/* text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 650;
  color: var(--white);
  font-size: .95rem;
}
.tlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.tlink:hover { color: var(--blue-300); }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- 5. Brand lockup --------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -.035em;
  font-style: italic;
  line-height: 1;
}
.brand__text .lab { color: var(--blue); }
.brand__tag {
  display: block;
  font-style: normal;
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .17em;
  color: var(--muted-2);
  margin-top: .28rem;
  text-transform: uppercase;
}

/* ---------- 6. Header / nav --------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding-block: .85rem;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              padding .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(6, 7, 8, .82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: .55rem;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-inline: auto;
}
.nav a {
  position: relative;
  padding: .55rem .85rem;
  border-radius: 9px;
  font-size: .93rem;
  font-weight: 550;
  color: var(--muted);
  transition: color .22s var(--ease), background .22s var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .3rem;
  height: 2px; border-radius: 2px;
  background: var(--blue);
}

.header__side { display: flex; align-items: center; gap: .6rem; }

.langtoggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}
.langtoggle button {
  padding: .4rem .6rem;
  background: none;
  border: 0;
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .06em;
  color: var(--muted-2);
  cursor: pointer;
  transition: color .2s, background .2s;
}
.langtoggle button[aria-pressed="true"] { color: #fff; background: var(--blue); }
.langtoggle button:hover:not([aria-pressed="true"]) { color: var(--white); }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem .3rem;
}
.header__phone svg { width: 16px; height: 16px; color: var(--blue-300); }
.header__phone:hover { color: var(--blue-300); }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(4, 5, 6, .97);
  backdrop-filter: blur(20px);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: grid;
  align-content: start;
  gap: .2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a.drawer__link {
  padding: 1.05rem .25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -.03em;
}
.drawer a.drawer__link:hover { color: var(--blue-300); }
.drawer__foot { margin-top: 2rem; display: grid; gap: .75rem; justify-items: stretch; }
/* the language switch only moves into the drawer on the narrowest screens */
.drawer .langtoggle { display: none; justify-self: start; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: end;
  padding-top: 9rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(0, -1.5%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 65% at 18% 82%, rgba(15, 140, 255, .17) 0%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .5) 34%,
                    rgba(0, 0, 0, .74) 72%, var(--bg) 100%);
}

.hero__inner { max-width: 60rem; }
.hero h1 { text-wrap: balance; }
.hero h1 .line2 { display: block; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--blue-300), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 1.6rem;
  max-width: 38rem;
  font-size: var(--lead);
  color: #c3ccd6;
}
.hero__cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.hero__chips {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
  font-size: .82rem;
  font-weight: 600;
  color: #d6dde5;
}
.chip svg { width: 14px; height: 14px; color: var(--blue-300); flex: none; }

/* ---------- 8. Marquee --------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  padding-block: 1.15rem;
  overflow: hidden;
  display: flex;
  gap: 2.5rem;
  user-select: none;
}
.marquee__row {
  display: flex;
  gap: 2.5rem;
  flex: none;
  min-width: 100%;
  animation: slide 34s linear infinite;
}
@keyframes slide { to { transform: translateX(-100%); } }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .34);
  white-space: nowrap;
}
.marquee span::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

/* ---------- 9. Stats ----------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-1);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: .5rem;
  align-content: start;
  transition: background .3s var(--ease);
}
.stat:hover { background: var(--panel); }
.stat__n {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}
.stat__l { font-weight: 650; color: var(--white); font-size: .98rem; }
.stat__d { color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* ---------- 10. Services (sticky index + panels) ------------------------- */
.svc { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.svc__index { position: sticky; top: 7rem; display: grid; gap: .35rem; }

.svc__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  padding: 1.15rem .35rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  cursor: pointer;
  transition: padding .3s var(--ease);
}
.svc__item:hover { padding-left: .85rem; }
.svc__num {
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  color: var(--muted-2);
  transition: color .3s var(--ease);
}
.svc__name {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -.028em;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.svc__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.svc__item[aria-selected="true"] .svc__num  { color: var(--blue-300); }
.svc__item[aria-selected="true"] .svc__name { color: var(--white); }
.svc__item[aria-selected="true"] .svc__dot  {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 140, 255, .18);
  transform: scale(1.15);
}

.svc__panel { display: none; }
.svc__panel.is-active { display: block; animation: fadeUp .5s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.svc__figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--panel);
}
.svc__figure img { width: 100%; height: 100%; object-fit: cover; }
.svc__figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .62) 100%);
}
.svc__badge {
  position: absolute;
  z-index: 2;
  left: 1.1rem; top: 1.1rem;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(6, 8, 10, .72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.svc__body { padding-top: 1.75rem; display: grid; gap: 1.1rem; }
.svc__body p { color: var(--muted); font-size: 1.03rem; }

.svc__list {
  list-style: none;
  margin: .35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem 1.4rem;
}
.svc__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  color: #cfd6de;
}
.svc__list svg { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: .22rem; }

/* ---------- 11. Before / after slider ------------------------------------ */
.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  background: var(--panel);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 22px rgba(15, 140, 255, .7);
  pointer-events: none;
  z-index: 3;
}
.ba__knob {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(8, 10, 13, .78);
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
}
.ba__knob svg { width: 20px; height: 20px; }
.ba__tag {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(6, 8, 10, .72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.ba__tag--b { left: 1rem; color: var(--muted); }
.ba__tag--a { right: 1rem; color: var(--blue-300); }

/* ---------- 12. Feature grid (why choose us) ----------------------------- */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.feat {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-1) 100%);
  display: grid;
  gap: .6rem;
  align-content: start;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feat:hover { border-color: rgba(15, 140, 255, .42); transform: translateY(-3px); }
.feat__ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(15, 140, 255, .12);
  border: 1px solid rgba(15, 140, 255, .26);
  color: var(--blue-300);
  margin-bottom: .35rem;
}
.feat__ico svg { width: 20px; height: 20px; }
.feat h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.feat p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.why__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 13. Process -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: s; }
.step {
  position: relative;
  padding: 2rem 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-1);
  display: grid;
  gap: .55rem;
  align-content: start;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.step:hover { border-color: rgba(15, 140, 255, .4); background: var(--panel); }
.step::before {
  counter-increment: s;
  content: "0" counter(s);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.06rem; font-weight: 700; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ---------- 14. Pricing -------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; align-items: start; }

.tier {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-1) 100%);
  display: grid;
  gap: 1.15rem;
  align-content: start;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.tier:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tier--hot {
  border-color: rgba(15, 140, 255, .5);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(15, 140, 255, .15) 0%, transparent 60%),
    linear-gradient(180deg, var(--panel-2) 0%, var(--bg-1) 100%);
  box-shadow: 0 30px 70px -40px var(--blue-glow);
}
.tier__flag {
  position: absolute;
  top: -.7rem; left: 50%;
  translate: -50% 0;
  padding: .32rem .85rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px -8px var(--blue-glow);
}
.tier__name {
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.tier__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.tier__price b {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}
.tier__price s { color: var(--muted-2); font-size: 1.05rem; }
.tier__price i { font-style: normal; color: var(--muted); font-size: .85rem; }
.tier__for { color: var(--muted); font-size: .92rem; }

.tier ul { list-style: none; margin: 0; padding: .35rem 0 0; display: grid; gap: .62rem; border-top: 1px solid var(--line); }
.tier li { display: flex; align-items: flex-start; gap: .62rem; font-size: .91rem; color: #cfd6de; }
.tier li svg { width: 15px; height: 15px; color: var(--blue); flex: none; margin-top: .25rem; }
.tier li.is-off { color: var(--muted-2); }
.tier li.is-off svg { color: var(--muted-2); opacity: .5; }

.pricenote {
  margin-top: 1.6rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  color: var(--muted);
  font-size: .88rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.pricenote svg { width: 17px; height: 17px; color: var(--blue-300); flex: none; margin-top: .18rem; }

/* ---------- 15. Work carousel -------------------------------------------- */
.rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-track { background: var(--line); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }

.rail__card {
  flex: 0 0 clamp(240px, 30vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  aspect-ratio: 4 / 5;
}
.rail__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.rail__card:hover img { transform: scale(1.05); }
.rail__card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  font-size: .88rem;
  font-weight: 650;
}
.rail__card figcaption small {
  display: block;
  color: var(--blue-300);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.railnav { display: flex; gap: .5rem; }
.railnav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.railnav button:hover { background: var(--blue); border-color: var(--blue); }
.railnav svg { width: 18px; height: 18px; }

/* ---------- 16. Split / about -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 5 / 4;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--flip .split__media { order: -1; }

/* ---------- 17. FAQ ------------------------------------------------------ */
.faq { display: grid; gap: .7rem; max-width: 52rem; margin-inline: auto; }
.qa {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.qa[open] { border-color: rgba(15, 140, 255, .38); background: var(--panel); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 650;
  font-size: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "";
  width: 11px; height: 11px;
  flex: none;
  border-right: 2px solid var(--blue-300);
  border-bottom: 2px solid var(--blue-300);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}
.qa[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.qa__a { padding: 0 1.35rem 1.3rem; color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ---------- 18. CTA + booking form --------------------------------------- */
.cta {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(15, 140, 255, .22) 0%, transparent 58%),
    linear-gradient(160deg, var(--panel-2) 0%, var(--bg-1) 60%, #000 100%);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cta__glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 68%);
  filter: blur(70px);
  top: -180px; left: -140px;
  pointer-events: none;
}
.cta h2 { position: relative; }
.cta p { margin-top: 1.15rem; color: var(--muted); font-size: var(--lead); position: relative; }
.cta__row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; position: relative; }

.form {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: rgba(8, 10, 13, .68);
  backdrop-filter: blur(14px);
  display: grid;
  gap: .9rem;
}
.form__title {
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: .25rem;
}
.field { display: grid; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 650; color: var(--muted); letter-spacing: .01em; }
.field label .req { color: var(--blue-300); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .035);
  color: var(--white);
  font-size: .94rem;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(15, 140, 255, .07);
}
.field select { appearance: none; cursor: pointer; padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2398a2ae' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 15px;
}
.field select option { background: #0b0d10; color: #fff; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form__note { font-size: .76rem; color: var(--muted-2); line-height: 1.5; }
.form__msg {
  display: none;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  font-size: .87rem;
  border: 1px solid rgba(15, 140, 255, .4);
  background: rgba(15, 140, 255, .1);
  color: var(--blue-300);
}
.form__msg.is-on { display: block; }

/* ---------- 19. Footer --------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer__about p { margin-top: 1.25rem; color: var(--muted); font-size: .92rem; max-width: 24rem; }
.footer h4 {
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer ul a, .footer address a {
  color: var(--muted);
  font-size: .92rem;
  font-style: normal;
  transition: color .22s var(--ease);
}
.footer ul a:hover, .footer address a:hover { color: var(--blue-300); }
.footer address { font-style: normal; display: grid; gap: .7rem; color: var(--muted); font-size: .92rem; }
.footer address > * { display: flex; gap: .6rem; align-items: flex-start; }
.footer address svg { width: 15px; height: 15px; color: var(--blue-300); flex: none; margin-top: .28rem; }

.socials { display: flex; gap: .55rem; margin-top: 1.5rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .035);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.socials svg { width: 17px; height: 17px; }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-2);
  font-size: .84rem;
}
.footer__bar nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__bar a:hover { color: var(--blue-300); }

/* ---------- 20. Floating WhatsApp ---------------------------------------- */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 80;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #05240f;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab svg { width: 27px; height: 27px; }

/* ---------- 21. Page banner (inner pages) -------------------------------- */
.pagehead {
  position: relative;
  padding-top: clamp(9rem, 15vw, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pagehead__bg { position: absolute; inset: 0; z-index: -2; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.pagehead::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 70% at 15% 0%, rgba(15, 140, 255, .2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .6) 40%, var(--bg) 100%);
}
.crumbs { display: flex; gap: .55rem; align-items: center; font-size: .82rem; color: var(--muted-2); margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--blue-300); }
.crumbs span { color: var(--muted-2); }

/* ---------- 22. Prose (tips / legal) ------------------------------------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.75rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.85rem; }
.prose p, .prose li { color: var(--muted); font-size: 1rem; line-height: 1.78; }
.prose p { margin-top: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 0; padding-left: 1.15rem; display: grid; gap: .55rem; }
.prose strong { color: var(--text); font-weight: 650; }

/* ---------- 23. Scroll reveal -------------------------------------------- */
[data-rise] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-rise].is-in { opacity: 1; transform: none; }

/* ---------- 24. Responsive ----------------------------------------------- */
@media (max-width: 1020px) {
  .nav, .header__phone { display: none; }
  .burger { display: grid; }
  .svc { grid-template-columns: 1fr; }
  .svc__index { position: static; }
  .why, .split, .cta { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .why__media { aspect-ratio: 16 / 10; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pair { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 80px; }

  /* the header has to fit brand + CTA + burger on 375px, so the tagline and
     the language switch move out of the way (the switch reappears in the drawer) */
  .brand__tag { display: none; }
  .brand__text { font-size: 1.08rem; }
  .brand__mark { width: 32px; height: 32px; }
  .header__inner { gap: .75rem; }
  .header__side { gap: .45rem; }
  .header__side > .langtoggle { display: none; }
  .header__side .btn { padding: .68rem 1rem; font-size: .87rem; }
  .drawer .langtoggle { display: inline-flex; }

  .stats { grid-template-columns: 1fr; }
  .steps, .why__grid, .form__row, .svc__list,
  .grid-2, .grid-3, .cols-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .ba { aspect-ratio: 4 / 3; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ---------- 25. Motion / print ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-rise] { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}

@media print {
  .header, .drawer, .fab, .marquee, .railnav { display: none !important; }
  body { background: #fff; color: #000; }
}
