/* ============================================
   AUBERT & MARÉCHAL — Design System (MOBILE-FIRST)
   Cabinet d'experts-comptables · Lausanne
   ============================================ */

/* --- Reset & base ---------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;  /* prevent any child element from extending viewport */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-width: 320px;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--indigo-100); color: var(--ink-900); }

/* --- Design tokens --------------------------------------- */

:root {
  --ink-900: oklch(0.16 0.05 268);
  --ink-800: oklch(0.22 0.06 268);
  --ink-700: oklch(0.30 0.05 268);
  --ink-600: oklch(0.38 0.04 268);
  --ink-500: oklch(0.50 0.035 268);
  --ink-400: oklch(0.62 0.03 268);
  --ink-300: oklch(0.75 0.02 268);

  --indigo-700: oklch(0.40 0.22 273);
  --indigo-600: oklch(0.48 0.22 273);
  --indigo-500: oklch(0.55 0.22 273);
  --indigo-400: oklch(0.68 0.18 273);
  --indigo-200: oklch(0.88 0.06 273);
  --indigo-100: oklch(0.94 0.04 273);
  --indigo-50:  oklch(0.97 0.02 273);

  --cream-50:  oklch(0.985 0.005 268);
  --cream-100: oklch(0.97 0.008 268);
  --cream-200: oklch(0.93 0.012 268);
  --cream-300: oklch(0.88 0.015 268);

  --gold: oklch(0.78 0.13 80);
  --gold-soft: oklch(0.92 0.07 80);

  --shadow-sm: 0 1px 2px -1px oklch(0.16 0.05 268 / 0.10);
  --shadow-md: 0 8px 24px -8px oklch(0.16 0.05 268 / 0.18), 0 2px 6px -2px oklch(0.16 0.05 268 / 0.10);
  --shadow-lg: 0 24px 60px -20px oklch(0.16 0.05 268 / 0.25), 0 8px 24px -8px oklch(0.16 0.05 268 / 0.15);
  --shadow-glow-indigo: 0 18px 48px -20px oklch(0.48 0.22 273 / 0.55);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-pill: 999px;

  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3rem, 8vw, 7rem);

  --ff-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Typography (mobile-first) --------------------------- */

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.875rem, 7.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.625rem, 5vw, 3rem);
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
h4 { font-size: 1.0625rem; line-height: 1.3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-600);
  background: var(--indigo-100);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  text-wrap: nowrap;
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--indigo-600);
  border-radius: 50%;
}

.lead {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--ink-600);
  line-height: 1.65;
  max-width: 56ch;
  text-wrap: pretty;
}

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

/* --- Layout ---------------------------------------------- */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--ink-900); color: var(--cream-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section--dark .lead, .section--dark .muted { color: var(--ink-300); }
.section--cream { background: var(--cream-100); }

/* Grids: mobile-first → all 1 col by default, expand on min-width */
.grid { display: grid; gap: 1.25rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 2rem; }
}

/* --- Top bar (hidden on mobile, shown ≥ 800px) ----------- */

.topbar { display: none; }
@media (min-width: 800px) {
  .topbar {
    display: block;
    background: var(--ink-900);
    color: var(--cream-100);
    font-size: 0.8125rem;
    padding: 10px 0;
    border-bottom: 1px solid oklch(1 0 0 / 0.06);
  }
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: oklch(1 0 0 / 0.72); transition: color 0.2s var(--ease-out-quart); }
.topbar__item:hover { color: var(--cream-50); }
.topbar__item svg { width: 14px; height: 14px; color: var(--indigo-400); }
.topbar__divider { width: 1px; height: 14px; background: oklch(1 0 0 / 0.12); }
.lang-switch { display: inline-flex; gap: 4px; align-items: center; }
.lang-switch a { padding: 2px 6px; border-radius: 4px; color: oklch(1 0 0 / 0.55); font-weight: 500; }
.lang-switch a.is-active { color: var(--cream-50); background: oklch(1 0 0 / 0.10); }

