:root {
  color-scheme: dark;
  --navy-950: #041020;
  --navy-925: #06162c;
  --navy-900: #081b38;
  --navy-850: #0b2447;
  --navy-800: #10305d;
  --navy-700: #18447f;
  --yellow-200: #fff4b3;
  --yellow-300: #fbe88a;
  --yellow-400: #f6d967;
  --yellow-500: #efc94e;
  --white: #f8fbff;
  --text: #dfe8f6;
  --muted: #9fb0c8;
  --line: rgba(176, 200, 232, .16);
  --panel: rgba(10, 30, 59, .72);
  --panel-strong: #0b2242;
  --shadow: 0 28px 80px rgba(0, 5, 18, .34);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(39, 88, 158, .26), transparent 31rem),
    radial-gradient(circle at 92% 22%, rgba(246, 217, 103, .08), transparent 30rem),
    var(--navy-950);
  font-family: "Avenir Next", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background: var(--navy-950);
  transform-origin: top;
  animation: pageCurtain .75s var(--ease) forwards;
}

::selection { color: var(--navy-950); background: var(--yellow-300); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: .72rem 1rem;
  color: var(--navy-950);
  background: var(--yellow-300);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.section { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section-tight { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section-line { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(4, 16, 32, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(4, 16, 32, .9); }

.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 232px; height: auto; }
.brand:hover img { animation: brandLift .7s var(--ease); }

.site-nav { display: flex; align-items: center; gap: .3rem; }
.site-nav a {
  position: relative;
  padding: .72rem .78rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.055); }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: .32rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--yellow-400);
  transform: translateX(-50%);
}
.site-nav .nav-cta { margin-left: .35rem; color: var(--navy-950); background: var(--yellow-300); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: var(--navy-950); background: var(--yellow-400); }
.site-nav .nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.35rem;
  color: var(--yellow-300);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; box-shadow: 7px 0 18px currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--white); line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 13ch; margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.4rem); font-weight: 790; }
h2 { max-width: 15ch; margin-bottom: 1.25rem; font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 760; }
h3 { margin-bottom: .8rem; font-size: clamp(1.28rem, 2vw, 1.65rem); font-weight: 730; }
.display-accent { color: var(--yellow-300); }
.lead { max-width: 64ch; color: #bccbe0; font-size: clamp(1.05rem, 1.8vw, 1.24rem); line-height: 1.7; }
.section-intro { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-intro p { max-width: 48ch; margin: 0; color: var(--muted); }

.hero { min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; padding: clamp(4.5rem, 8vw, 8rem) 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero h1 { max-width: 11.6ch; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: .7rem;
  padding: .86rem 1.2rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--yellow-300);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(246, 217, 103, .14);
  transition: transform .25s var(--ease), box-shadow .25s ease, background .2s ease;
}
.button::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.58) 46%, transparent 68%); transform: translateX(-140%); transition: transform .75s var(--ease); }
.button:hover { transform: translateY(-3px); background: var(--yellow-400); box-shadow: 0 16px 40px rgba(246, 217, 103, .22); }
.button:hover::before { transform: translateX(140%); }
.button-secondary { color: var(--white); background: rgba(255,255,255,.035); border-color: var(--line); box-shadow: none; }
.button-secondary:hover { color: var(--yellow-200); background: rgba(255,255,255,.07); box-shadow: none; }
.button .icon { width: 19px; height: 19px; }

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  width: min(80vw, 500px); aspect-ratio: 1;
  border: 1px solid rgba(246, 217, 103, .14);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.hero-stage::after {
  content: "";
  position: absolute;
  width: min(66vw, 405px); aspect-ratio: 1;
  border: 1px dashed rgba(159, 176, 200, .15);
  border-radius: 50%;
  animation: orbitReverse 24s linear infinite;
}
.studio-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 425px);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 48, 93, .94), rgba(6, 22, 44, .94));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  animation: panelFloat 6s ease-in-out infinite;
}
.panel-top { display: flex; justify-content: space-between; align-items: center; padding: .45rem .45rem 1rem; color: var(--muted); font-size: .79rem; }
.panel-dots { display: flex; gap: .35rem; }
.panel-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.19); }
.panel-dots i:first-child { background: var(--yellow-400); box-shadow: 0 0 16px rgba(246,217,103,.5); }
.panel-screen { padding: 1.7rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(3, 13, 29, .68); }
.panel-brand { width: 96px; height: 96px; display: grid; place-items: center; margin-bottom: 2rem; border-radius: 25px; background: var(--navy-850); box-shadow: inset 0 0 0 1px rgba(246,217,103,.22); }
.panel-brand img { width: 72px; height: 72px; }
.panel-label { margin: 0 0 .55rem; color: var(--yellow-300); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.panel-title { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 4vw, 2.65rem); }
.signal-list { display: grid; gap: .7rem; }
.signal-row { display: grid; grid-template-columns: 38px 1fr auto; gap: .8rem; align-items: center; padding: .75rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.signal-row .icon-wrap { width: 38px; height: 38px; }
.signal-row span { color: #d5e0ef; font-size: .88rem; font-weight: 650; }
.signal-row small { color: var(--yellow-300); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--white); background: rgba(7, 23, 46, .86); box-shadow: var(--shadow); backdrop-filter: blur(12px); font-size: .82rem; font-weight: 700; }
.floating-chip .icon { width: 18px; height: 18px; color: var(--yellow-300); }
.chip-one { top: 11%; left: -2%; animation: chipFloat 5s ease-in-out infinite; }
.chip-two { right: -3%; bottom: 12%; animation: chipFloat 5s ease-in-out -2s infinite; }

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-wrap { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(246,217,103,.2); border-radius: 15px; color: var(--yellow-300); background: rgba(246,217,103,.07); }
.icon-wrap .icon { transition: transform .45s var(--ease); }
.service-card:hover .icon, .contact-card:hover .icon, .detail-card:hover .icon { transform: rotate(-8deg) scale(1.1); }

.proof-strip { border-block: 1px solid var(--line); background: rgba(7, 23, 46, .58); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 1.65rem clamp(1rem, 3vw, 2rem); border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--white); font-size: 1.1rem; }
.proof-item span { color: var(--muted); font-size: .88rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .detail-card, .contact-card, .legal-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at var(--mx, 80%) var(--my, 15%), rgba(246,217,103,.1), transparent 12rem),
    var(--panel);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}
