/* ===================================================
   FS STUDIO — style.css
   Static premium web studio, light theme, blue accent
   =================================================== */

:root {
  /* color — LIGHT theme (default) */
  --bg:        #f2f2ed;
  --white:     #ffffff;
  --black:     #111111;
  --gray:      #777777;
  --light:     #e2e2dc;
  --accent:    #4d9fff;
  --accent2:   #2b86f5;
  --dark:      #111111;
  --ink:       #0b0e14;                 /* solid dark for logo chips */

  /* liquid-glass helpers (mainly used by dark theme) */
  --glass:      linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03) 60%);
  --glass-brd:  rgba(255,255,255,.14);
  --glass-blur: blur(18px) saturate(1.5);

  /* spacing */
  --space-section: clamp(72px, 9vw, 128px);
  --container: 1200px;

  /* radius */
  --r-pill: 100px;
  --r-card: 18px;
  --r-lg:   28px;

  /* shadow */
  --sh-sm: 0 2px 10px rgba(17,17,17,.05);
  --sh-md: 0 14px 40px rgba(17,17,17,.08);
  --sh-lg: 0 24px 60px rgba(17,17,17,.14);
  --sh-accent: 0 10px 26px rgba(77,159,255,.35);

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* color — DARK theme (toggled): flip the semantic tokens and the whole
   site follows. Component-specific glass tweaks live in the block at the
   very end of this file, all scoped under [data-theme="dark"]. */
:root[data-theme="dark"] {
  --bg:        #0a0c11;
  --white:     rgba(255,255,255,.055);  /* former white blocks -> glass fill */
  --black:     #eef2f8;                 /* primary text -> light */
  --gray:      rgba(228,234,244,.60);   /* secondary text */
  --light:     rgba(255,255,255,.12);   /* hairlines / borders */
  --dark:      #0a0c11;

  --sh-sm: 0 2px 10px rgba(0,0,0,.35);
  --sh-md: 0 18px 44px rgba(0,0,0,.45);
  --sh-lg: 0 26px 64px rgba(0,0,0,.6);
}