/* --- Navigation (mobile-first) --------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-50);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out-quart), background 0.3s var(--ease-out-quart);
}

.nav.is-scrolled {
  background: oklch(0.985 0.005 268 / 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--cream-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 14px;
}
@media (min-width: 980px) {
  .nav__inner { gap: 2rem; padding-block: 18px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  min-width: 0;
}
@media (min-width: 980px) { .brand { gap: 12px; font-size: 1.0625rem; } }

.brand__mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-700));
  display: grid; place-items: center;
  color: var(--cream-50);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 16px -8px oklch(0.48 0.22 273 / 0.6);
}
@media (min-width: 980px) { .brand__mark { width: 38px; height: 38px; font-size: 1rem; } }

.brand__name { line-height: 1; min-width: 0; }
.brand__name small { display: block; font-weight: 500; font-size: 0.5625rem; letter-spacing: 0.16em; color: var(--ink-500); text-transform: uppercase; margin-top: 4px; }
@media (min-width: 980px) { .brand__name small { font-size: 0.625rem; letter-spacing: 0.18em; } }

.nav .nav__menu { display: none; }
.nav .nav__cta { display: none; }
@media (max-width: 480px) {
  .brand__name small { display: none; }
}

@media (min-width: 980px) {
  .nav .nav__menu { display: flex; align-items: center; gap: 2.25rem; }
  .nav .nav__cta { display: inline-flex; margin-left: 0.5rem; }
}

.nav__link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 0;
  transition: color 0.2s var(--ease-out-quart);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink-900); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--indigo-600);
  border-radius: 2px;
}

.nav__toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  align-items: center; justify-content: center;
  border: 1px solid var(--cream-200);
}
.nav__toggle svg { width: 20px; height: 20px; color: var(--ink-800); }
@media (min-width: 980px) { .nav__toggle { display: none; } }

/* Mobile drawer — use right/transform combo to avoid horizontal overflow */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--ink-900);
  color: var(--cream-50);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 20px;
  visibility: hidden;
}
.drawer.is-open { transform: translate3d(0, 0, 0); visibility: visible; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; }
.drawer__close { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; background: oklch(1 0 0 / 0.08); }
.drawer__nav { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.drawer__link { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700; color: var(--cream-50); padding: 14px 0; border-bottom: 1px solid oklch(1 0 0 / 0.08); }
.drawer__link:last-of-type { border-bottom: none; }
.drawer__cta-wrap { margin-top: auto; padding-top: 24px; }
.drawer .btn { width: 100%; justify-content: center; }

/* --- Buttons (mobile-first, ≥44px touch target) --------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9375rem;
  min-height: 48px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), background 0.3s var(--ease-out-quart);
  position: relative;
  white-space: nowrap;
}

.btn__icon {
  width: 30px; height: 30px;
  border-radius: 999px;
  display: grid; place-items: center;
  margin-right: -8px;
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}
.btn__icon svg { width: 13px; height: 13px; }

.btn--primary { background: var(--indigo-600); color: var(--cream-50); box-shadow: var(--shadow-glow-indigo); }
.btn--primary .btn__icon { background: var(--cream-50); color: var(--indigo-600); }
.btn--primary:hover { background: var(--indigo-700); transform: translateY(-2px); box-shadow: 0 24px 60px -16px oklch(0.48 0.22 273 / 0.65); }
.btn--primary:hover .btn__icon { transform: translateX(3px); }

.btn--light { background: var(--cream-50); color: var(--ink-900); box-shadow: var(--shadow-md); }
.btn--light .btn__icon { background: var(--indigo-600); color: var(--cream-50); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--light:hover .btn__icon { transform: translateX(3px); }

.btn--ghost { background: transparent; color: var(--cream-50); border: 1px solid oklch(1 0 0 / 0.20); }
.btn--ghost:hover { background: oklch(1 0 0 / 0.06); border-color: oklch(1 0 0 / 0.35); }

.btn--ghost-dark { background: transparent; color: var(--ink-900); border: 1px solid var(--cream-300); padding: 13px 24px; }
.btn--ghost-dark:hover { background: var(--cream-100); border-color: var(--ink-300); }

.btn--play { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-900); font-weight: 500; padding: 6px 20px 6px 6px; }
.btn--play .btn__icon { background: var(--cream-50); color: var(--indigo-600); width: 44px; height: 44px; box-shadow: var(--shadow-md); margin-right: 0; }
.btn--play .btn__icon svg { width: 14px; height: 14px; }
.btn--play:hover .btn__icon { transform: scale(1.05); box-shadow: var(--shadow-lg); }

.btn--circle { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: var(--indigo-600); color: var(--cream-50); transition: transform 0.3s var(--ease-out-expo), background 0.3s var(--ease-out-quart); min-height: 0; padding: 0; }
.btn--circle:hover { background: var(--indigo-700); transform: translate(2px, -2px); }
.btn--circle svg { width: 14px; height: 14px; }

/* --- Hero (mobile-first) -------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 580px; padding-block: 0.5rem 1rem; }

.hero h1 { margin-top: 18px; max-width: 16ch; }
.hero h1 .accent { color: var(--indigo-600); display: inline; }

.hero__lead { margin-top: 18px; margin-bottom: 28px; }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.hero__actions .btn--primary { width: 100%; justify-content: center; }
.hero__actions .btn--play { align-self: flex-start; }

.hero__trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust-avatars { display: flex; }
.hero__trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 2px solid var(--cream-50);
  object-fit: cover;
  margin-left: -10px;
}
.hero__trust-avatars img:first-child { margin-left: 0; }
.hero__trust-text { line-height: 1.3; }
.hero__trust-text strong { font-family: var(--ff-display); font-weight: 700; color: var(--ink-900); display: block; font-size: 0.9375rem; }
.hero__trust-text span { font-size: 0.8125rem; color: var(--ink-500); }

/* Visual block (indigo + photo) — mobile = below content */
.hero__visual {
  position: relative;
  min-height: 380px;
  margin-top: 1.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-700) 60%, oklch(0.30 0.20 273));
  border-radius: var(--r-2xl);
  z-index: 1;
}

