﻿/* ── TOKENS ── */
:root {
  --bg:       #f1f0ed;
  --card:     #ffffff;
  --s2:       #f5f5f5;
  --s3:       #e8e8e8;
  --line:     rgba(0,0,0,0.07);
  --line2:    rgba(0,0,0,0.11);
  --ink:      #111111;
  --ink2:     #222222;
  --ink3:     #777777;
  --ink4:     #aaaaaa;
  --brand:    #007AFF;
  --brand-h:   #0A84FF;
  --brand-dk: #0062CC;
  --brand-dkr:#004EA8;
  --brand-s:       #EBF4FF;
  --gr:       rgba(0,122,255,0.13);

  --serif:  'Instrument Serif', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --mono:   'Geist Mono', monospace;

  --r:    12px;
  --rl:   20px;
  --rxl:  28px;
  --r2xl: 40px;
  --pill: 999px;
  --e:    cubic-bezier(.22,1,.36,1);

  --sh-pill: 0 8px 28px rgba(0,0,0,0.07);
  --sh-card: 0 10px 30px rgba(0,0,0,0.06);
  --sh-fab:  0 10px 24px rgba(0,0,0,0.22);
  --sh-seg:  0 1px 3px rgba(0,0,0,0.08);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; }
body {
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3 { font-family:var(--sans); font-weight:700; line-height:1.0; letter-spacing:-.035em; }
/* two-tone heading: muted lead line, ink remainder */
.hl-mute { color:var(--ink4); }
a { color:inherit; text-decoration:none; }
button { font-family:var(--sans); cursor:pointer; border:none; background:none; -webkit-tap-highlight-color:transparent; }
img { display:block; max-width:100%; }

/* ── LAYOUT ── */
.wrap { max-width:1080px; margin:0 auto; padding:0 20px; }
@media(min-width:640px) { .wrap { padding:0 32px; } }
@media(min-width:1024px) { .wrap { padding:0 48px; } }

/* ── TRANSITION ── */
#app { transition:opacity .28s var(--e), transform .28s var(--e); }
#app.out { opacity:0; transform:translateY(8px); pointer-events:none; }

/* ── REVEAL ── */
.sr { opacity:0; transform:translateY(16px); transition:opacity .6s var(--e), transform .6s var(--e); }
.sr.on { opacity:1; transform:none; }
.sr.d0{transition-delay:0s} .sr.d1{transition-delay:.07s} .sr.d2{transition-delay:.14s} .sr.d3{transition-delay:.21s} .sr.d4{transition-delay:.28s}

/* ── CLICK RIPPLE ── */
.click-ripple {
  position:fixed; pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
}
.click-ripple::after {
  content:''; position:absolute;
  width:36px; height:36px; margin:-18px;
  border-radius:50%;
  border:1.5px solid rgba(23,122,70,0.4);
  animation:click-ring .55s var(--e) forwards;
}
@keyframes click-ring {
  from { transform:scale(0); opacity:1; }
  to   { transform:scale(3.5); opacity:0; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .nav-eq span, .ap-dot { animation: none !important; }
  .sr { transition: none; }
}

/* ══════════════════════════════════════
   FLOATING PILL NAV
══════════════════════════════════════ */
.nav-shell {
  position:fixed; top:18px; left:50%;
  transform:translateX(-50%);
  z-index:900;
  width:calc(100% - 32px);
  max-width:1080px;
  transition:width .4s var(--e), max-width .4s var(--e);
}
.nav-shell.scrolled {
  width:min(calc(100% - 32px), 260px);
  max-width:260px;
}
nav {
  position:relative;
  height:60px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 8px 0 12px;
  border-radius:var(--pill);
  overflow:hidden;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(40px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter:blur(40px) saturate(200%) brightness(1.05);
  border:1px solid rgba(255,255,255,0.92);
  box-shadow:var(--sh-pill), inset 0 1px 0 rgba(255,255,255,0.95);
  transition:height .35s var(--e), box-shadow .35s var(--e);
}
nav::before {
  content:'';
  position:absolute; inset:0; border-radius:inherit; pointer-events:none; z-index:1;
  background:linear-gradient(135deg,rgba(255,255,255,.55) 0%,rgba(255,255,255,.06) 45%,rgba(255,255,255,0) 55%,rgba(255,255,255,.07) 100%);
}
nav.scrolled { height:50px; }

.nav-brand {
  display:flex; align-items:center; gap:10px;
  cursor:pointer; position:relative; z-index:2; flex-shrink:0;
  min-height:44px;
}
.nav-av {
  width:36px; height:36px; border-radius:50%;
  object-fit:cover; display:block;
  box-shadow:0 0 0 1px var(--line);
  flex-shrink:0;
}
.nav-name { font-size:16px; font-weight:600; color:var(--ink); white-space:nowrap; letter-spacing:-.01em; }

/* Links — absolutely centered within the pill */
.nav-links {
  display:flex; gap:4px; z-index:2;
  position:absolute; left:50%; transform:translateX(-50%);
  transition:opacity .25s;
}
.nav-links a {
  font-size:15px; font-weight:500; color:var(--ink3);
  padding:8px 14px; border-radius:var(--pill);
  transition:color .18s, background .18s;
  min-height:40px; display:flex; align-items:center;
}
.nav-links a:hover,
.nav-links a.active { color:var(--ink); background:rgba(0,0,0,0.055); }
nav.scrolled .nav-links { opacity:0; pointer-events:none; }
@media(max-width:767px) { .nav-links { display:none; } }

/* Right slot — one control visible per state */
.nav-right { display:flex; align-items:center; gap:8px; z-index:2; flex-shrink:0; }

.nav-cta {
  font-size:14px; font-weight:500; color:#fff;
  background:var(--brand); padding:10px 20px;
  border-radius:var(--pill); position:relative; overflow:hidden;
  transition:background .2s, box-shadow .2s, transform .18s;
  white-space:nowrap; min-height:44px; display:inline-flex; align-items:center;
  box-shadow:var(--sh-fab);
}
.nav-cta:hover { background:var(--brand-h); transform:translateY(-1px); }
.nav-cta:active { transform:scale(.97); }
nav.scrolled .nav-cta { display:none; }
@media(max-width:767px) { .nav-cta { display:none; } }

/* Hamburger — mobile top only */
.nav-burger {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; align-items:center; flex-shrink:0;
}
.nav-burger span {
  width:20px; height:2px; border-radius:2px; background:var(--ink);
  transition:transform .28s var(--e), opacity .2s var(--e);
}
.nav-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media(max-width:767px) { .nav-burger { display:flex; } }
nav.scrolled .nav-burger { display:none; }

/* Equalizer — scrolled state only */
.nav-eq {
  display:none; align-items:flex-end; gap:2.5px; height:14px;
  flex-shrink:0; padding:0 8px;
}
nav.scrolled .nav-eq { display:flex; }
.nav-eq span {
  width:3px; border-radius:2px; background:var(--brand);
  animation:eq-bar 1.1s ease-in-out infinite;
  transform-origin:bottom;
}
.nav-eq span:nth-child(1) { height:6px; animation-delay:0s; }
.nav-eq span:nth-child(2) { height:12px; animation-delay:.18s; }
.nav-eq span:nth-child(3) { height:8px; animation-delay:.36s; }
@keyframes eq-bar {
  0%,100% { transform:scaleY(.35); }
  50%      { transform:scaleY(1); }
}

/* Hamburger overlay menu */
.nav-menu {
  position:fixed; inset:0; z-index:880;
  background:rgba(241,240,237,0.97);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  opacity:0; pointer-events:none; transition:opacity .3s var(--e);
}
.nav-menu.open { opacity:1; pointer-events:auto; }
.nav-menu a {
  font-size:clamp(36px,9vw,56px); font-weight:800; letter-spacing:-.035em;
  color:var(--ink4); transition:color .18s; padding:6px 0;
}
.nav-menu a:hover, .nav-menu a.active { color:var(--ink); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  font-family:var(--sans); font-size:15px; font-weight:500;
  border-radius:var(--pill); cursor:pointer; border:none;
  transition:all .22s var(--e); letter-spacing:-.01em;
  min-height:48px; padding:12px 26px;
  -webkit-tap-highlight-color:transparent;
}
.btn-green {
  background:var(--brand); color:#fff;
  position:relative; overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 16px var(--gr),
    0 1px 3px rgba(0,0,0,0.10);
}
.btn-green::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(255,255,255,0.18) 0%,transparent 55%);
  border-radius:inherit; pointer-events:none;
}
.btn-green:hover {
  background:var(--brand-h);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(0,0,0,0.14),
    0 8px 28px var(--gr),
    0 2px 6px rgba(0,0,0,0.12);
  transform:translateY(-2px);
}
.btn-green:active { transform:scale(.97); box-shadow:none; }

.btn-soft {
  background:rgba(255,255,255,0.52); color:var(--ink2);
  border:1px solid rgba(255,255,255,0.80);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  position:relative; overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.60),
    0 2px 12px rgba(0,0,0,0.08);
}
.btn-soft::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(255,255,255,0.30) 0%,transparent 55%);
  border-radius:inherit; pointer-events:none;
}
.btn-soft:hover {
  background:rgba(255,255,255,0.70); color:var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.80),
    0 4px 20px rgba(0,0,0,0.10);
  transform:translateY(-1px);
}
.btn-soft:active { transform:scale(.97); }

