/* =========================================================
   Strigy Studio — brand stylesheet v2
   Palette from the owl logo: plum, mauve, silver, amber
   ========================================================= */

:root {
  /* Brand */
  --plum-950: #1c1726;
  --plum-900: #241e2e;
  --plum-800: #2e2738;
  --plum-700: #3a3147;
  --plum-600: #4a3f5c;
  --mauve:    #6b6076;
  --silver:   #b8b4be;
  --amber:    #f5a623;
  --amber-2:  #ffbb38;
  --amber-ink:#97600c;   /* AA-safe amber for small text on light bg */

  /* UI */
  --bg:       #faf9fb;
  --bg-soft:  #f3f1f6;
  --card:     #ffffff;
  --ink:      #1e1a24;
  --muted:    #6b6076;
  --line:     #e7e3ec;

  /* Radius tokens (unified) — larger, softer, modern */
  --radius:    24px;
  --radius-sm: 16px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Shadow tokens (unified) — softer, more diffuse */
  --shadow-sm: 0 1px 2px rgba(36,30,46,.05), 0 8px 24px rgba(36,30,46,.05);
  --shadow:    0 14px 40px rgba(36,30,46,.09);
  --shadow-lg: 0 40px 90px rgba(36,30,46,.20);

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

  --font-head: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 .4em;
  color: var(--plum-900);
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Accessible focus ring everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 22px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--amber); border-radius: 50%; box-shadow: 0 0 0 4px rgba(245,166,35,.18); }
.center .eyebrow, .section-head.center .eyebrow { margin-left: auto; margin-right: auto; }
/* dark-section eyebrow chip */
.hero .eyebrow, .about .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow, .impact .eyebrow {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: var(--amber-2);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.section { padding: 128px 0; position: relative; }
.section--tight { padding: 92px 0; }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.04em; }
.section-head p { color: var(--muted); font-size: 19px; margin-bottom: 0; line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; letter-spacing: -.01em;
  padding: 15px 28px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--amber); color: var(--plum-950); box-shadow: 0 8px 24px rgba(245,166,35,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,166,35,.45); }
.btn--ghost { background: transparent; color: var(--plum-900); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--plum-900); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, padding .3s; padding: 18px 0; }
.nav.scrolled { background: rgba(250,249,251,.82); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 50px; height: 50px; transition: width .3s, height .3s; animation: logoIdle 7s ease-in-out infinite; transform-origin: 50% 70%; }
.nav.scrolled .brand img { width: 42px; height: 42px; }
.brand:hover img { animation: owlNod .6s var(--ease); }     /* the owl logo "nods" on hover */
@keyframes owlNod { 0% { transform: rotate(0) scaleY(1); } 22% { transform: rotate(-9deg) scaleY(.88); } 55% { transform: rotate(5deg) scaleY(1.04); } 100% { transform: rotate(0) scaleY(1); } }
/* Suptilan "nod" u mirovanju — odmara većinu vremena, kratko kimne svakih 7s */
@keyframes logoIdle { 0%, 86%, 100% { transform: translateY(0) rotate(0); } 90% { transform: translateY(-2px) rotate(-7deg); } 94% { transform: translateY(0) rotate(5deg); } 97% { transform: rotate(-2deg); } }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: #fff; transition: color .3s; }
.nav.scrolled .brand__name { color: var(--plum-900); }
.footer .brand img { width: 46px; height: 46px; }
.footer .brand__name { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.82); position: relative; transition: color .2s; }
.nav.scrolled .nav__links a { color: var(--plum-700); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--amber); transition: width .25s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a:hover { color: var(--plum-900); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; margin: 0 auto; border-radius: 2px; transition: .3s; }
.nav.scrolled .nav__toggle span { background: var(--plum-900); }

/* ---------- App-style mobile menu ---------- */
.mobilemenu {
  position: fixed; inset: 0; z-index: 130;
  background: radial-gradient(900px 500px at 80% -10%, rgba(245,166,35,.16), transparent 60%),
              linear-gradient(165deg, var(--plum-950), var(--plum-800));
  color: #fff;
  display: flex; flex-direction: column;
  padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
  transform: translateY(-100%);
  opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .35s;
  visibility: hidden;
}
.mobilemenu.open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
.mobilemenu__head { display: flex; align-items: center; justify-content: space-between; padding: 4px 0 8px; }
.mobilemenu__head .brand__name { color: #fff; }
.mobilemenu__close { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; display: grid; place-items: center; cursor: pointer; transition: .2s; }
.mobilemenu__close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }
.mobilemenu__nav { display: flex; flex-direction: column; margin-top: 14px; flex: 1; }
.mobilemenu__nav a {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 8px;
  font-family: var(--font-head); font-size: 24px; font-weight: 500; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.09);
  opacity: 0; transform: translateX(-16px);
}
.mobilemenu.open .mobilemenu__nav a { animation: menuIn .5s var(--ease) forwards; }
.mobilemenu.open .mobilemenu__nav a:nth-child(1){ animation-delay:.08s }
.mobilemenu.open .mobilemenu__nav a:nth-child(2){ animation-delay:.14s }
.mobilemenu.open .mobilemenu__nav a:nth-child(3){ animation-delay:.20s }
.mobilemenu.open .mobilemenu__nav a:nth-child(4){ animation-delay:.26s }
.mobilemenu.open .mobilemenu__nav a:nth-child(5){ animation-delay:.32s }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.mobilemenu__nav .ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(245,166,35,.14); color: var(--amber-2); display: grid; place-items: center; flex: none; }
.mobilemenu__nav .ico svg { width: 20px; height: 20px; }
.mobilemenu__nav .chev { margin-left: auto; opacity: .4; }
.mobilemenu__nav .chev svg { width: 20px; height: 20px; }
.mobilemenu__foot { padding-top: 18px; }
.mobilemenu__foot .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.mobilemenu__quick { display: flex; gap: 10px; }
.mobilemenu__quick a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85); font-size: 14px; font-family: var(--font-head); }
.mobilemenu__quick a:hover { background: rgba(255,255,255,.08); }
.mobilemenu__quick svg { width: 17px; height: 17px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 92% 6%, rgba(245,166,35,.16), transparent 56%),
    radial-gradient(800px 460px at 0% 8%, rgba(107,96,118,.22), transparent 52%),
    linear-gradient(155deg, var(--plum-950), var(--plum-900) 48%, var(--plum-800));
  color: #fff;
  padding: 165px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero .eyebrow { color: var(--amber-2); }