.hero__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo img {
  width: auto;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 20px 30px oklch(0.16 0.05 268 / 0.30));
}

.hero__badge {
  position: absolute;
  background: var(--cream-50);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  font-size: 0.8125rem;
}
.hero__badge--top { top: 5%; left: 4%; }
.hero__badge--mid { display: none; }
.hero__badge--bottom { bottom: 5%; right: 4%; background: var(--ink-900); color: var(--cream-50); padding: 14px 18px; }

.hero__badge-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--indigo-100);
  color: var(--indigo-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__badge--bottom .hero__badge-icon { background: oklch(1 0 0 / 0.10); color: var(--indigo-400); }
.hero__badge-icon svg { width: 16px; height: 16px; }

.hero__badge-text { line-height: 1.2; min-width: 0; }
.hero__badge-text strong { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--ink-900); }
.hero__badge--bottom .hero__badge-text strong { color: var(--cream-50); font-size: 1.375rem; }
.hero__badge-text span { font-size: 0.6875rem; color: var(--ink-500); }
.hero__badge--bottom .hero__badge-text span { color: oklch(1 0 0 / 0.65); }

/* Hero desktop — diagonal layout */
@media (min-width: 768px) {
  .hero__actions { flex-direction: row; gap: 18px; align-items: center; flex-wrap: wrap; }
  .hero__actions .btn--primary { width: auto; }
  .hero__badge { padding: 14px 18px; font-size: 0.875rem; }
  .hero__badge-icon { width: 40px; height: 40px; border-radius: 10px; }
  .hero__badge-icon svg { width: 18px; height: 18px; }
  .hero__badge-text strong { font-size: 1.125rem; }
  .hero__badge--bottom .hero__badge-text strong { font-size: 1.5rem; }
  .hero__badge-text span { font-size: 0.75rem; }
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: clamp(540px, 70vh, 720px);
  }
  .hero__content { padding-block: clamp(2rem, 4vw, 3rem); }
  .hero h1 { margin-top: 24px; max-width: none; }
  .hero__lead { margin-top: 24px; margin-bottom: 36px; }
  .hero__visual { min-height: 540px; margin-top: 0; height: 100%; }
  .hero__bg {
    top: -40px; bottom: -40px;
    right: calc(var(--gutter) * -1);
    left: auto;
    width: calc(100% + var(--gutter));
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 0 32px;
    inset: -40px calc(var(--gutter) * -1) -40px auto;
  }
  .hero__photo img { max-height: 640px; }
  .hero__badge--top { top: 8%; left: -16px; }
  .hero__badge--mid { display: flex; top: 42%; right: -8px; background: oklch(1 0 0 / 0.10); backdrop-filter: blur(20px); border: 1px solid oklch(1 0 0 / 0.18); color: var(--cream-50); }
  .hero__badge--mid .hero__badge-icon { background: oklch(1 0 0 / 0.15); color: var(--cream-50); }
  .hero__badge--mid .hero__badge-text strong { color: var(--cream-50); }
  .hero__badge--mid .hero__badge-text span { color: oklch(1 0 0 / 0.65); }
  .hero__badge--bottom { bottom: 8%; right: -8px; }
}

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