html { transition: none; }
:root[data-theme] body,
:root[data-theme] body::before { transition: background-color .4s ease, color .3s ease; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--bg);
}
body::before {
  content: "";
  position: fixed;
  top: -60px; bottom: -60px; left: 0; right: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(242,242,237,.50), rgba(232,233,229,.66)),
    url('photo/panorama-light.jpg'),
    radial-gradient(ellipse 60% 45% at 0% -8%, rgba(77,159,255,.16), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 2%, rgba(43,134,245,.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 96%, rgba(77,159,255,.08), transparent 58%),
    radial-gradient(ellipse 90% 50% at 25% 108%, rgba(43,134,245,.07), transparent 60%),
    radial-gradient(rgba(77,159,255,.06) 1px, transparent 1.4px);
  background-position:
    center top,
    center center,
    0 0, 0 0, 0 0, 0 0, 0 0;
  background-size:
    100% 100%,
    cover,
    100% 100%, 100% 100%, 100% 100%, 100% 100%, 30px 30px;
  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

/* dark theme swaps the panorama + veil */
:root[data-theme="dark"] body::before {
  background-image:
    linear-gradient(180deg, rgba(8,10,15,.5), rgba(9,11,17,.62)),
    url('photo/panorama-dark.jpg'),
    radial-gradient(ellipse 60% 45% at 0% -8%, rgba(77,159,255,.24), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 2%, rgba(43,134,245,.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 96%, rgba(77,159,255,.14), transparent 58%),
    radial-gradient(ellipse 90% 50% at 25% 108%, rgba(43,134,245,.12), transparent 60%),
    radial-gradient(rgba(120,170,255,.05) 1px, transparent 1.4px);
}

/* On phones the parallax is disabled (see script.js) and the panorama fills
   the viewport statically with cover — rock-solid, no tiling, no drift. */
@media (max-width: 700px) {
  body::before {
    background-size:
      100% 100%,
      cover,
      100% 100%, 100% 100%, 100% 100%, 100% 100%, 34px 34px;
    background-position:
      center top,
      center center,
      0 0, 0 0, 0 0, 0 0, 0 0;
    background-repeat:
      no-repeat,
      no-repeat,
      no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.section { padding: var(--space-section) 0; }

/* ---------- shared bits ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-top: 18px;
}
.section-sub {
  color: var(--gray);
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  margin-top: 16px;
  max-width: 560px;
}
.section-sub.note { font-size: .9rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.pill-label {
  background: var(--white);
  border: 1px solid var(--light);
  color: var(--gray);
  padding: 7px 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .72rem;
}
.pill-label.dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.8);
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.dot-pulse { animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-accent:hover { transform: translateY(-2px); background: var(--accent2); box-shadow: 0 14px 32px rgba(77,159,255,.45); }
.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline:hover { transform: translateY(-2px); background: var(--black); color: #fff; }
.btn-outline-dark {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =====================================================
   NAV — liquid glass floating pill
   ===================================================== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: calc(100% - 24px);
  width: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 9px 9px 9px 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.3) 50%, rgba(255,255,255,.42));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 20px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.75);
}
.nav-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 500;
  color: var(--black);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(17,17,17,.06); }
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-cta { padding: 10px 20px; font-size: .88rem; }

/* language switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--black);
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-pill);
  padding: 9px 13px;
  cursor: pointer;
  transition: background .2s ease;
}
.lang-btn:hover { background: rgba(255,255,255,.7); }
.lang-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--black);
  transition: transform .25s ease;
}
.lang.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.5) 50%, rgba(255,255,255,.6));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 12px 34px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  text-align: left;
  color: var(--black);
  background: none;
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: background .15s ease;
}
.lang-menu button { display: flex; align-items: center; gap: 10px; }
.lang-menu button:hover { background: rgba(17,17,17,.07); }
.lang-menu button.active { background: var(--accent); color: #fff; }
.lang-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.lang-flag svg { width: 100%; height: 100%; display: block; }
.lang-btn .lang-flag { width: 18px; height: 13px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 24px 72px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(242,242,237,.72) 0%, rgba(242,242,237,.34) 42%, rgba(242,242,237,0) 68%);
}
:root[data-theme="dark"] .hero {
  background:
    linear-gradient(105deg, rgba(8,10,15,.55) 0%, rgba(8,10,15,.2) 42%, rgba(8,10,15,0) 68%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-text h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .98;
  margin: 22px 0 0;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  color: var(--gray);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: .88rem;
  color: var(--gray);
}
.hero-proof .live { display: inline-flex; align-items: center; gap: 8px; color: var(--black); font-weight: 600; }
.hero-proof .sep { color: var(--light); }

/* ---- hero mockup fan ---- */
.hero-stage {
  position: relative;
  height: 480px;
}
.mock {
  position: absolute;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  box-shadow: var(--sh-md);
  padding: 0 0 14px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.mock:hover { transform: scale(1.06) !important; box-shadow: var(--sh-lg); z-index: 20; }
.mock-bar {
  display: flex;
  gap: 5px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--light);
}
.mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--light); }
.mock-bar span:first-child { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-body { padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.m-line { height: 9px; border-radius: 5px; background: var(--black); }
.m-line.muted { background: var(--light); }
.w30 { width: 30%; } .w40 { width: 40%; } .w50 { width: 50%; }
.w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; }
.m-btn { width: 70px; height: 22px; border-radius: 100px; background: var(--black); margin-top: 2px; }
.m-btn.accent { background: var(--accent); }
.m-btn.sm { width: 100%; height: 26px; }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.m-grid span { height: 38px; border-radius: 8px; background: var(--bg); border: 1px solid var(--light); }
.m-row { display: flex; align-items: center; gap: 10px; }
.m-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.m-stack { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.m-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 2px; }
.m-cards span { height: 46px; border-radius: 8px; background: var(--bg); border: 1px solid var(--light); }
.m-field { height: 26px; border-radius: 8px; background: var(--bg); border: 1px solid var(--light); }
.m-block { height: 60px; border-radius: 8px; background: var(--bg); border: 1px solid var(--light); }
.m-line.tiny { height: 6px; }

/* mock: landing nav + button row */
.m-nav { display: flex; gap: 6px; align-items: center; margin-bottom: 4px; }
.m-nav span { height: 7px; border-radius: 100px; background: var(--light); }
.m-nav span:first-child { width: 26px; background: var(--black); }
.m-nav span:not(:first-child) { width: 16px; }
.m-btn-row { display: flex; gap: 8px; align-items: center; margin-top: 2px; }
.m-btn.ghost { background: none; border: 1px solid var(--light); }

/* mock: business-card contact chips */
.m-chips { display: flex; gap: 6px; margin-top: 4px; }
.m-chips span { height: 20px; width: 52px; border-radius: 100px; background: var(--bg); border: 1px solid var(--light); }
.m-chips span:first-child { background: var(--accent); border-color: var(--accent); }

/* mock: menu panel */
.m-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--light); }
.m-burger { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.m-burger span { width: 16px; height: 2px; border-radius: 2px; background: var(--black); }
.m-menu { display: flex; flex-direction: column; margin-top: 4px; }
.m-menu-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--light); }
.m-menu-row:last-child { border-bottom: none; }
.m-menu-row .m-line { flex: 1; }
.m-tag { width: 26px; height: 12px; border-radius: 100px; background: rgba(77,159,255,.2); flex-shrink: 0; }
.mock-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-accent);
  z-index: 2;
}
.chat-bubble {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 78%;
  padding: 8px 10px;
  border-radius: 12px;
}
.chat-bubble.in {
  align-self: flex-start;
  background: var(--bg);
  border: 1px solid var(--light);
  border-bottom-left-radius: 4px;
}
.chat-bubble.out {
  align-self: flex-end;
  background: var(--accent);
  border-bottom-right-radius: 4px;
}
.chat-bubble.in .m-line { background: var(--light); }
.chat-bubble.out .m-line { background: rgba(255,255,255,.85); }
.mock-chip {
  position: absolute;
  bottom: 10px; left: 14px;
  background: var(--black);
  color: #fff;
  font-size: .66rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.mock-notch {
  height: 22px;
  display: flex; justify-content: center; align-items: center;
  border-bottom: 1px solid var(--light);
}
.mock-notch::after { content: ""; width: 50px; height: 6px; border-radius: 100px; background: var(--light); }
.mock-body.mob { padding-bottom: 30px; }

/* fan positioning */
.mock-1 { top: 0;   left: 6%;  transform: rotate(-6deg); z-index: 4; }
.mock-2 { top: 30px; right: 4%; transform: rotate(5deg);  z-index: 7; }
.mock-3 { top: 200px; left: 0;  transform: rotate(3deg);  z-index: 5; }
.mock-4 { top: 240px; right: 8%; transform: rotate(-4deg); z-index: 4; }
.mock-5 { width: 150px; top: 130px; left: 40%; transform: rotate(2deg); z-index: 6; }

/* =====================================================
   VALUE
   ===================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.num {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: .92rem; }

/* ---------- why-static ---------- */
.value-layout { max-width: 1040px; margin: 0 auto; }
.value-intro { text-align: center; }
.value-intro h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 18px auto 0;
  max-width: 760px;
}
.value-list {
  list-style: none;
  margin: clamp(32px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-row {
  display: block;
  text-align: center;
  padding: 26px 20px;
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-row:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.value-icon {
  margin: 0 auto 14px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(77,159,255,.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.value-icon svg { width: 19px; height: 19px; }
.value-row h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.value-row p { color: var(--gray); font-size: .92rem; line-height: 1.55; }

/* =====================================================
   DARK PANELS (services + pricing)
   ===================================================== */
.services-wrap, .pricing-wrap { padding-left: 0; padding-right: 0; }
.dark-panel {
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-lg);
  margin: 0 20px;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
}
.dark-panel .section-head h2 { color: #fff; }
.dark-panel .section-sub { color: rgba(255,255,255,.6); }

/* pricing panel: blue abstract backdrop under a dark overlay */
.pricing.dark-panel {
  background:
    linear-gradient(135deg, rgba(10,12,18,.93) 0%, rgba(13,28,58,.82) 45%, rgba(10,12,18,.92) 100%),
    url('photo/bg2.webp') center / cover no-repeat,
    var(--dark);
}

/* bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.bento-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.bento-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.b-tall { grid-row: span 2; }
.b-wide { grid-column: span 2; }
.bento-tag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(77,159,255,.12);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: auto;
}
.bento-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; margin: 18px 0 8px; }
.bento-card p { color: rgba(255,255,255,.6); font-size: .92rem; }

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 44px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.05em; color: var(--accent); }
.stat-label { color: rgba(255,255,255,.55); font-size: .85rem; }

/* =====================================================
   PROCESS
   ===================================================== */
.steps {
  border-top: 1px solid var(--light);
}
.step {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--light);
  transition: gap .3s ease;
}
.step:hover { gap: clamp(28px, 5vw, 60px); }
.step-num {
  flex-shrink: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  transition: color .3s ease;
}
.step:hover .step-num { color: var(--accent); }
.step h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
/* step copy follows the theme text colour: black on light, white on dark */
.step p { color: var(--black); font-size: .95rem; max-width: 640px; }

/* =====================================================
   WORK
   ===================================================== */
.work-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.work-grid::-webkit-scrollbar { display: none; }
.work-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.work-shot {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
  border-bottom: 1px solid var(--light);
  cursor: pointer;
}
.work-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.work-card:hover .work-shot img { transform: scale(1.05); }
.work-meta { padding: 22px 24px 26px; }
.chip {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(77,159,255,.1);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.work-meta h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.work-meta p { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }
.text-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--black);
  transition: color .2s ease, gap .2s ease;
}
.text-link:hover { color: var(--accent); }

/* work carousel — arrow row appears below the cards on small screens only */
.work-carousel { position: relative; }
.work-nav-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.work-nav {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
}
.work-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.work-nav:active { transform: scale(.92); }

/* =====================================================
   WHO IT'S FOR — liquid glass auto-scrolling carousel
   ===================================================== */
.who-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.who-track {
  display: flex;
  width: max-content;
  padding: 4px 0;
  animation: who-scroll 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Pause only on devices that truly hover — on touchscreens :hover sticks after
   a tap and would freeze the marquee permanently. */
@media (hover: hover) {
  .who-carousel:hover .who-track { animation-play-state: paused; }
}
.who-track:focus-within { animation-play-state: paused; }

@keyframes who-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.who-card {
  position: relative;
  flex: 0 0 300px;
  height: 380px;
  margin-right: 20px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.who-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.who-card:hover img { transform: scale(1.07); }
.who-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.02) 0%, rgba(17,17,17,.18) 48%, rgba(17,17,17,.86) 100%);
  pointer-events: none;
}
.who-glass {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  height: 160px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--r-lg) - 8px);
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04) 65%);
  backdrop-filter: blur(20px) saturate(1.7);
  -webkit-backdrop-filter: blur(20px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 24px rgba(0,0,0,.18);
  font-family: var(--font);
}
.who-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.who-glass p {
  font-family: var(--font);
  font-size: .92rem;
  line-height: 1.55;
  letter-spacing: normal;
  color: rgba(255,255,255,.94);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.who-cta-bar {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(77,159,255,.1), rgba(77,159,255,.03));
  border: 1px solid rgba(77,159,255,.18);
}
.who-cta-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--sh-accent);
}
.who-cta-bar p {
  color: var(--gray);
  font-size: .95rem;
  flex: 1 1 320px;
}
.who-cta-btn { margin-left: auto; }