.hero h1 { color: #fff; font-size: clamp(42px, 6.2vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -.045em; margin-bottom: 24px; }
.hero h1 .accent { background: linear-gradient(120deg, #ffd27a, var(--amber-2) 55%, var(--amber)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 4px 22px rgba(245,166,35,.35)); }
.hero__sub { font-size: clamp(16px, 1.9vw, 20px); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat .num { font-family: var(--font-head); font-size: 34px; font-weight: 600; color: #fff; line-height: 1; }
.hero__stat .num span { color: var(--amber-2); }
.hero__stat .lbl { font-size: 13.5px; color: rgba(255,255,255,.65); margin-top: 6px; max-width: 150px; }

/* Hero device showcase */
.hero__show { position: relative; z-index: 2; }
.hero__show .laptop { transform: perspective(1400px) rotateY(-14deg) rotateX(4deg); transform-style: preserve-3d; box-shadow: -30px 40px 80px rgba(0,0,0,.45); border-radius: 16px; transition: transform .6s var(--ease); }
.hero__show .laptop:hover { transform: perspective(1400px) rotateY(-8deg) rotateX(2deg); }
.hero__badge {
  position: absolute; left: -14px; bottom: 150px; z-index: 5;
  background: #fff; color: var(--plum-900);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: floatY 6s ease-in-out infinite;
}
.hero__badge .dot { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(150deg, var(--plum-700), var(--plum-600)); color: var(--amber-2); display: grid; place-items: center; flex: none; }
.hero__badge .dot svg { width: 20px; height: 20px; }
.hero__badge b { font-family: var(--font-head); font-size: 14px; display: block; }
.hero__badge span { font-size: 12.5px; color: var(--muted); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Client logo strip ---------- */
.clients { background: var(--plum-950); padding: 30px 0; }
.clients__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.clients__label { font-family: var(--font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); width: 100%; text-align: center; margin-bottom: 4px; }
.clients__name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: rgba(255,255,255,.62); letter-spacing: -.01em; transition: color .25s; }
.clients__name:hover { color: #fff; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service { grid-column: span 6; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
/* bento rhythm: 7/5 · 5/7 */
.services-grid .service:nth-child(1), .services-grid .service:nth-child(4) { grid-column: span 7; }
.services-grid .service:nth-child(2), .services-grid .service:nth-child(3) { grid-column: span 5; }
.service::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.14), transparent 65%); opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { opacity: 1; }
.service__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(150deg, var(--plum-700), var(--plum-600)); color: var(--amber-2); margin-bottom: 24px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.service:hover .service__icon { transform: translateY(-3px) rotate(-4deg); }
.service__icon svg { width: 27px; height: 27px; }
.service h3 { font-size: clamp(22px, 2.4vw, 28px); }
.service p { color: var(--muted); margin-bottom: 18px; }
.service ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.service li { font-size: 14.5px; color: var(--plum-700); display: flex; gap: 10px; align-items: flex-start; }
.service li::before { content: ""; flex: none; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---------- Process ---------- */
.process { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step__num { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--amber-ink); letter-spacing: .06em; margin-bottom: 16px; }
.step h4 { font-size: 18px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Device mockup (shared) ---------- */
.laptop { padding: 26px 26px 0; background: linear-gradient(160deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); }
.hero__show .laptop, .featured__mock .laptop, .modal__mock .laptop { background: transparent; border-bottom: none; padding: 0; }
.laptop__screen { position: relative; border: 9px solid #1c1726; border-radius: 14px 14px 0 0; background: var(--plum-800); aspect-ratio: 16 / 10; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.laptop__screen::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(115deg, rgba(255,255,255,.12), transparent 35%); pointer-events: none; }
.laptop__shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: object-position 2.6s var(--ease); }
.project:hover .laptop__shot { object-position: bottom center; }
.laptop__base { height: 16px; margin: 0 -16px; background: linear-gradient(#d6d4dc, #b4b1bd 60%, #97949f); border-radius: 0 0 9px 9px; position: relative; box-shadow: 0 6px 14px rgba(36,30,46,.16); }
.laptop__base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; background: #87848f; border-radius: 0 0 8px 8px; }
.hero__show .laptop__base, .featured__mock .laptop__base, .modal__mock .laptop__base { margin: 0 6px; }

/* Hero showcase — animirani prikaz projekata (samo crossfade, bez zooma) */
.hero__show { animation: heroFloat 6.5s ease-in-out infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.shotshow { position: absolute; inset: 0; }
.shotshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); will-change: opacity; }
.shotshow .slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.shotshow .slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__show { animation: none; }
  .shotshow .slide { transition: none; }
}

/* iMac mockup (hero prikaz) — realističan 24" iMac */
.imac {
  width: 100%; max-width: 600px; margin: 0 auto;
  transform: perspective(1700px) rotateY(-8deg) rotateX(2.5deg);
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
}
.imac:hover { transform: perspective(1700px) rotateY(-3.5deg) rotateX(1deg); }
.featured__mock .imac { max-width: 520px; }
@media (max-width: 900px) { .imac { transform: none; } }
/* Bijelo/srebrno kućište — tanki aluminijski rub gore/bočno + brada dolje */
.imac__display {
  position: relative;
  background: linear-gradient(180deg, #fafafc 0%, #eceaf1 66%, #d8d5df 100%);
  border-radius: 26px;
  padding: 7px 7px 52px;
  box-shadow:
    0 38px 70px rgba(20,16,30,.45),
    inset 0 1.5px 0 rgba(255,255,255,.9),
    inset 0 -1px 2px rgba(0,0,0,.05);
}
/* Bočni aluminijski bridovi (dubina) */
.imac__display::before {
  content: ""; position: absolute; inset: 0; border-radius: 26px; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.12), transparent 6%, transparent 94%, rgba(0,0,0,.12));
}
/* Brada — suptilni Apple-style udubljeni krug */
.imac__display::after {
  content: ""; position: absolute; left: 50%; bottom: 19px; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, #fff, #c4c1cd 70%, #aaa6b4);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.8), 0 1px 1px rgba(0,0,0,.08);
  opacity: .7;
}
/* Crno staklo: bezel oko ekrana */
.imac__glass {
  position: relative;
  background: linear-gradient(158deg, #16131d, #0a0810 60%);
  border-radius: 18px;
  padding: 13px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 0 26px rgba(0,0,0,.6);
}
.imac__screen {
  position: relative;
  border-radius: 7px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--plum-800);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 0 30px rgba(0,0,0,.45);
}
/* Odsjaj na staklu */
.imac__screen::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(122deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 22%, transparent 42%);
}
/* Aluminijski vrat */
.imac__neck {
  position: relative;
  width: 152px; height: 54px; margin: 0 auto;
  background: linear-gradient(180deg, #e6e4ea 0%, #c3c0cb 55%, #a8a4b2 100%);
  clip-path: polygon(37% 0, 63% 0, 73% 100%, 27% 100%);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.5), inset -1px 0 0 rgba(0,0,0,.06);
}
/* Tanko zakrivljeno aluminijsko postolje + kontaktna sjena */
.imac__foot {
  position: relative;
  width: 272px; height: 15px; margin: -2px auto 0;
  background: linear-gradient(180deg, #dad7e0 0%, #b6b2c0 55%, #948fa0 100%);
  border-radius: 8px / 60%;
  box-shadow: 0 2px 3px rgba(20,16,30,.2), inset 0 1px 0 rgba(255,255,255,.6);
}
.imac__foot::after {
  content: ""; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  width: 320px; height: 30px; border-radius: 50%; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(20,16,30,.34), transparent 70%);
}

/* ---------- Featured project ---------- */
.featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; margin-bottom: 40px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.featured::before { content: ""; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.10), transparent 65%); pointer-events: none; }
.featured__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); margin-bottom: 14px; }
.featured__tag::before { content: "★"; color: var(--amber); }
.featured h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.featured p { color: var(--muted); font-size: 16px; max-width: 460px; }
.featured__metrics { display: flex; gap: 28px; margin: 22px 0 26px; flex-wrap: wrap; }
.featured__metrics .m { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--plum-900); }
.featured__metrics .l { font-size: 13px; color: var(--muted); }
.featured__mock { position: relative; }