.logos { padding: 32px 0; border-bottom: 1px solid var(--cream-200); }
.logos__title { text-align: center; font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 24px; }
.logos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; align-items: center; }
.logos__grid > * { font-family: var(--ff-display); font-weight: 700; text-align: center; color: var(--ink-400); font-size: 1rem; letter-spacing: -0.01em; opacity: 0.75; transition: opacity 0.3s, color 0.3s; }
.logos__grid > *:hover { opacity: 1; color: var(--ink-700); }
@media (min-width: 640px) { .logos__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 900px) {
  .logos { padding: 48px 0; }
  .logos__grid { grid-template-columns: repeat(6, 1fr); gap: 2rem; }
  .logos__grid > * { font-size: 1.125rem; }
  .logos__title { font-size: 0.75rem; letter-spacing: 0.18em; margin-bottom: 32px; }
}

/* --- Section head -------------------------------------- */

.section-head { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: end; margin-bottom: 36px; }
.section-head h2 { margin-top: 12px; max-width: 18ch; }
.section-head__right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
@media (min-width: 760px) {
  .section-head { grid-template-columns: 1fr auto; gap: 2rem; margin-bottom: 56px; }
  .section-head h2 { margin-top: 16px; }
}

/* --- Service cards (image cards) ----------------------- */

.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.card { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-2xl); padding: 10px 10px 20px; transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), border-color 0.3s; position: relative; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--indigo-200); }
@media (min-width: 640px) { .card { padding: 12px 12px 28px; } }

.card__img { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16 / 11; background: var(--cream-200); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 20px 12px 0; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; }
@media (min-width: 640px) { .card__body { padding: 24px 16px 0; gap: 16px; } }
.card__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.1875rem; color: var(--ink-900); letter-spacing: -0.01em; line-height: 1.2; }
@media (min-width: 640px) { .card__title { font-size: 1.25rem; } }
.card__desc { font-size: 0.875rem; color: var(--ink-500); margin-top: 8px; line-height: 1.55; max-width: 30ch; }
.card__cta { align-self: center; }
.card--accent { border: 1.5px solid var(--indigo-600); }
.card--accent .card__cta { background: var(--ink-900); }
.card--accent .card__cta:hover { background: var(--ink-800); }

/* --- Feature list (dark) ------------------------------- */

.featurelist { display: grid; gap: 12px; }
.featurelist__item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 18px; border-radius: var(--r-lg); background: oklch(1 0 0 / 0.04); border: 1px solid oklch(1 0 0 / 0.06); align-items: start; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.featurelist__item:hover { background: oklch(1 0 0 / 0.07); border-color: oklch(1 0 0 / 0.14); transform: translateX(4px); }
.featurelist__item.is-highlighted { background: var(--indigo-600); border-color: var(--indigo-600); }

.featurelist__icon { width: 48px; height: 48px; border-radius: 12px; background: oklch(1 0 0 / 0.08); display: grid; place-items: center; color: var(--indigo-400); }
.featurelist__item.is-highlighted .featurelist__icon { background: oklch(1 0 0 / 0.15); color: var(--cream-50); }
.featurelist__icon svg { width: 20px; height: 20px; }