@media (prefers-reduced-motion: reduce) {
  .who-carousel {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .who-track { animation: none; }
  .who-card { scroll-snap-align: start; }
}

/* =====================================================
   BENEFITS + PRACTICAL USE
   ===================================================== */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.benefit-row {
  padding: 0 26px 0 0;
  position: relative;
}
.benefit-row:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px; right: 13px;
  width: calc(100% - 60px);
  height: 1px;
  background: linear-gradient(90deg, var(--light), transparent);
}
.benefit-index {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  -webkit-text-stroke: 0;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 22px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.benefit-body h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.benefit-body p { color: var(--gray); font-size: .92rem; padding-right: 12px; }
.use-head {
  margin-top: clamp(48px, 6vw, 72px);
  margin-bottom: 28px;
  max-width: 640px;
}
.use-head h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.use-head .section-sub.note { margin-top: 8px; }
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.use-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.use-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.use-shot {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #eef4fb);
  border-bottom: 1px solid var(--light);
}
.use-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.use-card:hover .use-shot img { transform: scale(1.05); }
.use-icon {
  position: absolute;
  top: 14px; left: 14px;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--sh-accent);
  z-index: 2;
}
.use-body { padding: 24px; }
.use-card h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.use-card p { color: var(--gray); font-size: .9rem; }