/* ---------- Portfolio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter { font-family: var(--font-head); font-size: 14px; font-weight: 500; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--plum-700); cursor: pointer; transition: .25s var(--ease); }
.filter:hover { border-color: var(--plum-600); }
.filter.active { background: var(--plum-900); color: #fff; border-color: var(--plum-900); }
.filter .count { opacity: .55; font-variant-numeric: tabular-nums; margin-left: 2px; }
.filter.active .count { opacity: .8; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease); }
.project:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project.is-hidden { opacity: 0; transform: scale(.96); pointer-events: none; }
.project__body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.project__cat { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); margin-bottom: 10px; }
.project__body h3 { font-size: 20px; margin-bottom: 8px; }
.project__body p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.project__foot { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-head); font-size: 14px; font-weight: 500; color: var(--plum-800); }
.project__foot .open { display: inline-flex; align-items: center; gap: 7px; }
.project__foot .open svg { width: 15px; height: 15px; transition: transform .25s; }
.project:hover .project__foot .open svg { transform: translate(3px,-3px); }

/* ---------- Impact band (animated counters + cursor spotlight) ---------- */
.impact { position: relative; overflow: hidden; color: #fff; padding: 104px 0;
  background: radial-gradient(900px 460px at 80% -10%, rgba(245,166,35,.10), transparent 55%), linear-gradient(160deg, var(--plum-950), var(--plum-900) 55%, var(--plum-800)); }
.impact__spot { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(420px 420px at var(--mx, 50%) var(--my, 30%), rgba(245,166,35,.20), transparent 62%);
  opacity: 0; transition: opacity .4s var(--ease); }
