@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --bg: #f5f5f7;
  --bg-2: #ffffff;
  --black: #1d1d1f;
  --blue: #5ac8fa;
  --blue-deep: #32b5ee;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --dim: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --surface: #ffffff;
  --surface-2: rgba(0, 0, 0, 0.04);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1120px;
  --nav-h: 52px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --font-display: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Segoe UI Mono", monospace;
  --orange: var(--blue);
  --orange-2: var(--blue-deep);
  --mint: var(--blue);
  --gold: var(--black);
  --cyan: var(--blue);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

img, canvas, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d2d2d7; border-radius: 99px; }

.grain { display: none; }

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(90, 200, 250, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .3s;
}

body.hover-link .cursor {
  width: 48px;
  height: 48px;
  background: rgba(90, 200, 250, 0.35);
}

body.hover-link .cursor-ring { opacity: 0; }

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s var(--ease), visibility .6s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  animation: pulse-glow 1.8s ease-in-out infinite;
}

.loader-bar {
  width: 140px;
  height: 2px;
  background: #e8e8ed;
  overflow: hidden;
  border-radius: 99px;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  animation: loadbar 1.3s var(--ease) forwards;
}

.loader-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

@keyframes loadbar { to { width: 100%; } }
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.wide { width: min(1440px, calc(100% - 32px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-deep);
}

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.muted { color: var(--muted); }
.gold { color: var(--blue); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  min-width: 0;
}

.nav-links a {
  padding: 6px 8px;
  font-size: 12px;
  color: var(--muted);
  border-radius: 980px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.nav-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 34px;
  padding: 0 16px;
  font-size: 13px;
}

.lang-switch {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  white-space: nowrap;
}

.lang-switch button {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--dim);
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.lang-switch button:hover { color: var(--black); }

.lang-switch button.is-active {
  color: var(--black);
  text-decoration: underline;
}

.mobile-panel .lang-switch {
  margin: 8px 0 12px;
  gap: 16px;
}

.mobile-panel .lang-switch button {
  font-size: 13px;
}

.burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  place-items: center;
  cursor: pointer;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--black);
  position: relative;
  transition: transform .25s var(--ease), top .25s var(--ease), background .2s;
}

body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before { top: -5px; }
.burger span::after { top: 5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .3s var(--ease), background .2s, box-shadow .3s, color .2s;
}

.btn-primary {
  background: var(--blue);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: scale(1.02);
}

.btn-ghost {
  background: var(--black);
  color: var(--white);
}

.btn-ghost:hover {
  background: #000;
}

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 72px) 0 72px;
  overflow: hidden;
  background: var(--white);
}

#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(90, 200, 250, 0.28), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-glow.a {
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #5ac8fa 0%, transparent 70%);
}

.hero-glow.b,
.hero-glow.c { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
}

.hero-kicker { margin-bottom: 20px; }

.hero-display {
  font-size: clamp(48px, 8.4vw, 96px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-family: var(--font-display);
}

.hero-display .line { display: block; overflow: hidden; }

.hero-display .line span {
  display: block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}

.hero-display .line:nth-child(2) span { animation-delay: .1s; }
.hero-display .line:nth-child(3) span { animation-delay: .2s; }

.hero-display em {
  font-style: normal;
  color: var(--blue);
}

@keyframes rise { to { transform: translateY(0); } }

.hero-foot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.38;
  opacity: 0;
  animation: fadeup .8s .45s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeup .8s .6s var(--ease) forwards;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.scroll-hint {
  position: absolute;
  right: 36px;
  bottom: 32px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}

.marquee {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 32s linear infinite;
}

.marquee-track span {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
  font-weight: 500;
}

.marquee-track span::after {
  content: "•";
  color: var(--blue);
}

@keyframes slide { to { transform: translateX(-50%); } }

section { position: relative; }

.section { padding: 110px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.section-head p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  transition: transform .5s var(--ease);
}

.pillar:hover { transform: translateY(-6px); }

.pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 1.1s var(--ease), opacity .5s;
}

.pillar:hover img { transform: scale(1.05); opacity: 0.7; }

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.78) 100%);
}