.btn-text { background:none; color:var(--brand); font-size:15px; font-weight:500; padding:8px 0; min-height:0; }
.btn-text .arr { display:inline-block; transition:transform .22s var(--e); }
.btn-text:hover .arr { transform:translateX(5px); }

.btn-fw { width:100%; }
@media(min-width:480px) { .btn-fw { width:auto; } }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes pulse-d {
  0%,100% { box-shadow:0 0 0 3px rgba(23,122,70,0.18); }
  50%      { box-shadow:0 0 0 6px rgba(23,122,70,0.07); }
}
@keyframes marquee-scroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ══════════════════════════════════════
   MICRO BITS
══════════════════════════════════════ */
.overline {
  font-family:var(--sans); font-size:13px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink3); display:block; margin-bottom:14px;
}


/* ══════════════════════════════════════
   HOME — HERO
══════════════════════════════════════ */
.hero {
  min-height:100vh;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  padding-top:calc(60px + 18px + 52px);
  padding-bottom:80px;
}
.hero > .wrap { width:100%; }
@media(max-width:640px) { .hero { padding-top:calc(60px + 18px + 24px); padding-bottom:24px; min-height:100vh; min-height:100svh; } }
.hero-scroll-hint {
  margin-top:40px;
  display:flex;
  justify-content:center;
  color:var(--ink4);
  animation:scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform:translateY(0); opacity:.45; }
  50% { transform:translateY(5px); opacity:1; }
}
.hero-trust {
  display:flex; align-items:center; gap:12px;
  margin-top:24px; min-width:0; flex-wrap:wrap;
}
.hero-flags { display:flex; align-items:center; }
.hf-flag {
  width:24px; height:24px; object-fit:cover; border-radius:50%;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 0 0 2px var(--bg), 0 1px 3px rgba(0,0,0,0.12);
  flex-shrink:0;
  margin-left:-7px;
}
.hf-flag:first-child { margin-left:0; }
.hero-trust-txt { font-size:13px; color:var(--ink3); }
.cl-marquee { margin-top:32px; }
.cl-label { font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--ink4); margin-bottom:14px; display:block; }
.logo-marquee {
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to right,transparent 0%,#000 12%,#000 88%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0%,#000 12%,#000 88%,transparent 100%);
}
.logo-track {
  display:flex; align-items:center; gap:48px;
  width:max-content;
  will-change:transform;
  backface-visibility:hidden;
  animation:logo-scroll 28s linear infinite;
}
.logo-track:hover { animation-play-state:paused; }
.trust-logo {
  height:44px; width:auto; max-width:140px;
  opacity:0.55; filter:grayscale(1);
  object-fit:contain; flex-shrink:0;
  mix-blend-mode:multiply;
  transition:opacity .2s, filter .2s;
}
.trust-logo:hover { opacity:1; filter:none; }
@keyframes logo-scroll {
  0%   { transform:translate3d(0,0,0); }
  100% { transform:translate3d(-50%,0,0); }
}
@media(prefers-reduced-motion:reduce) { .logo-track { animation:none; } }