.featurelist__text h3 { color: var(--cream-50); margin-bottom: 4px; font-family: var(--ff-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.3; }
.featurelist__text p { color: oklch(1 0 0 / 0.65); font-size: 0.8125rem; line-height: 1.55; margin: 0; max-width: 60ch; }
.featurelist__item.is-highlighted .featurelist__text p { color: oklch(1 0 0 / 0.85); }
.featurelist__arrow { display: none; color: oklch(1 0 0 / 0.4); width: 20px; transition: transform 0.3s; }

@media (min-width: 768px) {
  .featurelist__item { grid-template-columns: 56px 1fr auto; gap: 20px; padding: 24px; }
  .featurelist__icon { width: 56px; height: 56px; border-radius: 14px; }
  .featurelist__icon svg { width: 22px; height: 22px; }
  .featurelist__text h3 { font-size: 1.125rem; margin-bottom: 6px; }
  .featurelist__text p { font-size: 0.875rem; }
  .featurelist__arrow { display: inline-block; align-self: center; }
  .featurelist__item:hover .featurelist__arrow { transform: translateX(4px); color: var(--cream-50); }
}

/* --- Split section ------------------------------------ */

.split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); } }

.split__img { position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 5 / 6; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }

.split__badge { position: absolute; inset: auto auto 16px 16px; background: var(--indigo-600); color: var(--cream-50); padding: 14px 18px; border-radius: var(--r-lg); max-width: 250px; box-shadow: var(--shadow-lg); }
.split__badge strong { display: block; font-family: var(--ff-display); font-size: 1rem; margin-bottom: 4px; }
.split__badge small { font-size: 0.75rem; color: oklch(1 0 0 / 0.78); }
@media (min-width: 768px) {
  .split__badge { inset: auto auto 24px 24px; padding: 18px 22px; border-radius: var(--r-xl); }
  .split__badge strong { font-size: 1.0625rem; margin-bottom: 4px; }
  .split__badge small { font-size: 0.8125rem; }
}

.split h2 { margin: 12px 0 18px; }
.split__list { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 20px 0 24px; }
@media (min-width: 540px) { .split__list { grid-template-columns: 1fr 1fr; gap: 18px 24px; margin: 24px 0 32px; } }

.split__list-item { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--ink-800); font-weight: 500; }
.split__list-item svg { width: 20px; height: 20px; color: var(--indigo-600); flex-shrink: 0; }

.split__cta-row { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }
.split__cta-row .btn--primary { width: 100%; justify-content: center; }
@media (min-width: 640px) {
  .split__cta-row { flex-direction: row; align-items: center; gap: 24px; flex-wrap: wrap; }
  .split__cta-row .btn--primary { width: auto; }
}
.split__phone { display: flex; align-items: center; gap: 12px; }
.split__phone-icon { width: 44px; height: 44px; border-radius: 999px; background: var(--indigo-100); color: var(--indigo-600); display: grid; place-items: center; flex-shrink: 0; }
.split__phone-text small { display: block; font-size: 0.75rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.1em; }
.split__phone-text strong { font-family: var(--ff-display); font-size: 1.0625rem; color: var(--ink-900); }

/* --- Testimonials ------------------------------------- */

.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .testimonials { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 980px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.testimonial { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-2xl); padding: 24px; position: relative; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (min-width: 640px) { .testimonial { padding: 32px; } }
.testimonial__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }
.testimonial__quote { font-family: var(--ff-display); font-size: 1.0625rem; line-height: 1.5; color: var(--ink-800); letter-spacing: -0.01em; margin-bottom: 20px; }
@media (min-width: 640px) { .testimonial__quote { font-size: 1.125rem; margin-bottom: 24px; } }
.testimonial__author { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--cream-200); }
.testimonial__author img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.testimonial__author strong { display: block; font-family: var(--ff-display); color: var(--ink-900); font-weight: 700; font-size: 0.9375rem; }
.testimonial__author span { font-size: 0.8125rem; color: var(--ink-500); }

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

.steps { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: step; }
@media (min-width: 540px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.step { counter-increment: step; position: relative; padding: 28px 22px 24px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-xl); }
@media (min-width: 640px) { .step { padding: 32px 24px 28px; } }
.step__num { font-family: var(--ff-display); font-weight: 800; font-size: 2.5rem; color: var(--indigo-100); line-height: 1; letter-spacing: -0.04em; }
.step__num::before { content: "0" counter(step); }
@media (min-width: 640px) { .step__num { font-size: 3rem; } }
.step h3 { margin-top: 4px; margin-bottom: 8px; font-family: var(--ff-display); color: var(--ink-900); font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.3; }
@media (min-width: 640px) { .step h3 { font-size: 1.125rem; } }
.step p { font-size: 0.875rem; color: var(--ink-600); line-height: 1.55; }