.pillar-body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.pillar-index {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar h3 {
  font-size: 40px;
  margin: 12px 0 10px;
  color: #fff;
}

.pillar p { color: rgba(255,255,255,0.72); max-width: 32ch; }

.pillar .btn-ghost {
  background: #fff;
  color: #000;
  align-self: flex-start;
}

.stats-band {
  padding: 96px 0;
  background: var(--black);
  color: #fff;
}

.stats-band h2,
.stats-band .stat strong { color: #fff; }

.stats-band .stat span { color: rgba(255,255,255,0.55); }

.stats {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.stat strong {
  display: block;
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

.stat span { font-size: 14px; }

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transform-style: preserve-3d;
  transition: transform .45s var(--ease);
}

.work-card.tall { min-height: 700px; grid-row: span 2; }

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.work-card:hover img { transform: scale(1.04); }

.work-meta {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  color: var(--black);
}

.work-meta small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 600;
}

.work-meta h3 { font-size: 22px; }

.logo-card {
  display: grid;
  place-items: center;
  background: #fff;
  height: 100%;
}

.logo-card img {
  width: min(58%, 280px);
  height: auto;
  object-fit: contain;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  min-height: 260px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.trust-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(90, 200, 250, 0.22);
  color: var(--black);
  font-weight: 600;
}

.trust-card h3 { font-size: 26px; margin-bottom: 10px; }
.trust-card p { color: var(--muted); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.process article {
  background: #fff;
  padding: 32px 26px 40px;
  min-height: 240px;
}

.process .num {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 40px;
}

.process h3 { font-size: 24px; margin-bottom: 10px; }
.process p { color: var(--muted); font-size: 15px; }

.quotes { overflow: hidden; }

.quote-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 50s linear infinite;
}

.quote {
  width: min(400px, 78vw);
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.stars { color: var(--blue-deep); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 18px; line-height: 1.45; margin-bottom: 20px; }
.quote cite { color: var(--muted); font-style: normal; font-size: 14px; }

.cta {
  margin: 20px auto 80px;
  width: min(1440px, calc(100% - 32px));
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #000;
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(1);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.72));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 64px 24px;
}

.cta h2 {
  font-size: clamp(40px, 6vw, 80px);
  max-width: 14ch;
  margin: 12px auto 18px;
  color: #fff;
}

.cta .muted { color: rgba(255,255,255,0.65); }

.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer a, .footer p { color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--black); }
.footer ul { list-style: none; display: grid; gap: 8px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
}

.page-hero {
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 88px) 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-align: center;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  margin: 12px auto 16px;
  max-width: 16ch;
}

.page-hero p {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 21px;
}

.page-hero .bg-photo {
  position: absolute;
  right: 0;
  top: 20%;
  width: min(48vw, 640px);
  height: 380px;
  object-fit: cover;
  border-radius: 28px 0 0 28px;
  opacity: 0.18;
  filter: grayscale(0.4);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  padding: 32px 28px;
  border-radius: 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform .45s var(--ease);
}

.price-card.featured {
  outline: 2px solid var(--blue);
  box-shadow: 0 12px 40px rgba(90, 200, 250, 0.25);
}

.price-card h3 { font-size: 30px; margin: 8px 0 6px; }
.price-card .tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 600;
}

.price-card .fee {
  color: var(--black);
  margin: 14px 0 22px;
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
}

.price-card li::before {
  content: "• ";
  color: var(--blue);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
}

.contact-side {
  padding: 32px;
  border-radius: 24px;
  background: var(--black);
  color: #fff;
}