/* =====================================================
   PRICING — split layout
   ===================================================== */
.pricing-section { padding-left: 0; padding-right: 0; }
.pricing-panel {
  background:
    linear-gradient(135deg, rgba(10,12,18,.92) 0%, rgba(13,28,58,.80) 45%, rgba(10,12,18,.91) 100%),
    url('photo/bg2.webp') center / cover no-repeat,
    var(--dark);
  color: #fff;
  border-radius: var(--r-lg);
  margin: 0 20px;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pricing-left .pill-label.dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.8);
}
.pricing-left h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-top: 18px;
  color: #fff;
}
.pricing-desc {
  color: rgba(255,255,255,.55);
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  margin-top: 14px;
  max-width: 400px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
}
.pricing-from {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}
.pricing-amount {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--accent);
}
.pricing-for {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  margin: 12px 0 28px;
  max-width: 380px;
}

/* feature items */
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pf {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: background .2s ease, transform .2s ease;
}
.pf:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.pf-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 24px;
}
.pf span:last-child {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

/* =====================================================
   REVIEWS — auto-scroll ticker
   ===================================================== */
.reviews { overflow: hidden; }
.reviews .section-head { margin-bottom: 40px; }
.rev-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: rev-slide 42s linear infinite;
}
.rev-track:hover { animation-play-state: paused; }
@keyframes rev-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rev-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  padding: 26px;
}
.stars { color: var(--accent); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px; }
.rev-card p { font-size: 1rem; line-height: 1.5; margin-bottom: 18px; }
.rev-card footer { display: flex; flex-direction: column; }
.rev-card footer strong { font-weight: 700; font-size: .92rem; }
.rev-card footer span { color: var(--gray); font-size: .82rem; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  max-width: 800px;
  border-top: 1px solid var(--light);
}
.faq-item { border-bottom: 1px solid var(--light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--black);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-icon {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-a p { color: var(--gray); font-size: .98rem; padding-bottom: 24px; max-width: 680px; }

/* =====================================================
   CONTACT
   ===================================================== */
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-info-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin: 0 auto;
  gap: 16px;
}
.info-link {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.info-link:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--accent); }
.info-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(77,159,255,.12);
  color: var(--accent);
}
.info-icon.wa { background: rgba(37,211,102,.14); color: #25d366; }
.info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info-text .info-label { margin-bottom: 1px; }
.info-value {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
  word-break: break-word;
}
.info-link:hover .info-value { color: var(--accent); }
.info-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}
.info-sub::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.contact-cta-row .btn { min-width: 210px; }
.contact-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
  font-weight: 600;
}
.info-card a, .info-card span:not(.info-label) { font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em; }
.info-card a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.social {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--light);
  color: var(--black);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social:hover { background: var(--black); color: var(--accent); transform: translateY(-3px); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: var(--sh-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  padding: 13px 16px;
  border: 1px solid var(--light);
  border-radius: 12px;
  background: var(--bg);
  color: var(--black);
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77,159,255,.15);
}
.form-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(77,159,255,.1);
  border: 1px solid rgba(77,159,255,.3);
  color: var(--accent2);
  font-size: .88rem;
  line-height: 1.5;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--light);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; max-width: 360px; }