.hero-h1 {
  font-size:clamp(42px, 6.5vw, 72px);
  font-weight:600; letter-spacing:-.04em; line-height:.96;
  margin-top:32px; margin-bottom:24px;
}

.hero-sub {
  font-size:clamp(15px,2vw,19px); font-weight:400; color:var(--ink3);
  line-height:1.55; max-width:600px; min-width:0;
  overflow-wrap:break-word; word-break:break-word;
  margin-bottom:40px;
}
.hero-sub strong { color:var(--ink); font-weight:600; }

.hero-ctas { display:flex; gap:10px; flex-direction:column; align-items:flex-start; min-width:0; }
@media(min-width:480px) { .hero-ctas { flex-direction:row; flex-wrap:wrap; align-items:center; } }
@media(max-width:767px) {
  .hero-trust { margin-top:clamp(20px, 4svh, 36px); }
  .hero-h1 { font-size:clamp(28px,9vw,40px); margin-top:clamp(16px, 3.5svh, 28px); margin-bottom:clamp(10px, 2.5svh, 20px); }
  .hero-sub { font-size:15px; margin-bottom:clamp(18px, 4svh, 32px); max-width:100%; }
  .hero-ctas { flex-direction:column; align-items:center; gap:10px; }
  .hero-ctas .btn { width:92%; max-width:100%; }
  .cl-marquee { margin-top:clamp(16px, 3.5svh, 28px); }
}


/* dark CTA + inset avatar */
.btn-dark { background:var(--brand); color:#fff; box-shadow:var(--sh-fab); }
.btn-dark:hover { background:var(--brand-h); transform:translateY(-2px); }
.btn-dark:active { transform:scale(.97); }
.btn-photo { padding-left:6px; gap:10px; }
.btn-av { width:30px; height:30px; border-radius:50%; object-fit:cover; flex-shrink:0; }

/* ══════════════════════════════════════
   PROJECT CARDS
══════════════════════════════════════ */
.section-head {
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom:28px; gap:16px; flex-wrap:wrap;
}
.section-h2 { font-size:clamp(26px,4vw,44px); letter-spacing:-.03em; }
.section-h2 em { font-style:normal; color:var(--ink4); }
.section-sub { font-size:16px; color:var(--ink3); margin-top:8px; max-width:440px; width:100%; }
.why-grid { display:grid; grid-template-columns:1fr; gap:16px; margin-top:32px; }
@media(min-width:640px) { .why-grid { grid-template-columns:repeat(2,1fr); } }
.why-card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--rxl);
  padding:28px; display:flex; flex-direction:column; gap:12px;
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.why-card:hover { transform:translateY(-3px); box-shadow:var(--sh-card); }
.why-num { font-size:clamp(28px,3.5vw,40px); font-weight:800; color:var(--ink4); letter-spacing:-.03em; line-height:1; }
.why-title { font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-.01em; }
.why-desc { font-size:14px; color:var(--ink3); line-height:1.7; }