.impact:hover .impact__spot { opacity: 1; }
.impact::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 85%); }
.impact .container { position: relative; z-index: 2; }
.impact__head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.impact__head h2 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); letter-spacing: -.04em; }
.impact__head p { color: rgba(255,255,255,.72); font-size: 18px; margin: 0; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.impact-stat { text-align: center; padding: 34px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.035); transition: transform .4s var(--ease), border-color .4s, background .4s; }
.impact-stat:hover { transform: translateY(-5px); border-color: rgba(245,166,35,.35); background: rgba(255,255,255,.06); }
.impact-stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(46px, 6.5vw, 80px); line-height: 1; letter-spacing: -.05em;
  background: linear-gradient(125deg, #ffffff, #ffd27a); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums; display: inline-flex; align-items: flex-start; }
.impact-stat .n .sfx { -webkit-text-fill-color: var(--amber-2); color: var(--amber-2); font-size: .55em; margin-left: 2px; }
.impact-stat .l { margin-top: 12px; color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.45; }

/* cursor spotlight on bento service cards */
.service::after { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 50%), rgba(245,166,35,.12), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease); }
.service:hover::after { opacity: 1; }
.service > * { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-soft); }
/* auto-scrolling testimonials marquee (full-bleed, pauses on hover) */
.quotes-marquee {
  position: relative; width: 100vw; left: 50%; transform: translateX(-50%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.quotes-track { display: flex; gap: 24px; width: max-content; padding: 10px 12px; animation: quoteScroll 48s linear infinite; }
.quotes-marquee:hover .quotes-track { animation-play-state: paused; }
@keyframes quoteScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.quote { flex: none; width: 400px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; position: relative; box-shadow: var(--shadow-sm); }
.quote__mark { font-family: var(--font-head); font-size: 60px; line-height: .8; color: var(--amber); opacity: .5; height: 30px; }
.quote p { font-size: 17px; color: var(--plum-800); margin: 6px 0 24px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 600; flex: none; }
.quote__who b { font-family: var(--font-head); font-size: 15px; display: block; color: var(--plum-900); }
.quote__who span { font-size: 13.5px; color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--plum-900); color: #fff; }
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.about h2 { color: #fff; font-size: clamp(30px,4vw,46px); }
.about p { color: rgba(255,255,255,.78); font-size: 17px; }
.about .eyebrow { color: var(--amber-2); }
.about__owl { display: inline-flex; align-items: center; gap: 10px; margin: 6px 0 20px; padding: 10px 16px; border-radius: 999px; background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.25); color: var(--amber-2); font-size: 14px; }
.about__owl svg { width: 18px; height: 18px; }
.about__card { position: relative; background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 34px; }
.owl--peek { position: absolute; top: -56px; right: 30px; z-index: 4; filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)); }
.about__feat { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.about__feat:last-child { border-bottom: none; }
.about__feat .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(245,166,35,.16); color: var(--amber-2); display: grid; place-items: center; }
.about__feat .ico svg { width: 22px; height: 22px; }
.about__feat h4 { color: #fff; font-size: 16px; margin-bottom: 2px; }
.about__feat p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 96px 0 110px; }
.cta-band__inner { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--plum-900), var(--plum-700)); border-radius: var(--radius-lg); padding: 64px; text-align: center; color: #fff; }
.cta-band__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 50% -30%, rgba(245,166,35,.22), transparent 60%); pointer-events: none; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); position: relative; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.contact__info h2 { font-size: clamp(28px,3.6vw,42px); }
.contact__info > p { color: var(--muted); font-size: 17px; max-width: 380px; }
.contact__detail { display: flex; gap: 14px; margin-top: 24px; align-items: flex-start; }
.contact__detail .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--plum-700); }
.contact__detail .ico svg { width: 20px; height: 20px; }
.contact__detail h4 { font-size: 15px; margin-bottom: 2px; }
.contact__detail p { margin: 0; color: var(--muted); font-size: 15px; }
.contact__detail a:hover { color: var(--amber-ink); }