.footer-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.footer-brand p { color: var(--gray); font-size: .88rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .9rem; font-weight: 500; color: var(--gray); }
.footer-links a:hover { color: var(--black); }
.footer-copy { color: var(--gray); font-size: .85rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { max-width: 640px; }
  .hero-stage {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .mock { position: relative; top: auto; right: auto; bottom: auto; left: auto; transform: none !important; width: 200px; }
  .mock-5 { width: 200px; }
  .mock:hover { transform: scale(1.04) !important; }

  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .value-list { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-tall { grid-row: span 1; }
  .b-wide { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .benefits-list { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .benefit-row:not(:last-child)::after { display: none; }
  .work-card { flex: 0 0 calc((100% - 22px) / 2); }
  .pricing-panel { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr 1fr; }
  .who-card { flex-basis: 260px; height: 340px; }
  .who-glass { height: 158px; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav { gap: 10px; padding-right: 9px; }
  .nav-right { gap: 6px; }
}

/* on phones the floating pill gets crowded — drop the nav CTA (the hero
   and sections still have prominent CTAs) and keep language + theme toggle */
@media (max-width: 520px) {
  .nav-cta { display: none; }
  .nav { gap: 8px; padding-left: 12px; }
  .theme-toggle { width: 34px; height: 34px; }
  .lang-btn { padding: 8px 10px; }
}

@media (max-width: 640px) {
  .hero { padding: 130px 18px 60px; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stage { gap: 12px; }
  .mock { width: calc(50% - 6px); }
  .mock-5 { display: none; }

  .value-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-row { padding: 22px 16px; }
  .step { flex-direction: column; align-items: flex-start; gap: 10px; }
  .step:hover { gap: 10px; }

  /* practical-use: clean icon-led rows (photos dropped) to cut scrolling */
  .use-grid { grid-template-columns: 1fr; gap: 10px; }
  .use-card { display: flex; align-items: stretch; }
  .use-shot {
    flex: 0 0 66px;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--light);
    background: rgba(77,159,255,.10);
    display: grid;
    place-items: center;
  }
  .use-shot img { display: none; }
  .use-icon {
    position: static;
    width: 42px; height: 42px;
    box-shadow: none;
  }
  .use-icon svg { width: 20px; height: 20px; }
  .use-body { padding: 13px 16px; display: flex; flex-direction: column; justify-content: center; }
  .use-card h4 { font-size: .97rem; margin-bottom: 3px; }
  .use-card p { font-size: .85rem; line-height: 1.45; }

  .bento { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-card { min-height: 150px; padding: 18px; }
  .b-wide { grid-column: span 2; }
  .bento-card h3 { font-size: 1.1rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .dark-panel { margin: 0 12px; padding: 40px 22px; border-radius: 22px; }

  .benefits-list { grid-template-columns: 1fr; gap: 28px; }

  /* selected work: swipeable carousel with arrow buttons */
  .work-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 8px;
    gap: 14px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-card { flex: 0 0 82%; scroll-snap-align: center; }
  .work-nav-row { display: flex; }
  .pricing-panel { margin: 0 12px; padding: 40px 22px; border-radius: 22px; }
  .pricing-features { grid-template-columns: 1fr; }
  .who-card { flex-basis: 240px; height: 320px; margin-right: 14px; }
  /* Mobile GPUs choke on 16 blurred glass cards, which stalls the marquee so it
     barely advances. Drop the backdrop blur for a cheap solid panel — the auto-
     scroll then runs smoothly, at ~desktop speed. */
  .who-glass {
    height: 150px; padding: 15px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgba(17,17,17,.5) 0%, rgba(17,17,17,.82) 100%);
  }
  .who-glass p { font-size: .86rem; line-height: 1.5; }
  /* Match the desktop scroll pace (mobile cards are narrower, so a shorter
     duration is needed to cover the same px/second). */
  .who-track { animation-duration: 40s; }
  .who-cta-bar { padding: 20px; }
  .who-cta-btn { margin-left: 0; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .contact-info-grid, .contact-info-grid.two { grid-template-columns: 1fr; }
  .info-link { padding: 18px 18px; }
  .contact-cta-row { flex-direction: column; }
  .contact-cta-row .btn { width: 100%; min-width: 0; }
  .btn { padding: 12px 22px; }
}

/* =====================================================
   THEME TOGGLE BUTTON (works in both themes)
   ===================================================== */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); background: rgba(77,159,255,.12); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* =====================================================
   DARK LIQUID-GLASS THEME — overrides (scoped to dark)
   Flipping the tokens (top of file) recolours the whole site;
   these rules add the glass surfaces + component tweaks that
   only make sense in dark mode. Light mode keeps the original look.
   ===================================================== */

/* ---- shared glass surface for every former white block ----
   The dark-glass look comes from the translucent gradient + specular
   border + inset highlight. Real backdrop blur is reserved for the two
   feature-card grids so we don't stack dozens of frosted layers over the
   fixed background and tank performance on lower-end devices. */
:root[data-theme="dark"] .pill-label,
:root[data-theme="dark"] .value-row,
:root[data-theme="dark"] .work-card,
:root[data-theme="dark"] .use-card,
:root[data-theme="dark"] .info-card,
:root[data-theme="dark"] .social {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
}
:root[data-theme="dark"] .value-row,
:root[data-theme="dark"] .work-card,
:root[data-theme="dark"] .use-card,
:root[data-theme="dark"] .info-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 14px 34px rgba(0,0,0,.42);
}
:root[data-theme="dark"] .value-row,
:root[data-theme="dark"] .use-card {
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
:root[data-theme="dark"] .value-row:hover,
:root[data-theme="dark"] .work-card:hover,
:root[data-theme="dark"] .use-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06) 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), var(--sh-lg);
}
:root[data-theme="dark"] .pill-label { color: rgba(233,238,247,.72); }

/* ---- nav: dark glass pill ---- */
:root[data-theme="dark"] .nav {
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.03) 55%, rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 34px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.18);
}
:root[data-theme="dark"] .nav-links a:hover { background: rgba(255,255,255,.10); }
:root[data-theme="dark"] .lang-btn {
  color: var(--black);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
:root[data-theme="dark"] .lang-btn:hover { background: rgba(255,255,255,.14); }
:root[data-theme="dark"] .lang-caret { border-top-color: var(--black); }
:root[data-theme="dark"] .lang-menu {
  background: linear-gradient(135deg, rgba(26,30,40,.94), rgba(15,18,26,.92));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 44px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.12);
}
:root[data-theme="dark"] .lang-menu button { color: var(--black); }
:root[data-theme="dark"] .lang-menu button:hover { background: rgba(255,255,255,.10); }

/* logos stay solid dark chips with the blue mark */
:root[data-theme="dark"] .nav-logo,
:root[data-theme="dark"] .footer-logo { background: var(--ink); }

/* ---- buttons ---- */
:root[data-theme="dark"] .btn-outline { border-color: rgba(255,255,255,.42); color: var(--black); }
:root[data-theme="dark"] .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---- hero mockups: dark browser frames ---- */
:root[data-theme="dark"] .mock {
  background: linear-gradient(160deg, rgba(26,30,40,.92), rgba(14,17,24,.92));
  border: 1px solid rgba(255,255,255,.12);
}
:root[data-theme="dark"] .mock-chip {
  background: rgba(10,12,18,.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}

/* ---- practical-use cards: dark glass ---- */
:root[data-theme="dark"] .use-shot { background: linear-gradient(160deg, rgba(30,36,48,.55), rgba(14,18,26,.55)); }

/* ---- social hover ---- */
:root[data-theme="dark"] .social:hover { background: var(--ink); color: var(--accent); border-color: rgba(255,255,255,.2); }

/* ---- darken Process / Benefits / FAQ into contrast bands ----
   Requested in LIGHT theme only (in dark everything is already dark). */
:root[data-theme="light"] #process,
:root[data-theme="light"] #benefits,
:root[data-theme="light"] #faq {
  background: linear-gradient(180deg, rgba(15,17,22,.06), rgba(15,17,22,.11));
  border-top: 1px solid rgba(17,17,17,.06);
  border-bottom: 1px solid rgba(17,17,17,.06);
}

/* =====================================================
   PRICING — struck original price + scarcity note
   (pricing panel is dark in both themes, so these stay global)
   ===================================================== */
.pricing-old {
  align-self: center;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.42);
  text-decoration: line-through;
  text-decoration-color: rgba(255,110,110,.9);
  text-decoration-thickness: 2px;
}
.pricing-spots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 20px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: rgba(255,176,84,.12);
  border: 1px solid rgba(255,176,84,.34);
  color: #ffcf9a;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.pricing-spots-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffab54;
  flex-shrink: 0;
  animation: spot-pulse 1.8s ease-in-out infinite;
}
@keyframes spot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,171,84,.55); }
  50%     { box-shadow: 0 0 0 6px rgba(255,171,84,0); }
}