.contact-side h2 { color: #fff; }
.contact-side .eyebrow { color: var(--blue); }

.contact-side a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.contact-side address { display: contents; }

.contact-side .btn-ghost {
  background: #fff;
  color: #000;
}

.form {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  display: grid;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.field { display: grid; gap: 8px; }
.field label { font-size: 13px; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s;
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}

.form-ok {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: rgba(90, 200, 250, 0.18);
  color: var(--black);
}

.project-cover {
  margin-top: 12px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.project-cover img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-cover.contain img {
  object-fit: contain;
  padding: 40px;
  height: 420px;
}

.prose {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.prose p { color: var(--muted); font-size: 18px; }
.prose h2 { font-size: 32px; margin-top: 12px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
  justify-content: center;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
}

.value h3 { font-size: 26px; margin-bottom: 10px; }
.value p { color: var(--muted); }

.zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zone-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.zone-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.zone-card small {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.zone-card h3 {
  font-size: 24px;
  margin: 12px 0 10px;
  letter-spacing: -0.03em;
}

.zone-card p {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.zone-card span {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.city-list span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 980px;
  background: var(--surface-2);
  color: var(--muted);
}

.geo-copy {
  max-width: 72ch;
  color: var(--muted);
  font-size: 18px;
}

.geo-copy + .geo-copy { margin-top: 16px; }

.faq {
  max-width: 820px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--dim);
  font-weight: 400;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  padding: 0 0 20px;
  color: var(--muted);
  max-width: 68ch;
}

.legal {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
  color: var(--muted);
  text-align: left;
}

.pillars > *,
.work-grid > *,
.price-grid > *,
.trust-grid > *,
.stats > *,
.footer-grid > * {
  min-width: 0;
}

.prose p:has(.btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prose .btn { margin: 0 !important; }

.mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(251, 251, 253, 0.96);
  backdrop-filter: blur(20px);
  z-index: 70;
  display: none;
  flex-direction: column;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 20px) 24px calc(28px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-panel.open { display: flex; }

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-panel nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: clamp(26px, 7vw, 36px);
  padding: 6px 0;
  letter-spacing: -0.03em;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-panel .btn {
  margin-top: 28px;
  width: 100%;
  font-size: 15px;
  min-height: 48px;
  justify-content: center;
  border: none;
}

body.nav-open { overflow: hidden; }

/* Tablet */
@media (max-width: 1180px) {
  .nav-links,
  .nav-cta .btn { display: none; }
  .burger { display: grid; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .scroll-hint { display: none; }
  .page-hero .bg-photo { display: none; }
}

@media (min-width: 700px) and (max-width: 1100px) {
  .pillars,
  .trust-grid,
  .price-grid,
  .values,
  .contact-wrap,
  .work-grid,
  .stats,
  .footer-grid,
  .zones {
    grid-template-columns: 1fr 1fr;
  }
  .process { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .pillar { min-height: 420px; }
  .work-card, .work-card.tall { min-height: 300px; grid-row: auto; }
  .cta { width: calc(100% - 32px); }
}

/* Phone */
@media (max-width: 699px) {
  html, body { font-size: 16px; }
  .container,
  .hero-content,
  .wide { width: calc(100% - 24px); }
  .nav-inner { width: calc(100% - 20px); }
  .lang-switch { gap: 10px; }
  .nav-end { gap: 12px; }
  .section { padding: 64px 0; }
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 48px) 0 48px;
  }
  .hero-display { font-size: clamp(36px, 11vw, 48px); }
  .hero-copy { font-size: 17px; }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; }
  .page-hero {
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 48px) 0 40px;
    text-align: left;
  }
  .page-hero h1 {
    font-size: clamp(34px, 12vw, 52px);
    margin-left: 0;
    max-width: none;
  }
  .page-hero p { font-size: 17px; margin-inline: 0; }
  .chips { justify-content: flex-start; }
  .section-head h2,
  .cta h2 { font-size: clamp(30px, 10vw, 44px); }
  .section-head p { font-size: 16px; }
  .pillars,
  .stats,
  .work-grid,
  .trust-grid,
  .process,
  .price-grid,
  .contact-wrap,
  .footer-grid,
  .values,
  .form-row,
  .zones {
    grid-template-columns: 1fr;
  }
  .pillar { min-height: 360px; }
  .pillar h3 { font-size: 32px; }
  .work-card,
  .work-card.tall,
  .logo-card {
    min-height: 240px !important;
    grid-row: auto;
  }
  .work-meta {
    inset: auto 10px 10px 10px;
    padding: 12px 14px;
  }
  .work-meta h3 { font-size: 18px; }
  .cta {
    width: calc(100% - 16px);
    min-height: 340px;
    border-radius: 22px;
    margin: 8px auto 40px;
  }
  .cta-inner { padding: 40px 18px; }
  .cta-inner .btn,
  .prose .btn { width: 100%; }
  .prose p:has(.btn) { flex-direction: column; }
  .project-cover img { height: 280px; }
  .project-cover.contain img { height: 260px; padding: 20px; }
  .quote { width: min(320px, 85vw); }
  .footer-bottom { flex-direction: column; }
  .contact-side .btn { width: 100%; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
}

@media (max-width: 399px) {
  .hero-display { font-size: 32px; }
  .nav-cta .btn-primary { display: none; }
  .brand span { display: none; }
}

@media (hover: none) {
  .pillar:hover,
  .work-card:hover,
  .price-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