/* --- Service detail rows ------------------------------ */

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  padding: 28px 8px;
  align-items: start;
  border-top: 1px solid var(--cream-200);
  transition: background 0.3s;
}
.service-row:hover { background: var(--cream-100); }
.service-row:last-child { border-bottom: 1px solid var(--cream-200); }
.service-row__num { font-family: var(--ff-mono); font-size: 0.75rem; color: var(--ink-500); letter-spacing: 0.1em; padding-top: 4px; font-weight: 600; }
.service-row__title { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.25rem, 4vw, 2rem); color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.15; }
.service-row__desc { color: var(--ink-600); margin-top: 8px; font-size: 0.9375rem; max-width: 60ch; }
.service-row__cta { grid-column: 2; justify-self: start; margin-top: 8px; }

@media (min-width: 768px) {
  .service-row { grid-template-columns: auto 1fr auto; gap: 32px; padding: 36px 24px; align-items: center; }
  .service-row__cta { grid-column: auto; justify-self: end; margin-top: 0; }
}

/* --- Stats ------------------------------------------- */

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 640px) { .stats { gap: 12px; } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { padding: 24px 20px; border-radius: var(--r-lg); background: oklch(1 0 0 / 0.04); border: 1px solid oklch(1 0 0 / 0.06); }
@media (min-width: 640px) { .stat { padding: 32px 28px; border-radius: var(--r-xl); } }
.stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 6vw, 3.5rem); color: var(--cream-50); line-height: 1; letter-spacing: -0.03em; }
.stat__label { color: oklch(1 0 0 / 0.65); font-size: 0.8125rem; margin-top: 10px; line-height: 1.45; }
@media (min-width: 640px) { .stat__label { font-size: 0.875rem; margin-top: 12px; } }

/* --- Team grid ---------------------------------------- */

.team { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 640px) { .team { gap: 20px; } }
@media (min-width: 900px) { .team { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1100px) { .team { grid-template-columns: repeat(4, 1fr); } }

.member { position: relative; }
.member__img { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream-200); }
@media (min-width: 640px) { .member__img { border-radius: var(--r-xl); } }
.member__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.member:hover .member__img img { transform: scale(1.03); }
.member__info { padding-top: 14px; }
@media (min-width: 640px) { .member__info { padding-top: 18px; } }
.member__name { font-family: var(--ff-display); font-weight: 700; color: var(--ink-900); font-size: 1rem; }
@media (min-width: 640px) { .member__name { font-size: 1.125rem; } }
.member__role { font-size: 0.8125rem; color: var(--indigo-600); margin-top: 2px; }
@media (min-width: 640px) { .member__role { font-size: 0.875rem; } }
.member__cert { font-size: 0.75rem; color: var(--ink-500); margin-top: 4px; }
@media (min-width: 640px) { .member__cert { font-size: 0.8125rem; margin-top: 6px; } }

/* --- Values cards ------------------------------------- */

.values { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .values { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.value { padding: 28px 24px; border-radius: var(--r-lg); background: var(--cream-50); border: 1px solid var(--cream-200); transition: transform 0.4s var(--ease-out-expo), border-color 0.3s; }
@media (min-width: 640px) { .value { padding: 32px 28px; border-radius: var(--r-xl); } }
.value:hover { transform: translateY(-4px); border-color: var(--indigo-200); }
.value__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--indigo-100); color: var(--indigo-600); display: grid; place-items: center; margin-bottom: 18px; }
@media (min-width: 640px) { .value__icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px; } }
.value__icon svg { width: 22px; height: 22px; }
@media (min-width: 640px) { .value__icon svg { width: 24px; height: 24px; } }
.value h3 { font-family: var(--ff-display); color: var(--ink-900); margin-bottom: 8px; font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.3; font-weight: 700; }
.value p { color: var(--ink-600); font-size: 0.875rem; line-height: 1.55; }

/* --- Page hero (interior pages) ------------------------ */