.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-size: 13.5px; font-weight: 500; color: var(--plum-800); margin-bottom: 8px; }
.field label .req { color: var(--amber-ink); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); background: #fff; box-shadow: 0 0 0 4px rgba(245,166,35,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b6076' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
/* inline validation */
.field.error input, .field.error select, .field.error textarea { border-color: #d64545; background: #fdf3f3; }
.field__err { display: none; color: #c0392b; font-size: 12.5px; margin-top: 6px; font-family: var(--font-head); }
.field.error .field__err { display: block; }
.form__hint { font-size: 13px; color: var(--muted); margin: 4px 0 10px; }
.form__trust { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.form__trust svg { width: 15px; height: 15px; color: #2fa86b; flex: none; }
.form .btn--primary { width: 100%; justify-content: center; }
.form .btn--primary[disabled] { opacity: .65; cursor: not-allowed; }
.form__error { display: none; color: #c0392b; font-size: 14px; text-align: center; margin-top: 14px; }
.form__error.show { display: block; }
.form__success { display: none; text-align: center; padding: 30px 10px; }
.form__success.show { display: block; animation: rise .4s var(--ease); }
.form__success .ok { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: rgba(245,166,35,.16); color: var(--amber); display: grid; place-items: center; }
.form__success .ok svg { width: 30px; height: 30px; }
.form__success h3 { font-size: 24px; }
.form__success p { color: var(--muted); margin: 0; }

/* ---------- App-style bottom bar (mobile) ---------- */
.appbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px rgba(36,30,46,.10);
  padding: 8px 8px calc(7px + env(safe-area-inset-bottom));
  align-items: flex-end; justify-content: space-around;
}
.appbar__item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--mauve); font-family: var(--font-head); font-size: 10.5px; font-weight: 500;
  padding: 6px 0; transition: color .2s; -webkit-tap-highlight-color: transparent;
}
.appbar__item svg { width: 22px; height: 22px; }
.appbar__item:hover, .appbar__item.active { color: var(--plum-900); }
.appbar__item.active svg { color: var(--amber-ink); }
.appbar__fab {
  flex: 0 0 auto; width: 58px; height: 58px; margin: 0 4px;
  transform: translateY(-16px);
  border-radius: 50%; background: var(--amber); color: var(--plum-950);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(245,166,35,.5);
  border: 4px solid var(--bg);
  transition: transform .25s var(--ease);
}
.appbar__fab:active { transform: translateY(-12px) scale(.96); }
.appbar__fab svg { width: 24px; height: 24px; }

/* ---------- Sticky CTA (desktop) ---------- */
.sticky-cta { position: fixed; right: 26px; bottom: 26px; z-index: 90; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta .btn { box-shadow: 0 14px 34px rgba(245,166,35,.45); }

/* ---------- Footer ---------- */
.footer { background: var(--plum-950); color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__col h5 { color: #fff; font-family: var(--font-head); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 9px; transition: color .2s; }
.footer__col a:hover { color: var(--amber-2); }
.footer__links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }
.footer__about { max-width: 300px; }
.footer__about p { font-size: 14.5px; line-height: 1.7; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; }
.modal.open { display: flex; }
.modal__overlay { position: fixed; inset: 0; background: rgba(28,23,38,.55); backdrop-filter: blur(6px); animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__panel { position: relative; z-index: 2; width: 100%; max-width: 820px; background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); animation: rise .4s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(30px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__hero { padding: 46px 46px 40px; color: #fff; position: relative; overflow: hidden; }
.modal__hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 140% at 85% 0%, rgba(255,255,255,.16), transparent 50%); }
.modal__close { position: absolute; top: 18px; right: 18px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; transition: .2s; }
.modal__close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }
.modal__cat { font-family: var(--font-head); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); position: relative; z-index: 2; }
.modal__hero h3 { color: #fff; font-size: 32px; margin: 12px 0 8px; position: relative; z-index: 2; }
.modal__hero p { color: rgba(255,255,255,.8); margin: 0; position: relative; z-index: 2; max-width: 560px; }
.modal__body { padding: 38px 46px 46px; }
.modal__mock { margin: 0 0 28px; }
.modal__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 4px 0 30px; }
.metric { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.metric .m { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--plum-900); }
.metric .l { font-size: 13px; color: var(--muted); margin-top: 4px; }
.modal__block { margin-bottom: 28px; }
.modal__block h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); margin-bottom: 10px; }
.modal__block p { color: var(--plum-800); margin: 0; }
.modal__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--font-head); font-size: 13px; padding: 7px 14px; border-radius: 999px; background: var(--bg-soft); color: var(--plum-700); border: 1px solid var(--line); }
a.chip, .chip--link { display: inline-flex; align-items: center; gap: 6px; transition: .2s var(--ease); }
.chip--link:hover { border-color: var(--amber); color: var(--plum-900); background: #fff; transform: translateY(-1px); }
.chip--link svg { width: 13px; height: 13px; }
.modal__visit { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 500; font-size: 15px; padding: 13px 22px; border-radius: 999px; background: var(--plum-900); color: #fff; transition: .25s var(--ease); }
.modal__visit:hover { background: var(--amber); color: var(--plum-950); transform: translateY(-2px); }
/* modal next-step CTA */
.modal__cta { margin-top: 30px; padding: 24px; border-radius: var(--radius); background: linear-gradient(150deg, var(--bg-soft), #fff); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.modal__cta b { font-family: var(--font-head); font-size: 17px; color: var(--plum-900); display: block; }
.modal__cta span { font-size: 14px; color: var(--muted); }
.modal__cta .btn { flex: none; }

/* ---------- Dynamic case-study modal ---------- */
.m-stagger { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.m-stagger.in { opacity: 1; transform: none; }
.modal__mock .laptop { transition: transform .25s var(--ease); transform-style: preserve-3d; }

.modal__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 4px 0 34px; }
.mstat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: transform .3s var(--ease), border-color .3s; }
.mstat:hover { transform: translateY(-3px); border-color: rgba(245,166,35,.4); }
.mstat__n { font-family: var(--font-head); font-weight: 800; font-size: 27px; line-height: 1; letter-spacing: -.035em;
  background: linear-gradient(125deg, var(--plum-900), var(--amber-ink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mstat__l { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

.modal__timeline { position: relative; margin: 8px 0 34px; }
.tl-step { position: relative; display: flex; gap: 18px; padding-bottom: 26px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: 19px; top: 46px; bottom: -2px; width: 2px; background: linear-gradient(var(--line), rgba(231,227,236,0)); }
.tl-step:last-child::before { display: none; }
.tl-num { flex: none; width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--amber-ink);
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3); }
.tl-body { padding-top: 4px; }
.tl-body h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); margin: 0 0 8px; }
.tl-body p { color: var(--plum-800); margin: 0; font-size: 15.5px; line-height: 1.7; }

.modal__features { margin-bottom: 30px; }
.modal__features h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); margin: 0 0 12px; }

.modal__page { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; position: relative; z-index: 2;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: #fff;
  padding: 9px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill); transition: .2s; }