.pkg-grid { display:grid; grid-template-columns:1fr; gap:16px; margin-top:32px; }
@media(min-width:640px) { .pkg-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:900px) { .pkg-grid { grid-template-columns:repeat(3,1fr); } }
.pkg-card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--rxl);
  padding:32px 28px; display:flex; flex-direction:column; gap:20px;
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.pkg-card:hover { transform:translateY(-4px); box-shadow:var(--sh-card); }
.pkg-card.featured { border:2px solid var(--brand); }
.pkg-price-wrap { display:none; }
.pkg-badge {
  display:inline-flex; align-items:center;
  font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--brand); background:var(--brand-s);
  padding:4px 12px; border-radius:var(--pill); width:fit-content;
}
.pkg-tier { font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--ink4); }
.pkg-name { font-size:24px; font-weight:700; letter-spacing:-.02em; color:var(--ink); }
.pkg-tag  { font-size:14px; color:var(--ink3); line-height:1.55; }
.pkg-feats { display:flex; flex-direction:column; gap:10px; flex:1; }
.pkg-feat { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink2); line-height:1.5; }
.pkg-feat::before { content:'✓'; color:var(--brand); font-weight:700; flex-shrink:0; margin-top:1px; }
.pkg-price { font-size:22px; font-weight:800; color:var(--ink); letter-spacing:-.02em; display:block; }
.pkg-price-sub { font-size:12px; color:var(--ink4); margin-top:2px; display:block; }
.pkg-avail { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--ink3); margin-bottom:20px; }
.pkg-cta { width:100%; justify-content:center; }
.pkg-note { font-size:13px; color:var(--ink4); margin-top:16px; text-align:center; }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:8px; margin-top:40px; }
.faq-item { background:var(--card); border:1px solid var(--line); border-radius:16px; padding:20px 24px; cursor:pointer; user-select:none; transition:border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item:hover { border-color:var(--line2); box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.faq-item.open { border-color:var(--ink2); }
.faq-q { font-size:16px; font-weight:700; color:var(--ink2); display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-chevron { transition:transform 0.25s cubic-bezier(0.4,0,0.2,1), color 0.2s ease; color:var(--ink4); flex-shrink:0; }
.faq-item.open .faq-chevron { transform:rotate(180deg); color:var(--ink2); }
.faq-a { font-size:15px; color:var(--ink3); line-height:1.65; margin:0; max-height:0; overflow:hidden; transition:max-height 0.35s cubic-bezier(0.4,0,0.2,1), margin-top 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-a { max-height:300px; margin-top:12px; }

/* Timezone badge (contact page) */
.tz-badge { display:inline-flex; align-items:center; gap:6px; font-size:13px; color:var(--ink3); background:var(--bg); border-radius:var(--pill); padding:6px 14px; margin-bottom:20px; }

.pj-stack { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
@media(min-width:640px) { .pj-stack { grid-template-columns:repeat(3,1fr); gap:16px; } }
.pj-v-banner { aspect-ratio:21/8; }

.pj-card {
  background:var(--card);
  border-radius:var(--rxl);
  border:1px solid var(--line);
  overflow:hidden; cursor:pointer;
  transition:transform .35s var(--e), box-shadow .35s var(--e);
  -webkit-tap-highlight-color:transparent;
}
.pj-card:hover { transform:translateY(-4px); box-shadow:var(--sh-card); }
.pj-card:active { transform:scale(.99); }
.pj-card:hover .pj-arr { transform:translate(3px,-3px); color:var(--ink); }
.pj-card--static { cursor:default; }
.pj-card--static:hover { transform:none; box-shadow:none; }
.pj-card--static:active { transform:none; }

.pj-visual { width:100%; overflow:hidden; display:flex; flex-direction:column; position:relative; }
.pj-visual img { transition:transform .55s var(--e); }
.pj-thumb-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.pj-play-badge {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:48px; height:48px; border-radius:50%;
  background:rgba(0,0,0,0.4); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  z-index:3; pointer-events:none;
}
.pj-card:hover .pj-visual img { transform:scale(1.05); }
.pj-v-wide  { aspect-ratio:16/7; }
.pj-v-sq    { aspect-ratio:4/3; }
.pj-v-thumb { aspect-ratio:9/16; }

.pj-chrome {
  height:24px; display:flex; align-items:center;
  padding:0 11px; gap:5px; flex-shrink:0;
}
.cr { width:7px; height:7px; border-radius:50%; }
.cr-r{background:#ff5f57} .cr-y{background:#febc2e} .cr-g{background:#28c840}

.pj-mu { flex:1; padding:10px 14px; overflow:hidden; display:flex; flex-direction:column; gap:7px; }
.mu-hd  { height:11px; border-radius:4px; background:rgba(0,0,0,0.09); width:42%; }
.mu-card{ border-radius:8px; background:rgba(255,255,255,0.76); }
.mu-sm  { height:26px; border-radius:6px; background:rgba(255,255,255,0.55); }
.mu-row { display:flex; gap:7px; }
.mu-row .mu-sm { flex:1; }
.mu-stat{ height:44px; border-radius:9px; background:rgba(255,255,255,0.86); display:flex; align-items:center; justify-content:center; }
.mu-sv  { font-family:var(--sans); font-size:16px; color:var(--ink2); opacity:.75; }
.mu-bars{ flex:1; display:flex; align-items:flex-end; gap:4px; padding-bottom:3px; }
.mu-bar { flex:1; border-radius:3px 3px 0 0; background:rgba(255,255,255,0.68); }
.mu-map { height:56px; border-radius:8px; background:rgba(255,255,255,0.65); position:relative; overflow:hidden; }
.mu-map::after { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 10px,rgba(0,0,0,0.025) 10px,rgba(0,0,0,0.025) 11px),repeating-linear-gradient(90deg,transparent,transparent 10px,rgba(0,0,0,0.025) 10px,rgba(0,0,0,0.025) 11px); }
.mu-icon{ text-align:center; font-size:28px; line-height:1; padding:4px 0; }
.mu-hg  { display:grid; grid-template-columns:1fr 1fr; gap:5px; }
.mu-hc  { height:40px; border-radius:7px; background:rgba(255,255,255,0.72); }

.p-green  { background:linear-gradient(150deg,#eaf4ee,#d2eadc); }
.p-blue   { background:linear-gradient(150deg,#eef1fd,#dce2fb); }
.p-amber  { background:linear-gradient(150deg,#fdf0e8,#fbe0c6); }
.p-violet { background:linear-gradient(150deg,#f2eafd,#e5d3fb); }

.pj-foot {
  padding:8px 14px 10px;
  display:flex; flex-direction:column; gap:4px;
}
.pj-foot-top { display:flex; align-items:center; justify-content:space-between; }
.pj-foot-bot { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.pj-name { font-family:var(--sans); font-size:16px; font-weight:600; letter-spacing:-.01em; }
.pj-cat  { font-size:11px; color:var(--ink4); white-space:nowrap; }
.pj-badge{
  font-family:var(--sans); font-size:11px; color:var(--brand);
  background:var(--brand-s); padding:3px 10px; border-radius:var(--pill);
  white-space:nowrap;
}
.pj-foot-bot .pj-cat { min-width:0; overflow:hidden; text-overflow:ellipsis; flex:1; }
.pj-foot-bot .pj-badge { flex-shrink:0; }
.pj-arr { font-size:18px; color:var(--ink4); transition:all .22s var(--e); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-card {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--r2xl); padding:36px 24px;
  box-shadow:0 2px 16px rgba(0,0,0,0.04);
}
@media(min-width:640px) { .about-card { padding:56px; } }

/* 2-col: text + photo card */
.about-grid {
  display:grid; grid-template-columns:1fr; gap:32px; align-items:center;
  grid-template-areas:"head" "photo" "text";
}
.about-head { grid-area:head; }
.about-text { grid-area:text; }
@media(min-width:840px) {
  .about-grid { grid-template-columns:1.2fr 1fr; gap:56px; grid-template-areas:"photo head" "photo text"; }
}

.about-h { font-size:clamp(34px,5vw,56px); font-weight:700; letter-spacing:-.03em; line-height:1.0; margin:8px 0 24px; }
.about-p { font-size:clamp(17px,1.8vw,20px); color:var(--ink3); line-height:1.6; max-width:520px; }
.about-p + .about-p { margin-top:16px; }
.about-p strong { color:var(--ink); font-weight:600; }


.about-photo {
  grid-area:photo;
  position:relative; border-radius:var(--rxl); overflow:hidden;
  box-shadow:var(--sh-card); background:var(--card); aspect-ratio:4/5;
  transition:transform .35s var(--e), box-shadow .35s var(--e); cursor:default;
}
.about-photo:hover { transform:translateY(-4px); box-shadow:0 20px 48px rgba(0,0,0,0.10); }
.about-photo > img { width:100%; height:100%; object-fit:cover; display:block; }
.about-chip {
  position:absolute; left:16px; right:16px; bottom:16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  background:rgba(245,245,243,0.92); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border-radius:var(--rl); padding:14px 16px;
  box-shadow:0 4px 16px rgba(0,0,0,0.10);
}
.ac-name { font-size:15px; font-weight:600; color:var(--ink); }
.ac-role { font-size:12px; color:var(--ink3); margin-top:2px; }

.about-svcs { margin:0 0 4px; }
.about-svc-title { font-family:var(--sans); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink4); margin-bottom:14px; }
.asvc-row { display:flex; align-items:flex-start; gap:14px; padding:14px 0; border-top:1px solid var(--line); }
.asvc-ico { width:36px; height:36px; border-radius:10px; background:var(--s2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
.asvc-name { font-size:15px; font-weight:500; color:var(--ink); }
.asvc-sub { font-size:12px; color:var(--ink4); margin-top:2px; line-height:1.5; }

.about-stack { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
.stk-chip { font-size:12px; font-weight:500; color:var(--ink2); background:var(--s2); border:1px solid var(--line2); padding:5px 12px; border-radius:var(--pill); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-head { margin-bottom:32px; }
.testi-head .section-h2 { margin-top:4px; }
.testi-grid { display:grid; grid-template-columns:1fr; gap:24px; align-items:stretch; }
@media(min-width:720px) { .testi-grid { grid-template-columns:repeat(3,1fr); } }
.testi-card {
  background:var(--card); border:1px solid var(--line); border-top:2px solid var(--brand);
  border-radius:var(--rxl); padding:32px;
  box-shadow:var(--sh-card);
  display:flex; flex-direction:column;
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 20px 48px rgba(0,0,0,0.10); }
.testi-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; }
.testi-stars { color:var(--ink); font-size:15px; letter-spacing:3px; }
.testi-mark { font-size:48px; line-height:.6; color:var(--ink4); font-weight:800; }
.testi-quote { font-size:17px; color:var(--ink2); line-height:1.6; flex:1; }
.testi-author { display:flex; align-items:center; gap:12px; margin-top:24px; padding-top:20px; border-top:1px solid var(--line); }
.ti-av { width:44px; height:44px; border-radius:50%; background:var(--s3); color:var(--ink); font-size:13px; font-weight:600; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ti-name { font-size:15px; font-weight:600; color:var(--ink); }
.ti-role { font-size:13px; color:var(--ink3); margin-top:2px; }

/* ══════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════ */
.cta-card {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--r2xl); padding:52px 32px;
  text-align:left; position:relative; overflow:hidden;
}
@media(min-width:640px) { .cta-card { padding:80px 64px; } }
.cta-h { color:var(--ink); font-size:clamp(26px,3.5vw,44px); margin-bottom:14px; position:relative; z-index:1; }
.cta-h .hl-mute { color:var(--ink4); }
.cta-p { color:var(--ink3); font-size:16px; margin-bottom:36px; position:relative; z-index:1; }
.cta-btns { display:flex; flex-direction:column; gap:10px; align-items:flex-start; position:relative; z-index:1; }
@media(max-width:399px) { .cta-btns { align-items:stretch; } .cta-btns .btn { width:100%; justify-content:center; } }
@media(min-width:400px) { .cta-btns { flex-direction:row; } }
.cta-btns .btn-green {
  padding-left:32px; padding-right:32px;
  background:var(--brand-dk);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.14),
    0 4px 20px rgba(14,92,51,0.28),
    0 1px 3px rgba(0,0,0,0.10);
}
.cta-btns .btn-green:hover {
  background:var(--brand-dkr);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(0,0,0,0.16),
    0 8px 32px rgba(14,92,51,0.32),
    0 2px 6px rgba(0,0,0,0.12);
}
.btn-green .btn-av { box-shadow:0 0 0 2px rgba(255,255,255,0.35); }
.btn-outline-light {
  background:transparent; color:#fff;
  border:1px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.5); transform:translateY(-1px); }
.btn-outline-light:active { transform:scale(.97); }

.btn-outline {
  background:transparent; color:var(--ink);
  border:1.5px solid rgba(0,0,0,0.22);
}
.btn-outline:hover { background:var(--s2); border-color:rgba(0,0,0,0.32); transform:translateY(-1px); }
.btn-outline:active { transform:scale(.97); }

/* ══════════════════════════════════════
   PAGE TOP
══════════════════════════════════════ */
.page-top { padding:calc(60px + 18px + 72px) 0 64px; }
.page-h { font-size:clamp(44px,8vw,88px); letter-spacing:-.04em; line-height:.94; }
.page-h em { font-style:normal; color:var(--ink4); }
.page-sub { font-size:17px; color:var(--ink3); max-width:460px; line-height:1.65; margin-top:16px; }

/* ══════════════════════════════════════
   PROJECT DETAIL
══════════════════════════════════════ */
.det-back {
  display:inline-flex; align-items:center; gap:7px;
  font-size:14px; color:var(--ink3);
  background:rgba(255,255,255,0.68); border:1px solid rgba(0,0,0,0.08);
  backdrop-filter:blur(12px) saturate(180%);
  -webkit-backdrop-filter:blur(12px) saturate(180%);
  padding:10px 16px 10px 12px; border-radius:var(--pill);
  margin-top:24px; margin-bottom:28px; cursor:pointer;
  box-shadow:0 1px 4px rgba(0,0,0,0.07);
  transition:all .2s; min-height:44px;
  -webkit-tap-highlight-color:transparent;
}
.det-body-inner { max-width:720px; }
@media(min-width:640px) { .det-body-inner { padding-left:32px; border-left:2px solid var(--line); } }
.det-back:hover { color:var(--ink); box-shadow:0 4px 14px rgba(0,0,0,0.07); }
.det-back:active { transform:scale(.97); }

.det-h { font-size:clamp(42px,7vw,84px); letter-spacing:-.038em; line-height:.93; margin-bottom:24px; }
.det-meta {
  display:flex; flex-wrap:wrap; gap:20px 40px;
  padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  margin-bottom:48px;
}
.dm-lbl { font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--ink3); margin-bottom:4px; }
.dm-val { font-size:14px; font-weight:400; }
.dm-val.g { color:var(--brand); }

.ds { margin-bottom:0; padding-bottom:72px; }
.ds + .ds { border-top:1px solid var(--line); padding-top:72px; }
.ds-lbl { font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--ink3); margin-bottom:14px; }
.ds-h { font-family:var(--sans); font-size:24px; font-weight:400; margin-bottom:10px; }
.ds-p { font-size:15.5px; color:var(--ink2); line-height:1.8; }
@media(max-width:640px) { .ds-p { color:var(--ink3); font-size:15px; } }

.det-next {
  border-top:1px solid var(--line); padding:80px 0 64px; text-align:center; cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  position:relative; overflow:hidden;
}
.det-next-lbl {
  font-size:12px; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink4); margin-bottom:28px;
}
.det-next-nm {
  font-size:clamp(28px,5vw,56px); font-weight:700;
  letter-spacing:-.035em; line-height:1;
  color:var(--ink); display:inline-flex; align-items:center; gap:24px;
  transition:color .22s var(--e);
}
.det-next:hover .det-next-nm { color:var(--brand); }
.det-next-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0.07;
  transition:opacity .35s var(--e);
}
.det-next:hover .det-next-bg { opacity:0.13; }
.det-next-lbl, .det-next-nm, .det-next-btn { position:relative; z-index:1; }
.det-next-btn {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; padding:8px 20px;
  border:1px solid rgba(0,0,0,0.12); border-radius:var(--pill);
  font-size:13px; font-weight:500; color:var(--ink3);
  transition:border-color .22s var(--e), color .22s var(--e);
}
.det-next:hover .det-next-btn { border-color:rgba(0,0,0,0.28); color:var(--ink); }

.det-cover { position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; border-radius:var(--rxl); margin:16px 0 32px; }
@media(min-width:800px) { .det-cover { max-width:680px; margin-left:auto; margin-right:auto; } }
.process-steps { display:flex; flex-direction:column; gap:16px; }
.ps {
  background:var(--card); border:1px solid var(--line); border-radius:var(--rxl);
  padding:28px; display:flex; flex-direction:column; gap:12px; flex:1;
  box-shadow:var(--sh-seg);
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.ps:hover { transform:translateY(-3px); box-shadow:var(--sh-card); }
.ps-num  { font-size:clamp(32px,4vw,44px); font-weight:800; color:var(--ink4); letter-spacing:-.03em; line-height:1; }
.ps-name { font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-.01em; }
.ps-free-badge {
  display:inline-block; font-size:10px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:var(--brand); background:var(--brand-s);
  padding:2px 8px; border-radius:var(--pill); vertical-align:2px; margin-left:6px;
}
.ps-desc { font-size:14px; color:var(--ink3); line-height:1.7; }
.ps-connector { display:none; }
@media(min-width:800px) {
  .process-steps { flex-wrap:wrap; justify-content:center; gap:16px; flex-direction:unset; align-items:unset; }
  .ps { flex:0 0 calc(33.333% - 11px); min-width:0; }
}
.det-cover-meta {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:8px;
}
.det-flag-img { width:32px; height:32px; object-fit:cover; border-radius:50%; box-shadow:0 2px 8px rgba(0,0,0,0.40); flex-shrink:0; position:absolute; top:16px; right:16px; z-index:2; border:2px solid rgba(255,255,255,0.5); }
.det-cover > img { width:100%; height:100%; object-fit:cover; display:block; }
.det-cover-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.88) 0%,rgba(0,0,0,0.15) 55%,transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px 24px 20px;
}
.det-cover-overlay .overline { color:rgba(255,255,255,0.72); }
.det-cover-overlay .det-h { color:#fff; margin:4px 0 0; font-size:clamp(26px,3.5vw,48px); }

/* Nav hidden in detail view */
.detail-view .nav-shell { opacity:0; pointer-events:none; transform:translateY(-20px); transition:opacity .28s var(--e), transform .28s var(--e); }

/* Scroll progress bar */
.scroll-bar {
  position:fixed; top:0; left:0; right:0; height:3px;
  background:var(--brand); z-index:9999;
  transform:scaleX(0); transform-origin:left;
  opacity:0; transition:opacity .3s var(--e);
  pointer-events:none;
}
.detail-view .scroll-bar { opacity:1; }

/* Sticky detail mini-header */
.sticky-det {
  position:fixed; top:0; left:0; right:0; z-index:850;
  height:58px; display:flex; align-items:center; justify-content:space-between;
  padding:0 24px;
  background:rgba(241,240,237,0.94);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid var(--line);
  transform:translateY(-100%);
  transition:transform .32s var(--e);
  pointer-events:none;
}
.sticky-det.show { transform:translateY(0); pointer-events:auto; }
.sticky-det-name {
  font-size:15px; font-weight:600; letter-spacing:-.01em; color:var(--ink);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:60%;
}
.btn-sm { min-height:38px; padding:8px 18px; font-size:13px; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:700;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 20px;
  padding-bottom:max(12px, env(safe-area-inset-bottom));
  background:rgba(241,240,237,0.94);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-top:1px solid var(--line);
  transform:translateY(100%);
  transition:transform .35s var(--e);
  pointer-events:none;
}
.mobile-cta-bar.show { transform:translateY(0); pointer-events:auto; }
body:has(.nav-menu.open) .mobile-cta-bar { transform:translateY(100%); }
@media(min-width:768px) { .mobile-cta-bar { display:none; } }

.det-meta-row { display:flex; gap:8px; flex-wrap:wrap; margin:20px 0 32px; }
.dm-chip {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--r); padding:12px 16px;
  flex:1; min-width:90px;
}
.dm-chip .dm-lbl { margin-bottom:6px; }
.dm-chip .dm-val { font-size:15px; font-weight:500; color:var(--ink); }
.dm-chip .dm-val.g { color:var(--brand); }

.team-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.team-chip { background:var(--brand-s); color:var(--brand); font-size:13px; font-weight:500; padding:6px 14px; border-radius:var(--pill); }

.problem-layout {
  display:grid; grid-template-columns:1fr; gap:32px; align-items:start;
}
@media(min-width:720px) {
  .problem-layout { grid-template-columns:1fr 1.2fr; gap:56px; }
}
.problem-statement {
  font-size:clamp(20px,2.2vw,26px); font-weight:700;
  letter-spacing:-.025em; line-height:1.2; color:var(--ink);
  margin-top:12px;
}
/* align right col text to start at same line as statement, not label */
@media(min-width:720px) { .problem-layout > div:last-child { padding-top:45px; } }
@media(min-width:720px) { .problem-layout.no-align > div:last-child { padding-top:0; } }
.kd-grid {
  display:grid; grid-template-columns:1fr; gap:16px; margin-top:24px;
}
@media(min-width:640px) { .kd-grid { grid-template-columns:1fr 1fr; } }
.kd-card {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--rl); padding:28px;
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.kd-card:hover { transform:translateY(-3px); box-shadow:var(--sh-card); }
.kd-num   { font-size:13px; color:var(--ink4); margin-bottom:16px; font-weight:500; }
.kd-title { font-size:19px; font-weight:700; letter-spacing:-.01em; color:var(--ink); margin-bottom:10px; line-height:1.2; }
.kd-desc  { font-size:14px; color:var(--ink3); line-height:1.75; }

.company-card {
  background:var(--s2); border:1px solid var(--line2); border-radius:var(--rl);
  padding:24px; display:flex; gap:16px; align-items:flex-start; margin-top:10px;
}
.company-initial {
  width:44px; height:44px; border-radius:var(--r); flex-shrink:0;
  background:var(--card); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:700; color:var(--ink);
}

.feat-list { margin:10px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; }
.feat-item { display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--ink2); line-height:1.6; }
.feat-item::before { content:'✓'; color:var(--brand); font-weight:700; flex-shrink:0; margin-top:2px; }

.tool-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tool-chip { background:var(--s2); border:1px solid var(--line2); color:var(--ink2); font-size:13px; font-weight:500; padding:6px 14px; border-radius:var(--pill); }

.det-results { background:var(--ink); border-radius:var(--rxl); padding:32px; margin:48px 0 0; }
.det-results .ds-lbl { color:rgba(255,255,255,0.45); }
.det-results-p { font-size:18px; font-weight:600; color:#fff; line-height:1.6; margin:0; letter-spacing:-.01em; }
.det-cta { margin:0; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.det-cta .btn { min-width:200px; justify-content:center; }
.det-cta-wrap { margin-top:80px; padding:48px 40px; background:var(--card); border:1px solid var(--line); border-radius:var(--rxl); text-align:center; }
.det-cta-eyebrow { font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--brand); margin-bottom:10px; }
.det-cta-h { font-size:clamp(24px,3vw,36px); font-weight:800; color:var(--ink); letter-spacing:-.02em; margin-bottom:10px; }
.det-cta-sub { font-size:15px; color:var(--ink3); margin-bottom:28px; }
.det-summary { font-size:18px; color:var(--ink2); line-height:1.65; margin-bottom:48px; max-width:620px; }
.det-nudge { display:flex; align-items:center; gap:10px; margin-top:24px; font-size:14px; color:var(--ink3); }
.det-nudge-link { color:var(--brand); font-weight:600; text-decoration:none; }
.det-nudge-link:hover { text-decoration:underline; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.cont-grid { display:grid; grid-template-columns:1fr; gap:16px; padding-bottom:80px; }
@media(min-width:800px) { .cont-grid { grid-template-columns:1fr 1.1fr; } }
@media(max-width:799px) { .cf-card { order:-1; } }

.ci-card {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--rxl); padding:32px 24px;
  box-shadow:var(--sh-card);
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.ci-card:hover { transform:translateY(-4px); box-shadow:0 20px 48px rgba(0,0,0,0.10); }
@media(min-width:640px) { .ci-card { padding:40px; } }
@media(min-width:800px) { .ci-card { position:sticky; top:calc(60px + 18px + 20px); height:fit-content; } }

.ci-h { font-family:var(--sans); font-size:clamp(24px,3vw,32px); font-weight:700; letter-spacing:-.02em; margin-bottom:8px; }
.ci-p { font-size:15px; color:var(--ink3); line-height:1.7; margin-top:12px; margin-bottom:24px; }
.form-note { font-size:12px; color:var(--ink4); margin-top:16px; text-align:center; }

.ch-lnk {
  display:flex; align-items:center; gap:12px;
  padding:13px 0; border-top:1px solid var(--line);
  cursor:pointer; text-decoration:none; color:inherit;
  min-height:52px;
  transition:padding-left .18s;
  -webkit-tap-highlight-color:transparent;
}
.ch-lnk:last-of-type { border-bottom:1px solid var(--line); }
.ch-lnk:hover { padding-left:4px; }
.ch-lnk:hover .ch-nm { color:var(--brand); }
.ch-lnk:hover .ch-arr { transform:translate(3px,-3px); color:var(--brand); }
.ch-ico { width:36px; height:36px; border-radius:10px; background:var(--s2); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; border:1px solid var(--line); color:var(--ink3); }
.ch-nm  { font-size:14px; font-weight:400; transition:color .18s; }
.ch-vl  { font-size:11px; color:var(--ink4); }
.ch-arr { font-size:15px; color:var(--ink4); margin-left:auto; transition:all .18s; }

.avail-pill {
  margin-top:20px; padding:14px 16px;
  background:var(--brand-s); border-radius:var(--r); border:1px solid rgba(23,122,70,0.12);
}
.ap-r { display:flex; align-items:center; gap:7px; margin-bottom:3px; }
.ap-dot { width:7px; height:7px; border-radius:50%; background:var(--brand); animation:pulse-d 2.2s ease infinite; }
.ap-lbl { font-size:14px; font-weight:500; color:var(--brand); }
.ap-note { font-size:12px; color:var(--brand-h); }

.cf-card {
  background:linear-gradient(135deg,var(--brand-s) 0%,var(--card) 60%); border:1px solid var(--line);
  border-radius:var(--rxl); padding:32px 24px;
  box-shadow:var(--sh-card);
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.cf-card:hover { transform:translateY(-4px); box-shadow:0 20px 48px rgba(0,0,0,0.10); }
@media(min-width:640px) { .cf-card { padding:40px; text-align:center; } }
.form-h { font-family:var(--sans); font-size:clamp(24px,3vw,32px); font-weight:700; letter-spacing:-.02em; margin-bottom:8px; }
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { border-top:1px solid var(--line); padding:40px 0; background:transparent; }
.ft { display:flex; flex-direction:column; align-items:center; gap:18px; text-align:center; }
@media(min-width:640px) { .ft { flex-direction:row; justify-content:space-between; text-align:left; } }
.ft-brand { display:flex; flex-direction:column; gap:6px; align-items:center; }
@media(min-width:640px) { .ft-brand { align-items:flex-start; } }
.ft-logo { font-family:var(--sans); font-size:18px; font-weight:700; font-style:normal; color:var(--ink); }
.ft-logo span { color:var(--brand); }
.ft-status { font-size:12px; color:var(--ink3); }
.ft-copy { font-size:12px; color:var(--ink4); }
.ft-links { display:flex; flex-wrap:wrap; gap:18px; justify-content:center; }
.ft-links a { font-size:13px; color:var(--ink3); cursor:pointer; transition:color .18s; min-height:44px; display:flex; align-items:center; text-decoration:none; }
.ft-links a:hover,
.ft-links a.active { color:var(--ink); }

/* ══════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════ */
.sec { padding:96px 0; border-top:1px solid var(--line); }
@media(min-width:640px) { .sec { padding:128px 0; } }
.sec-0t { padding-top:64px; }
@media(min-width:640px) { .sec-0t { padding-top:80px; } }
.sec:first-of-type { border-top:none; padding-top:0; }

/* ══════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════ */
.vid-modal {
  display:flex; align-items:center; justify-content:center;
  position:fixed; inset:0;
  background:rgba(0,0,0,0.88);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  z-index:1000;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .3s var(--e), visibility .3s;
}
.vid-modal.open { opacity:1; visibility:visible; pointer-events:auto; }
.vid-modal-box {
  position:relative;
  width:fit-content;
  max-width:94vw;
  max-height:92vh;
  display:flex;
  flex-direction:column;
  transform:scale(0.96);
  transition:transform .3s var(--e);
}
.vid-modal.open .vid-modal-box { transform:scale(1); }
.vid-close {
  position:absolute;
  top:-44px; right:0;
  width:32px; height:32px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff; font-size:16px; line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
  backdrop-filter:blur(4px);
  z-index:2;
}
.vid-close:hover { background:rgba(255,255,255,0.22); }
.vid-list { display:flex; gap:8px; margin-bottom:12px; min-height:0; width:100%; }
.vid-list:empty { display:none; }
.vid-tab {
  padding:5px 14px;
  border-radius:var(--pill);
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.55);
  cursor:pointer; font-size:13px; font-weight:500;
  transition:background .18s, color .18s, border-color .18s;
}
.vid-tab.active { background:var(--brand); color:#fff; border-color:var(--brand); }
.vid-tab:hover:not(.active) { background:rgba(255,255,255,0.12); color:#fff; }
.vid-frame-wrap {
  position:relative;
  aspect-ratio:9/16; height:min(68vh, 720px); width:auto;
  margin:0 auto;
  border-radius:16px; overflow:hidden; background:#000;
}
.vid-frame-wrap iframe {
  position:absolute; top:0; left:0;
  width:520px; height:924.4px;
  border:none;
  transform-origin:top left;
  transform:scale(var(--vid-scale, 1));
}
.vid-frame-wrap.tiktok iframe {
  position:static;
  width:100%; height:100%;
  transform:none;
}
.tt-confirm-box {
  position:relative;
  width:min(90vw, 380px);
  background:var(--ink);
  border-radius:var(--rxl);
  padding:32px 24px 24px;
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
}
.tt-confirm-copy {
  color:#fff; font-size:15px; line-height:1.5;
  margin:0 0 20px;
}
.tt-confirm-ctas {
  display:flex; gap:10px; width:100%;
}
.tt-confirm-ctas .btn { flex:1; text-align:center; }
.vid-fallback {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:12px; align-self:center;
  font-size:13px; font-weight:500;
  color:rgba(255,255,255,0.6);
  transition:color .18s;
}
.vid-fallback:hover { color:#fff; }

@media(max-width:640px) {
  .vid-modal-box { padding-top:44px; }
  .vid-close { top:0; right:0; width:40px; height:40px; }
  .vid-list { overflow-x:auto; flex-wrap:nowrap; -webkit-overflow-scrolling:touch; }
  .vid-tab { white-space:nowrap; flex-shrink:0; }
}

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.svc-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:16px; margin-top:32px;
}
@media(min-width:640px) { .svc-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:900px) { .svc-grid { grid-template-columns:repeat(3,1fr); } }
.svc-item {
  background:var(--card); border:1px solid var(--line); border-radius:var(--rxl);
  padding:28px; display:flex; flex-direction:column; gap:12px; flex:1;
  box-shadow:var(--sh-seg);
  transition:transform .35s var(--e), box-shadow .35s var(--e);
}
.svc-item:hover { transform:translateY(-3px); box-shadow:var(--sh-card); }
.svc-item:active { transform:scale(.97); }

/* PROJECT CARD STAT BADGE */
.pj-badge {
  font-size:11px; font-weight:600; letter-spacing:.04em;
  background:var(--brand-s); color:var(--brand);
  padding:3px 10px; border-radius:var(--pill);
  white-space:nowrap;
}