.page-hero { padding: clamp(2rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem); background: linear-gradient(135deg, var(--ink-900) 0%, oklch(0.20 0.07 268) 100%); color: var(--cream-50); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, oklch(0.55 0.22 273 / 0.30), transparent 70%); filter: blur(20px); }
.page-hero__inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { color: var(--cream-50); margin-top: 14px; font-size: clamp(1.875rem, 6vw, 3.75rem); max-width: 22ch; }
.page-hero p { color: oklch(1 0 0 / 0.75); margin-top: 16px; max-width: 56ch; font-size: clamp(0.9375rem, 1.3vw, 1.0625rem); }
.page-hero__breadcrumb { display: flex; gap: 10px; font-size: 0.8125rem; color: oklch(1 0 0 / 0.6); align-items: center; }
.page-hero__breadcrumb a:hover { color: var(--cream-50); }
.page-hero__breadcrumb svg { width: 14px; height: 14px; }

/* --- Contact form -------------------------------------- */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; gap: 20px; } }
.form__field { display: grid; gap: 6px; }
.form__field label { font-size: 0.8125rem; font-weight: 600; color: var(--ink-800); letter-spacing: 0.02em; }
.form__field input, .form__field textarea, .form__field select {
  padding: 14px 16px;
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  background: var(--cream-50);
  color: var(--ink-900);
  font-size: 1rem; /* 16px to prevent iOS zoom */
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus { outline: none; border-color: var(--indigo-600); box-shadow: 0 0 0 4px var(--indigo-100); }
.form__field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.form__consent { font-size: 0.8125rem; color: var(--ink-500); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.form__consent input { margin-top: 4px; accent-color: var(--indigo-600); width: 18px; height: 18px; flex-shrink: 0; }
.form button[type="submit"] { width: 100%; justify-content: center; }
@media (min-width: 540px) { .form button[type="submit"] { width: auto; justify-self: start; } }

.contact-info { display: grid; gap: 14px; align-content: start; }
.info-card { padding: 20px; border-radius: var(--r-lg); border: 1px solid var(--cream-200); background: var(--cream-50); display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; transition: border-color 0.3s, background 0.3s; }
.info-card:hover { border-color: var(--indigo-200); }
@media (min-width: 640px) { .info-card { padding: 24px; gap: 18px; grid-template-columns: 48px 1fr; border-radius: var(--r-xl); } }
.info-card__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--indigo-100); color: var(--indigo-600); display: grid; place-items: center; }
@media (min-width: 640px) { .info-card__icon { width: 48px; height: 48px; border-radius: 12px; } }
.info-card__icon svg { width: 20px; height: 20px; }
@media (min-width: 640px) { .info-card__icon svg { width: 22px; height: 22px; } }
.info-card small { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-500); font-weight: 600; }
@media (min-width: 640px) { .info-card small { font-size: 0.75rem; } }
.info-card strong { display: block; font-family: var(--ff-display); font-weight: 700; color: var(--ink-900); margin-top: 4px; font-size: 0.9375rem; line-height: 1.3; }
@media (min-width: 640px) { .info-card strong { font-size: 1rem; } }

.map { aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--cream-200); margin-top: 20px; }
@media (min-width: 640px) { .map { border-radius: var(--r-2xl); margin-top: 24px; } }
.map iframe { width: 100%; height: 100%; border: 0; }

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

.faq { display: grid; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq__item { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-md); padding: 18px 20px; transition: background 0.2s, border-color 0.2s; }
@media (min-width: 640px) { .faq__item { border-radius: var(--r-lg); padding: 20px 24px; } }
.faq__item:hover { border-color: var(--indigo-200); }
.faq__item summary { font-family: var(--ff-display); font-weight: 700; color: var(--ink-900); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.9375rem; line-height: 1.35; }
@media (min-width: 640px) { .faq__item summary { font-size: 1rem; } }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; color: var(--indigo-600); transition: transform 0.3s; line-height: 1; font-weight: 400; flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-600); font-size: 0.9375rem; line-height: 1.65; margin-top: 12px; }

/* --- Big CTA section --------------------------------- */