.modal__page:hover { background: rgba(255,255,255,.14); }
.modal__page svg { width: 14px; height: 14px; }

.modal__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 24px; }
.modal__navbtn { display: flex; flex-direction: column; gap: 3px; text-align: left; cursor: pointer;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px;
  transition: transform .25s var(--ease), border-color .25s, background .25s; }
.modal__navbtn--next { text-align: right; align-items: flex-end; }
.modal__navbtn:hover { border-color: var(--amber); background: #fff; transform: translateY(-2px); }
.modal__navbtn .dir { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--amber-ink); }
.modal__navbtn .ttl { font-size: 14px; color: var(--plum-800); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Owl mascot (cursor-tracking, blinking) ---------- */
.work-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: none; }
.work-head > div:first-child { max-width: 680px; }

.owl { position: relative; width: 124px; height: 104px; flex: none; cursor: pointer; transition: transform .3s var(--ease); -webkit-tap-highlight-color: transparent; }
.owl:hover { transform: translateY(-3px); }
.owl.hop { animation: owlHop .55s var(--ease); }
@keyframes owlHop { 0%,100% { transform: translateY(0); } 28% { transform: translateY(-13px); } 52% { transform: translateY(0); } 72% { transform: translateY(-5px); } 88% { transform: translateY(0); } }
.owl--sm { width: 82px; height: 70px; }
.owl--lg { width: 150px; height: 126px; }
.owl__tuft { position: absolute; top: 2px; width: 0; height: 0; border-left: 13px solid transparent; border-right: 13px solid transparent; border-bottom: 26px solid var(--mauve); transition: transform .3s var(--ease); transform-origin: bottom center; }
.owl__tuft--l { left: 16px; transform: rotate(-22deg); }
.owl__tuft--r { right: 16px; transform: rotate(22deg); }
.owl:hover .owl__tuft--l { transform: rotate(-34deg) translateY(-2px); }
.owl:hover .owl__tuft--r { transform: rotate(34deg) translateY(-2px); }
.owl__face {
  position: absolute; inset: 14px 4px 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(160deg, #3a3147, #261f31);
  border-radius: 48% 48% 44% 44% / 54% 54% 46% 46%;
  box-shadow: var(--shadow), inset 0 2px 0 rgba(255,255,255,.06);
}
.owl__eye {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffffff, #d9d6df);
  box-shadow: inset 0 0 0 3px #1c1726, 0 0 0 0 rgba(245,166,35,0);
  overflow: hidden; transition: box-shadow .3s;
}
.owl:hover .owl__eye { box-shadow: inset 0 0 0 3px #1c1726, 0 0 18px 2px rgba(245,166,35,.5); }
.owl__pupil {
  position: absolute; top: 50%; left: 50%; width: 17px; height: 17px;
  margin: -8.5px 0 0 -8.5px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #4a3f5c, #1c1726 70%);
  transition: transform .12s linear;
}
.owl__pupil::after { content: ""; position: absolute; top: 3px; left: 4px; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.85); }
.owl__eye::after { /* eyelid blink */
  content: ""; position: absolute; inset: -1px; background: linear-gradient(#3a3147, #261f31);
  transform: scaleY(0); transform-origin: 50% 0; animation: owlBlink 5.4s infinite;
}
.owl__eye:nth-child(2)::after { animation-delay: .04s; }
@keyframes owlBlink { 0%, 92%, 100% { transform: scaleY(0); } 95%, 97% { transform: scaleY(1); } }
.owl__beak {
  position: absolute; left: 50%; bottom: 16px; width: 14px; height: 14px;
  margin-left: -7px; background: linear-gradient(150deg, var(--amber-2), var(--amber));
  border-radius: 3px; transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(245,166,35,.4);
}

/* ---------- Cooler case-study cards ---------- */
.project { position: relative; }
.project__media { position: relative; overflow: hidden; }
.project__media::after { /* shine sweep on hover */
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; z-index: 3;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-15deg); opacity: 0; pointer-events: none;
}
.project:hover .project__media::after { animation: shine 1s var(--ease); }
@keyframes shine { 0% { left: -70%; opacity: 0; } 28% { opacity: 1; } 100% { left: 130%; opacity: 0; } }
.project__reveal {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 22px;
  background: linear-gradient(to top, rgba(20,16,28,.86), rgba(20,16,28,.35) 52%, transparent);
  opacity: 0; transition: opacity .35s var(--ease);
}
.project:hover .project__reveal { opacity: 1; }
.project__reveal-in {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transform: translateY(16px); transition: transform .42s var(--ease);
}
.project:hover .project__reveal-in { transform: none; }
.project__metric b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 28px; line-height: 1; letter-spacing: -.035em; color: #fff;
}
.project__metric span { font-size: 12.5px; color: rgba(255,255,255,.72); }
.project__pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber); color: var(--plum-950);
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 11px 18px; border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(245,166,35,.5);
}
.project__pill svg { width: 17px; height: 17px; }
/* amber emphasis ring on hover */
.project:hover { box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(245,166,35,.4); }
.project__badge {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(28,23,38,.5); color: #fff; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
}