.service-card:hover, .detail-card:hover, .contact-card:hover { transform: translateY(-7px); border-color: rgba(246,217,103,.33); }
.service-card { display: flex; flex-direction: column; }
.service-card .icon-wrap, .detail-card .icon-wrap { margin-bottom: 2rem; }
.service-card p, .detail-card p, .contact-card p { color: var(--muted); }
.service-card .text-link { margin-top: auto; }
.card-number { position: absolute; top: 1.7rem; right: 1.8rem; color: rgba(255,255,255,.23); font-size: .76rem; font-weight: 800; letter-spacing: .13em; }

.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--yellow-300); font-weight: 750; }
.text-link .icon { width: 18px; height: 18px; transition: transform .25s ease; }
.text-link:hover .icon { transform: translateX(4px); }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-grid::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow-400), transparent); opacity: .35; }
.process-step { position: relative; z-index: 1; padding: 0 1rem; }
.process-dot { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 1.5rem; border: 1px solid rgba(246,217,103,.35); border-radius: 50%; color: var(--yellow-300); background: var(--navy-950); font-size: .75rem; font-weight: 850; box-shadow: 0 0 0 8px rgba(4,16,32,.8); }
.process-step p { color: var(--muted); font-size: .94rem; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); }
.split-copy { padding: clamp(2rem, 6vw, 5rem); }
.split-copy p { color: var(--muted); }
.split-visual { position: relative; min-height: 470px; display: grid; place-items: center; overflow: hidden; border-left: 1px solid var(--line); background: linear-gradient(145deg, var(--navy-850), var(--navy-925)); }
.split-visual::before, .split-visual::after { content: ""; position: absolute; border: 1px solid rgba(246,217,103,.19); border-radius: 50%; }
.split-visual::before { width: 340px; height: 340px; animation: orbit 22s linear infinite; }
.split-visual::after { width: 240px; height: 240px; border-style: dashed; animation: orbitReverse 15s linear infinite; }
.visual-mark { position: relative; z-index: 2; width: 152px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 38px; background: rgba(4,16,32,.72); box-shadow: var(--shadow); animation: panelFloat 6s ease-in-out infinite; }

.page-hero { padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 13ch; font-size: clamp(3rem, 7vw, 5.9rem); }
.page-hero .lead { max-width: 58ch; }
.breadcrumb { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.5rem; color: var(--muted); font-size: .88rem; }
.breadcrumb a:hover { color: var(--yellow-300); }
.breadcrumb span { color: rgba(159,176,200,.5); }

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fact { padding: 1.5rem; border-top: 1px solid var(--yellow-400); background: linear-gradient(180deg, rgba(246,217,103,.055), transparent); }
.fact strong { display: block; margin-bottom: .35rem; color: var(--white); font-size: 1.15rem; }
.fact span { color: var(--muted); font-size: .9rem; }