.cta-band { background: var(--indigo-600); color: var(--cream-50); border-radius: var(--r-xl); padding: clamp(2rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem); display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 640px) { .cta-band { border-radius: var(--r-2xl); } }
.cta-band::after { content: ''; position: absolute; right: -100px; top: -100px; width: 380px; height: 380px; background: radial-gradient(circle, oklch(1 0 0 / 0.15), transparent 70%); filter: blur(20px); pointer-events: none; }
.cta-band h2 { color: var(--cream-50); position: relative; z-index: 2; margin-bottom: 0; max-width: 18ch; }
.cta-band p { color: oklch(1 0 0 / 0.85); margin-top: 14px; max-width: 50ch; position: relative; z-index: 2; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; align-items: stretch; }
.cta-band__actions .btn { justify-content: center; width: 100%; }
@media (min-width: 640px) { .cta-band__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; } .cta-band__actions .btn { width: auto; } }
@media (min-width: 800px) { .cta-band { grid-template-columns: 1.5fr 1fr; gap: 2rem; } .cta-band__actions { justify-self: end; } }

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

.footer { background: var(--ink-900); color: oklch(1 0 0 / 0.7); padding: clamp(2.5rem, 6vw, 5rem) 0 1.75rem; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid oklch(1 0 0 / 0.08); }
@media (min-width: 540px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; } }

.footer__brand .brand { color: var(--cream-50); }
.footer__brand .brand__name small { color: oklch(1 0 0 / 0.70); }
.footer__about { margin-top: 16px; max-width: 38ch; font-size: 0.875rem; line-height: 1.65; }
.footer__social { display: flex; gap: 8px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid oklch(1 0 0 / 0.12); display: grid; place-items: center; transition: background 0.2s, border-color 0.2s; }
.footer__social a:hover { background: var(--indigo-600); border-color: var(--indigo-600); }
.footer__social svg { width: 16px; height: 16px; color: var(--cream-50); }

.footer h3.footer__heading { font-family: var(--ff-display); color: var(--cream-50); font-weight: 700; font-size: 0.9375rem; margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.3; }
.footer__list { display: grid; gap: 10px; font-size: 0.875rem; }
.footer__list a { transition: color 0.2s; }
.footer__list a:hover { color: var(--cream-50); }

.footer__bottom { padding-top: 22px; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: oklch(1 0 0 / 0.5); }
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8125rem; padding-top: 28px; } }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

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

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo); }
.reveal-stagger.is-in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 70ms; }
.reveal-stagger.is-in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 140ms; }
.reveal-stagger.is-in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 210ms; }
.reveal-stagger.is-in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 280ms; }
.reveal-stagger.is-in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 350ms; }
.reveal-stagger.is-in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 420ms; }
.reveal-stagger.is-in > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 490ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* --- Utilities ------------------------------------- */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 60ch; }
.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; }


/* Picture as transparent wrapper (preserves layout) */
picture { display: contents; }


/* ─── Sticky Khoma CTA · pill flottant centré ─── */
.khoma-band {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.35), 0 6px 14px rgba(10, 10, 10, 0.18);
  color: white;
  text-decoration: none;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
              background 180ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100% - 28px);
}
.khoma-band:hover {
  background: rgba(10, 10, 10, 0.96);
  transform: translateX(-50%) translateY(-2px);
}
.khoma-band__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5B3DF5;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(91, 61, 245, 0.7);
  animation: khomaDotPulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes khomaDotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(91, 61, 245, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 16px rgba(91, 61, 245, 1); transform: scale(1.2); }
}
.khoma-band__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}
.khoma-band__title {
  font-family: 'Inter Tight', Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.khoma-band__sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.62);
}
.khoma-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #5B3DF5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: background 180ms ease, transform 180ms cubic-bezier(0.34, 1.36, 0.64, 1);
}
.khoma-band__btn:hover { background: #4530D6; transform: translateY(-1px); }
@media (max-width: 760px) {
  .khoma-band {
    bottom: 14px;
    max-width: calc(100% - 20px);
    width: calc(100% - 20px);
    padding: 9px 10px 9px 16px;
    gap: 10px;
    box-shadow: 0 14px 32px rgba(10, 10, 10, 0.32), 0 4px 10px rgba(10, 10, 10, 0.20);
  }
  .khoma-band:hover { transform: translateX(-50%) translateY(-1px); }
  .khoma-band__text { flex: 1; min-width: 0; }
  .khoma-band__title { font-size: 12.5px; }
  .khoma-band__sub { font-size: 10.5px; }
  .khoma-band__btn { padding: 8px 12px; font-size: 12px; }
}