/* ---------- "Live" browser CTA (modal) ---------- */
.livecta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.livecta__btn { flex: 1 1 240px; display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.livecta__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.livecta__bar { display: flex; align-items: center; gap: 9px; padding: 14px 16px; background: var(--bg-soft); font-family: var(--font-head); font-size: 13px; color: var(--muted); border-right: 1px solid var(--line); white-space: nowrap; }
.livecta__bar .dot { width: 8px; height: 8px; border-radius: 50%; background: #2fa86b; box-shadow: 0 0 0 4px rgba(47,168,107,.18); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 3px rgba(47,168,107,.22); } 50% { box-shadow: 0 0 0 6px rgba(47,168,107,0); } }
.livecta__go { display: flex; align-items: center; gap: 8px; padding: 14px 18px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--plum-900); margin-left: auto; transition: background .3s, color .3s; }
.livecta__go svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.livecta__btn:hover .livecta__go { background: var(--amber); color: var(--plum-950); }
.livecta__btn:hover .livecta__go svg { transform: translate(3px,-3px); }

/* ---------- Language switch ---------- */
.lang-switch {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .04em;
  padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); color: #fff;
  transition: .25s;
}
.lang-switch:hover { background: rgba(255,255,255,.12); }
.nav.scrolled .lang-switch { color: var(--plum-800); border-color: var(--line); }
.nav.scrolled .lang-switch:hover { background: var(--bg-soft); }

/* ---------- Service "learn more" link + note ---------- */
.service__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--plum-800); transition: gap .25s, color .25s; }
.service__link svg { width: 15px; height: 15px; }
.service:hover .service__link { color: var(--amber-ink); gap: 12px; }
.usluge-note { margin-top: 32px; text-align: center; color: var(--muted); font-size: 15px; }
.usluge-note a { color: var(--amber-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); margin-bottom: 12px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--plum-900); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--amber); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-ic::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-ic::after { transform: scaleY(0); }
.faq-item > p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.faq-item > p a { color: var(--amber-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Landing & article pages ---------- */
.page-hero { background: linear-gradient(155deg, var(--plum-950), var(--plum-900) 55%, var(--plum-800)); color: #fff; padding: 150px 0 70px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 360px at 88% 0%, rgba(245,166,35,.14), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 20px; font-family: var(--font-head); }
.breadcrumbs a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumbs a:hover { color: var(--amber-2); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); max-width: 800px; margin-bottom: 18px; }
.page-hero .lead { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.85); max-width: 640px; }
.page-hero .eyebrow { color: var(--amber-2); }
.page-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.7); font-family: var(--font-head); }
.page-meta span { display: inline-flex; align-items: center; gap: 7px; }
.page-meta svg { width: 15px; height: 15px; color: var(--amber-2); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin: 48px 0 16px; }
.prose h3 { font-size: 21px; margin: 32px 0 10px; }
.prose p { color: var(--plum-800); font-size: 17px; line-height: 1.8; margin-bottom: 18px; }
.prose ul, .prose ol { color: var(--plum-800); font-size: 17px; line-height: 1.8; padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--amber-ink); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.prose strong { color: var(--plum-900); }
.prose .lead-p { font-size: 19px; color: var(--plum-700); }
.callout { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--radius-sm); padding: 22px 26px; margin: 28px 0; }
.callout p { margin: 0; font-size: 16px; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.feature-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feature-card .ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(150deg, var(--plum-700), var(--plum-600)); color: var(--amber-2); display: grid; place-items: center; margin-bottom: 14px; }
.feature-card .ic svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin: 0 0 6px; }
.feature-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.page-cta { background: linear-gradient(150deg, var(--plum-900), var(--plum-700)); border-radius: var(--radius-lg); padding: 54px; text-align: center; color: #fff; position: relative; overflow: hidden; margin-top: 20px; }
.page-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(640px 280px at 50% -30%, rgba(245,166,35,.22), transparent 60%); pointer-events: none; }
.page-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); position: relative; }
.page-cta p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 500px; margin: 0 auto 26px; position: relative; }
.page-cta .btn { position: relative; }

/* Blog hub cards */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__top { height: 8px; background: linear-gradient(90deg, var(--amber), var(--plum-600)); }
.post-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-ink); margin-bottom: 12px; }
.post-card h3 { font-size: 19px; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 16px; }
.post-card__more { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--plum-800); display: inline-flex; align-items: center; gap: 7px; }
.post-card:hover .post-card__more { color: var(--amber-ink); }