.list-clean { display: grid; gap: .85rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.list-clean li { display: flex; gap: .75rem; align-items: flex-start; color: #c8d5e6; }
.list-clean .icon { width: 21px; height: 21px; margin-top: .18rem; flex: 0 0 auto; color: var(--yellow-300); }

.service-detail { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); }
.service-detail:first-child { border-top: 0; }
.service-index { color: var(--yellow-300); font-size: .78rem; font-weight: 850; letter-spacing: .15em; }
.service-detail p { max-width: 60ch; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.tag { padding: .4rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: #c5d3e6; background: rgba(255,255,255,.025); font-size: .8rem; }

.payment-shell { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1rem; }
.payment-card { padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(246,217,103,.28); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(16,48,93,.82), rgba(7,23,46,.95)); box-shadow: var(--shadow); }
.payment-mark { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 2rem; border-radius: 20px; color: var(--navy-950); background: var(--yellow-300); }
.payment-mark .icon { width: 30px; height: 30px; }
.payment-card h2 { max-width: 12ch; }
.payment-card p { color: var(--muted); }
.payment-note { padding: 1.1rem 1.2rem; margin-top: 1.5rem; border-left: 3px solid var(--yellow-400); border-radius: 0 12px 12px 0; color: #cbd8e9; background: rgba(246,217,103,.055); font-size: .9rem; }
.payment-aside { display: grid; gap: 1rem; }
.payment-aside .detail-card { min-height: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-card { min-height: 230px; display: flex; flex-direction: column; }
.contact-card .icon-wrap { margin-bottom: 1.5rem; }
.contact-card a { margin-top: auto; color: var(--yellow-300); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 750; word-break: break-word; }
.copy-button { display: inline-flex; align-items: center; gap: .5rem; width: max-content; padding: .45rem .65rem; margin-top: .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: .78rem; cursor: pointer; }
.copy-button:hover { color: var(--white); border-color: rgba(246,217,103,.35); }
.copy-button .icon { width: 15px; height: 15px; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 1.5rem); padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.legal-nav strong { display: block; margin-bottom: .75rem; color: var(--white); }
.legal-nav a { display: block; padding: .45rem 0; color: var(--muted); font-size: .88rem; }
.legal-nav a:hover { color: var(--yellow-300); }
.legal-content { max-width: 780px; }
.legal-content section { scroll-margin-top: calc(var(--header-h) + 1.5rem); padding: 0 0 2.4rem; margin-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { max-width: none; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.legal-content p, .legal-content li { color: #b8c7da; }
.legal-content a { color: var(--yellow-300); text-decoration: underline; text-underline-offset: 3px; }
.legal-content li + li { margin-top: .5rem; }
.last-updated { margin-bottom: 2rem; color: var(--yellow-300); font-size: .85rem; font-weight: 750; }

.cta-band { overflow: hidden; border-block: 1px solid rgba(246,217,103,.17); background: linear-gradient(100deg, rgba(16,48,93,.72), rgba(11,34,66,.95), rgba(77,69,31,.35)); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-block: clamp(3rem, 7vw, 5.5rem); }
.cta-inner h2 { max-width: 14ch; margin: 0; font-size: clamp(2rem, 4vw, 3.55rem); }

.site-footer { border-top: 1px solid var(--line); background: #030d1b; }
.footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: clamp(2rem, 5vw, 5rem); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.footer-brand img { width: 232px; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 32ch; color: var(--muted); font-size: .92rem; }
.footer-col strong { display: block; margin-bottom: 1rem; color: var(--white); font-size: .88rem; letter-spacing: .04em; }
.footer-col a { display: block; width: fit-content; margin: .55rem 0; color: var(--muted); font-size: .9rem; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: var(--yellow-300); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 1.5rem; border-top: 1px solid var(--line); color: #7689a3; font-size: .8rem; }
.footer-bottom p { margin: 0; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
@keyframes pageCurtain { to { transform: scaleY(0); } }
@keyframes panelFloat { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes brandLift { 40% { transform: translateY(-3px); } }

@media (max-width: 1040px) {
  .site-nav a { padding-inline: .55rem; font-size: .88rem; }
  .brand img { width: 205px; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 2.5rem; }
  .hero-stage { min-height: 500px; }
  .card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.15fr repeat(3, .7fr); gap: 2rem; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 190px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 14px; right: 14px;
    display: grid;
    gap: .25rem;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(6, 22, 44, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .site-nav a { padding: .8rem 1rem; border-radius: 12px; font-size: .98rem; }
  .site-nav a[aria-current="page"]::after { left: auto; right: 1rem; bottom: 50%; transform: translateY(50%); }
  .site-nav .nav-cta { margin: .3rem 0 0; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid, .split-panel, .payment-shell { grid-template-columns: 1fr; }
  .hero-stage { min-height: 520px; }
  .split-visual { border-top: 1px solid var(--line); border-left: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .process-grid::before { display: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: .2rem 1rem; }
  .legal-nav strong { width: 100%; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section { padding-block: 4.5rem; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .page-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .section-intro, .cta-inner { display: block; }
  .section-intro p { margin-top: 1rem; }
  .cta-inner .button { margin-top: 1.6rem; }
  .hero { padding-top: 3.5rem; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .hero-stage { min-height: 455px; }
  .hero-stage::before { width: 390px; }
  .hero-stage::after { width: 300px; }
  .studio-panel { width: calc(100% - 18px); }
  .chip-one { top: 3%; left: 0; }
  .chip-two { right: 0; bottom: 4%; }
  .proof-grid, .card-grid, .card-grid.three, .facts-grid, .contact-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .service-card, .detail-card, .contact-card { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 1rem; padding: 0; }
  .process-dot { grid-row: 1 / 3; }
  .service-detail { grid-template-columns: 1fr; gap: 1rem; }
  .split-visual { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: .4rem; }
}

@media (max-width: 390px) {
  .brand img { width: 171px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-chip { font-size: .73rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