/* ---------- Blog article graphics ---------- */
.takeaways { background: linear-gradient(160deg, var(--bg-soft), #fff); border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 26px 30px; margin: 0 0 38px; }
.takeaways h3 { font-size: 13px; letter-spacing: .09em; text-transform: uppercase; color: var(--amber-ink); margin: 0 0 16px; display: flex; align-items: center; gap: 9px; }
.takeaways h3 svg { width: 18px; height: 18px; }
.takeaways ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.takeaways li { display: flex; gap: 11px; color: var(--plum-800); font-size: 15.5px; line-height: 1.55; }
.takeaways li svg { flex: none; width: 19px; height: 19px; color: var(--amber); margin-top: 1px; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.tier { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.tier--hot { border-color: var(--amber); box-shadow: var(--shadow-sm); position: relative; }
.tier__tag { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-ink); }
.tier h4 { font-size: 19px; margin: 6px 0 2px; }
.tier__for { font-size: 13px; color: var(--muted); }
.tier ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
.tier li { font-size: 14px; color: var(--plum-700); display: flex; gap: 9px; line-height: 1.4; }
.tier li::before { content: ""; flex: none; margin-top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }

.compare-wrap { overflow-x: auto; margin: 30px 0; }
.compare { width: 100%; min-width: 460px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 15px; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--plum-900); color: #fff; font-family: var(--font-head); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child, .compare th:first-child { font-family: var(--font-head); font-weight: 600; color: var(--plum-900); }
.compare tbody td:first-child { background: var(--bg-soft); font-size: 14px; }
.compare .yes { color: #2fa86b; font-weight: 700; }
.compare .no { color: #c0392b; font-weight: 700; }

.pullquote { margin: 40px 0; padding: 4px 0 4px 28px; border-left: 4px solid var(--amber); }
.pullquote p { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.3; color: var(--plum-900); letter-spacing: -.02em; margin: 0; }

.prose h2 .h2ic { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(245,166,35,.12); color: var(--amber-ink); margin-right: 10px; vertical-align: -7px; }
.prose h2 .h2ic svg { width: 17px; height: 17px; }

/* ---------- Extra micro-interactions ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 130;
  background: linear-gradient(90deg, var(--amber-2), var(--amber));
  box-shadow: 0 0 12px rgba(245,166,35,.6);
  pointer-events: none;
}
.tilt { transition: transform .22s var(--ease), box-shadow .4s var(--ease); transform-style: preserve-3d; }
.btn--primary { will-change: transform; }

/* animated gradient ring on the featured project */
@property --ring { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.featured::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  pointer-events: none; z-index: 0; opacity: 0; transition: opacity .45s var(--ease);
  background: conic-gradient(from var(--ring), transparent 0 60%, rgba(245,166,35,.9) 80%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.featured:hover::after { opacity: 1; animation: ringspin 4s linear infinite; }
@keyframes ringspin { to { --ring: 360deg; } }

/* ---------- Device duo (laptop + phone) ---------- */
.devices { position: relative; }
.devices .laptop { background: transparent; border-bottom: none; padding: 0; }
.devices .laptop__base { margin: 0 6px; }
.devices:hover .laptop__shot { object-position: top center; }

/* ---------- Case-study page ---------- */
.case-wrap { max-width: 940px; margin: 0 auto; }
.case-stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(20px, 3.5vw, 40px) clamp(20px, 4vw, 48px) 0; margin-bottom: 48px;
}
.case-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,.18), transparent 55%); }
.case-stage .devices { position: relative; z-index: 2; }
.case-mock { margin-bottom: 38px; }
.case-mock .laptop { background: transparent; border-bottom: none; padding: 0; }
.case-mock .laptop__base { margin: 0 6px; }
.case-wrap .modal__stats, .case-wrap .modal__timeline { margin: 0 0 36px; }
.case-block { margin-bottom: 38px; }
.case-block h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 14px; }
.case-block > p { color: var(--plum-800); font-size: 16.5px; line-height: 1.8; margin: 0; }
.case-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.case-list li { display: flex; gap: 12px; color: var(--plum-800); font-size: 16px; line-height: 1.6; }
.case-list li::before { content: ""; flex: none; margin-top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.chip--tech { background: var(--plum-900); color: #fff; border-color: transparent; font-weight: 500; }
.case-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; left: 22px; bottom: 22px; right: auto; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 36px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Cookie / privacy notice ---------- */
.cookie-note {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 140;
  max-width: 580px; margin: 0 auto;
  background: var(--plum-900); color: #fff; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  transform: translateY(180%); transition: transform .5s var(--ease);
}
.cookie-note.show { transform: none; }
.cookie-note p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.8); flex: 1; line-height: 1.5; }
.cookie-note a { color: var(--amber-2); text-decoration: underline; }
.cookie-note button {
  flex: none; font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  padding: 10px 18px; border-radius: var(--radius-pill); border: none;
  background: var(--amber); color: var(--plum-950); cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__show { max-width: 520px; }
  .hero__show .laptop { transform: none; box-shadow: var(--shadow-lg); }
  .featured { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service { grid-column: span 6 !important; }   /* even 2-up on tablet */
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: none; }   /* replaced by the app-style bottom bar */
  .appbar { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service { grid-column: 1 / -1 !important; padding: 34px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .modal__metrics, .modal__stats { grid-template-columns: 1fr; }
  .modal__nav { grid-template-columns: 1fr; }
  .modal__navbtn--next { text-align: left; align-items: flex-start; }
  .work-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .quote { width: 300px; padding: 28px; }
  .quote p { font-size: 15.5px; }
  .lang-switch { display: none; }
  .feature-cards, .posts, .tiers { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 56px; }
  .page-cta { padding: 40px 24px; }
  .prose h2 { margin-top: 36px; }
  .hero { padding-top: 130px; }
  .hero__stats { gap: 18px 28px; }
  .hero__stat .num { font-size: 28px; }
  .cta-band { padding: 64px 0 90px; }
  .cta-band__inner { padding: 44px 26px; }
  .modal__hero, .modal__body { padding-left: 26px; padding-right: 26px; }
  /* room for the app-style bottom bar */
  body { padding-bottom: 78px; }
  .sticky-cta { display: none; }   /* the bottom bar carries the CTA on mobile */
  .wa-float { left: auto; right: 16px; bottom: 92px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
  .cookie-note { bottom: 92px; }
  .case-stage { padding: 22px 22px 0; }
}

/* Slow the marquee/animations down on touch + small screens */
@media (max-width: 760px) {
  .clients__inner { gap: 12px 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__show .laptop { transform: none !important; }
  .imac { transform: none !important; }
  .mobilemenu .mobilemenu__nav a { opacity: 1; transform: none; }
  /* no auto-scroll: let users swipe the reviews instead */
  .quotes-track { animation: none !important; transform: none !important; }
  .quotes-marquee { overflow-x: auto; }
}
