@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-alternates-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('../fonts/montserrat-alternates-800.woff2') format('woff2');
}

:root {
  --navy-950: #071a35;
  --navy-900: #0b2447;
  --navy-800: #12345f;
  --blue-600: #118ee9;
  --blue-500: #1d9ff2;
  --blue-300: #85cdfa;
  --sky-100: #e8f6ff;
  --sky-50: #f5fbff;
  --white: #ffffff;
  --ink: #122033;
  --muted: #5d6b7c;
  --line: #d9e8f3;
  --success: #087a55;
  --danger: #a83232;
  --shadow-sm: 0 10px 30px rgba(8, 35, 72, .08);
  --shadow-lg: 0 30px 80px rgba(8, 35, 72, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1200px;
  --font-display: 'Montserrat Alternates', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  padding: 10px 16px; background: var(--white); color: var(--navy-900);
  border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; overflow: clip; }
.section--compact { padding: 76px 0; }
.section--sky { background: var(--sky-50); }
.section--blue { background: var(--sky-100); }
.section--dark { background: var(--navy-950); color: var(--white); }
.section--dark .section-copy, .section--dark .muted { color: rgba(255,255,255,.7); }
.stack > * + * { margin-top: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 16px; color: var(--blue-600); font-size: .75rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 12px; height: 12px; flex: 0 0 12px; border: 4px solid currentColor; border-radius: 50%; }
.eyebrow--light { color: var(--blue-300); }
.display-title, h1, h2, h3, h4 {
  margin: 0; color: var(--navy-950); font-family: var(--font-display); line-height: 1.12;
  letter-spacing: -.035em;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-copy { margin: 20px 0 0; max-width: 670px; color: var(--muted); font-size: 1.08rem; }
.muted { color: var(--muted); }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--blue-300); }
.topbar__dot { width: 8px; height: 8px; border-radius: 2px; background: var(--blue-500); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(8,35,72,.07); backdrop-filter: blur(12px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 212px; }
.brand__mark { width: 48px; height: 48px; overflow: hidden; border-radius: 13px; background: white; box-shadow: 0 5px 18px rgba(8,35,72,.1); position: relative; }
.brand__mark img { position: absolute; width: 105px; max-width: none; height: 105px; left: -28px; top: -10px; object-fit: cover; object-position: top center; mix-blend-mode: multiply; }
.brand__name { display: block; font: 800 1.28rem/1 var(--font-display); color: var(--navy-950); letter-spacing: -.04em; }
.brand__tag { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav .button { display: none; }
.main-nav a { position: relative; color: #26384d; font-size: .88rem; font-weight: 700; }
.main-nav a:not(.button)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--blue-500); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a[aria-current='page']::after { right: 0; }
.main-nav a[aria-current='page'] { color: var(--blue-600); }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 12px; background: var(--sky-100); color: var(--navy-900); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; position: absolute; left: 12px; width: 22px; height: 2px; background: currentColor; transition: .2s ease; }
.menu-toggle span { top: 22px; }
.menu-toggle::before { top: 15px; }
.menu-toggle::after { top: 29px; }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { top: 22px; transform: rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  background: var(--blue-600); color: var(--white); font-size: .82rem; font-weight: 800;
  letter-spacing: .025em; box-shadow: 0 12px 30px rgba(17,142,233,.22); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-900); box-shadow: 0 16px 34px rgba(8,35,72,.2); }
.button--small { min-height: 46px; padding-inline: 20px; }
.button--dark { background: var(--navy-950); }
.button--dark:hover { background: var(--blue-600); }
.button--ghost { background: transparent; color: var(--navy-900); border-color: #b9d6e9; box-shadow: none; }
.button--ghost:hover { color: var(--white); border-color: var(--navy-900); }
.button--light { background: var(--white); color: var(--navy-950); box-shadow: none; }
.button--light:hover { background: var(--blue-500); }
.button svg, .text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 800; font-size: .85rem; }

.hero { min-height: 720px; padding: 88px 0 110px; background: linear-gradient(135deg, #f7fcff 0%, #e2f4ff 60%, #d8efff 100%); position: relative; overflow: clip; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr); gap: 72px; align-items: center; }
.hero__title em { color: var(--blue-600); font-style: normal; position: relative; white-space: nowrap; }
.hero__title em::after { content: ''; position: absolute; height: 8px; border-radius: 2px; background: rgba(29,159,242,.2); bottom: 3px; left: 1%; right: 1%; transform: rotate(-1deg); }
.hero__lead { max-width: 650px; margin: 24px 0 0; color: #4e6175; font-size: clamp(1.02rem, 1.6vw, 1.22rem); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.proof-item { display: flex; align-items: center; gap: 10px; color: var(--navy-800); font-size: .8rem; font-weight: 800; }
.proof-item__icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--white); color: var(--blue-600); box-shadow: var(--shadow-sm); }
.proof-item svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.hero-visual { min-height: 560px; position: relative; padding: 0 30px 34px 0; }
.hero-visual__accent { position: absolute; inset: 34px 0 0 38px; background: var(--blue-500); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%); }
.hero-visual__image { position: absolute; inset: 0 30px 34px 0; overflow: hidden; box-shadow: var(--shadow-lg); clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%); }
.hero-visual__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,26,53,.28)); }
.hero-visual__image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.float-card { position: absolute; z-index: 3; padding: 16px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); animation: float 5s ease-in-out infinite; }
.float-card--top { top: 42px; right: -16px; }
.float-card--bottom { left: -22px; bottom: 58px; animation-delay: -2.2s; }
.float-card__label { display: block; color: var(--muted); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.float-card__value { display: block; margin-top: 4px; color: var(--navy-950); font: 700 .91rem/1.35 var(--font-display); }

.trust-strip { position: relative; z-index: 5; margin-top: -42px; }
.trust-strip__inner { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.trust-strip__lead, .trust-pill { padding: 28px 30px; }
.trust-strip__lead { background: var(--navy-950); color: var(--white); }
.trust-strip__lead strong { display: block; font: 700 1.05rem/1.3 var(--font-display); }
.trust-strip__lead span { color: rgba(255,255,255,.66); font-size: .78rem; }
.trust-pill { border-right: 1px solid var(--line); }
.trust-pill:last-child { border-right: 0; }
.trust-pill strong { display: block; color: var(--navy-950); font: 700 .95rem/1.3 var(--font-display); }
.trust-pill span { display: block; margin-top: 6px; color: var(--muted); font-size: .74rem; }

.service-card { position: relative; min-height: 310px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.service-card::after { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px; background: var(--blue-500); transform: scaleX(.16); transform-origin: left; transition: transform .35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: #a6d8f8; box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.icon-box { position: relative; display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 34px; border-radius: 16px; background: var(--navy-950); color: var(--white); box-shadow: 0 12px 26px rgba(7,26,53,.2); }
.icon-box svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; margin-bottom: 14px; }
.service-card p { position: relative; margin: 0 0 22px; color: var(--muted); font-size: .92rem; }
.service-card .text-link { position: absolute; left: 32px; bottom: 28px; }

.about-visual { position: relative; min-height: 610px; }
.about-visual__image { position: absolute; inset: 0 68px 42px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-visual__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-visual__panel { position: absolute; z-index: 2; right: 0; bottom: 0; width: 260px; padding: 28px; border-radius: 24px; background: var(--navy-950); color: var(--white); box-shadow: var(--shadow-lg); }
.about-visual__panel strong { display: block; font: 700 1.1rem/1.4 var(--font-display); }
.about-visual__panel span { display: block; margin-top: 10px; color: rgba(255,255,255,.65); font-size: .78rem; }
.check-list { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #33465b; }
.check-list__icon { flex: 0 0 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; background: var(--sky-100); color: var(--blue-600); }
.check-list svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-grid::before { content: ''; position: absolute; top: 35px; left: 11%; right: 11%; height: 1px; background: rgba(133,205,250,.3); }
.process-step { position: relative; padding: 0 24px; text-align: center; }
.process-step__number { position: relative; z-index: 2; width: 70px; height: 70px; margin: 0 auto 26px; display: grid; place-items: center; border: 1px solid rgba(133,205,250,.4); background: var(--navy-950); color: var(--blue-300); font: 700 1rem var(--font-display); clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%); }
.process-step p { color: rgba(255,255,255,.62); font-size: .86rem; }

.audience-card { min-height: 220px; padding: 28px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); transition: transform .2s ease, background .2s ease; }
.audience-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); }
.audience-card__tag { display: inline-flex; margin-bottom: 24px; padding: 5px 10px; border-radius: 999px; background: rgba(29,159,242,.17); color: var(--blue-300); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.audience-card p { color: rgba(255,255,255,.62); font-size: .86rem; }

.insight-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm); }
.insight-card__image { aspect-ratio: 16/10; overflow: hidden; }
.insight-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.insight-card:hover img { transform: scale(1.05); }
.insight-card__body { padding: 26px; }
.insight-card__meta { display: block; margin-bottom: 11px; color: var(--blue-600); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insight-card p { color: var(--muted); font-size: .86rem; }

.cta-band { position: relative; padding: 66px; border-radius: 18px; background: linear-gradient(120deg, var(--blue-600), #55b9f5); color: var(--white); overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ''; position: absolute; width: 130px; height: 100%; right: 0; top: 0; background: rgba(255,255,255,.08); clip-path: polygon(48% 0, 100% 0, 100% 100%, 0 100%); }
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 46px; }
.cta-band h2 { max-width: 720px; color: var(--white); font-size: clamp(2rem, 4vw, 3.25rem); }
.cta-band p { max-width: 620px; margin: 14px 0 0; color: rgba(255,255,255,.78); }

.page-hero { padding: 74px 0; background: var(--navy-950); color: var(--white); position: relative; overflow: clip; }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.page-hero__content { max-width: 720px; }
.page-hero__media { position: relative; min-height: 390px; }
.page-hero__media::before { content: ''; position: absolute; inset: 24px -24px -24px 24px; background: var(--blue-500); clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%, 0 82%); }
.page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%); }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.6rem); }
.page-hero p { max-width: 700px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 22px; color: var(--blue-300); font-size: .76rem; font-weight: 700; }
.breadcrumb span { color: rgba(255,255,255,.45); }

.workplaces { padding: 112px 0; background: var(--white); }
.workplaces__head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.workplaces__head h2 { margin: 0; }
.workplaces__stage { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; box-shadow: var(--shadow-lg); }
.workplaces__photo { position: relative; min-height: 600px; overflow: hidden; }
.workplaces__photo img { width: 100%; height: 100%; object-fit: cover; }
.workplaces__photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px; color: var(--white); background: linear-gradient(transparent, rgba(7,26,53,.92)); }
.workplaces__photo-caption strong { display: block; max-width: 440px; font: 700 1.25rem/1.45 var(--font-display); }
.workplaces__panel { display: flex; flex-direction: column; justify-content: center; padding: 58px; background: var(--sky-100); }
.workplaces__panel h3 { max-width: 560px; margin-bottom: 34px; color: var(--navy-950); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.workplaces__kicker { display: block; margin-bottom: 16px; color: var(--blue-600); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.workplace-path { display: grid; border-top: 1px solid #bddff4; }
.workplace-path__item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid #bddff4; }
.workplace-path__item span { color: var(--blue-600); font: 800 .78rem var(--font-display); }
.workplace-path__item strong { display: block; color: var(--navy-950); font: 700 .95rem/1.35 var(--font-display); }
.workplace-path__item p { margin: 5px 0 0; color: var(--muted); font-size: .8rem; }

.social-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.social-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.topbar__social { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.16); }
.footer-social { margin-top: 18px; color: var(--blue-300); font-size: .8rem; font-weight: 700; }

.value-card { padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: var(--white); }
.value-card__letter { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; border-radius: 14px; background: var(--sky-100); color: var(--blue-600); font: 800 1.05rem var(--font-display); }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.legal-card { padding: 32px; border-radius: 24px; background: var(--sky-100); border: 1px solid #cae8fa; }
.legal-card strong { display: block; font: 700 1.1rem var(--font-display); color: var(--navy-950); }
.legal-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 0; }
.legal-card dt { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.legal-card dd { margin: 3px 0 0; color: var(--navy-900); font-weight: 800; }

.service-group { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 54px 0; border-top: 1px solid var(--line); }
.service-group:first-child { border-top: 0; padding-top: 0; }
.service-group__number { display: block; margin-bottom: 14px; color: var(--blue-600); font: 700 .82rem var(--font-display); }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.service-list li { display: flex; gap: 10px; padding: 14px 16px; border-radius: 12px; background: var(--sky-50); color: #35485c; font-size: .84rem; }
.service-list svg { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 4px; fill: none; stroke: var(--blue-600); stroke-width: 2.5; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.price-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.price-card__head .icon-box { flex: 0 0 50px; width: 50px; height: 50px; margin: 0; border-radius: 14px; }
.price-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.price-list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.price-list span { color: var(--muted); }
.price-list strong { max-width: 52%; color: var(--navy-950); text-align: right; white-space: normal; }
.notice { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--blue-500); border-radius: 0 14px 14px 0; background: var(--sky-100); color: #3c536a; font-size: .84rem; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.contact-card { padding: 32px; border-radius: 24px; background: var(--navy-950); color: var(--white); }
.contact-card h3 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.65); }
.contact-method { display: flex; gap: 14px; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-method__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(29,159,242,.16); color: var(--blue-300); }
.contact-method svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-method small { display: block; color: rgba(255,255,255,.5); }
.contact-method strong { font-size: .92rem; }
.contact-form { padding: 38px; border-radius: 28px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-lg); scroll-margin-top: 150px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .75rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #c9dce9; border-radius: 12px; background: var(--sky-50); color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }
.field input[type='checkbox'] { width: auto; min-height: 0; margin: 4px 0 0; padding: 0; border: 0; accent-color: var(--blue-600); }
.field label > span { display: flex; align-items: flex-start; gap: 10px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(29,159,242,.12); outline: 0; }
.field-hp { position: absolute; left: -9999px; }
.form-help { margin: 16px 0 0; color: var(--muted); font-size: .72rem; }
.form-notice { display: grid; gap: 3px; margin-bottom: 22px; padding: 15px 17px; border-radius: 12px; font-size: .82rem; }
.form-notice--sent { background: #e7f8f1; color: var(--success); }
.form-notice--invalid, .form-notice--failed { background: #fff0f0; color: var(--danger); }

.faq-list { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.faq-list summary { position: relative; padding: 21px 54px 21px 22px; color: var(--navy-950); font: 700 .95rem var(--font-display); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 22px; top: 18px; color: var(--blue-600); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .88rem; }

.site-footer { background: var(--navy-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1.1fr; gap: 52px; padding: 82px 0 62px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__tag { color: rgba(255,255,255,.5); }
.footer-brand p { max-width: 390px; margin-top: 22px; color: rgba(255,255,255,.58); font-size: .86rem; }
.footer-title { margin-bottom: 20px; color: var(--white); font: 700 .9rem var(--font-display); }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-contact { color: rgba(255,255,255,.62); font-size: .82rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--blue-300); }
.footer-contact strong { display: block; margin-top: 8px; color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .72rem; }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1); }
.js [data-reveal='left'] { transform: translateX(-32px); }
.js [data-reveal='right'] { transform: translateX(32px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1060px) {
  .main-nav { gap: 19px; }
  .header-inner > .button { display: none; }
  .hero__grid { grid-template-columns: 1fr 430px; gap: 40px; }
  .page-hero__grid { gap: 44px; }
  .page-hero__media { min-height: 340px; }
  .workplaces__panel { padding: 44px; }
  .trust-strip__inner { grid-template-columns: 1.2fr repeat(3, 1fr); }
  .trust-strip__lead, .trust-pill { padding: 24px 20px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .section { padding: 84px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__group:last-child { display: none; }
  .menu-toggle { display: grid; }
  .main-nav { position: fixed; inset: 122px 18px auto; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:not(.button)::after { display: none; }
  .main-nav a:hover { background: var(--sky-100); }
  .main-nav .button { margin-top: 8px; }
  .main-nav .button { display: inline-flex; }
  .hero { padding-top: 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 510px; max-width: 650px; width: 100%; margin: 0 auto; }
  .trust-strip { margin-top: -26px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-strip__lead { grid-column: 1 / -1; }
  .trust-pill:nth-child(3) { border-right: 0; }
  .grid-2, .contact-layout, .service-group, .page-hero__grid, .workplaces__head, .workplaces__stage { grid-template-columns: 1fr; gap: 44px; }
  .page-hero__media { min-height: 390px; }
  .workplaces__stage { gap: 0; }
  .workplaces__photo { min-height: 480px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 42px 10px; }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 74px; }
  .brand { min-width: 0; }
  .brand__mark { width: 43px; height: 43px; }
  .brand__mark img { width: 94px; height: 94px; left: -26px; top: -9px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { font-size: .52rem; }
  .main-nav { inset: 112px 14px auto; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { min-height: auto; padding: 58px 0 88px; }
  .hero__title em { white-space: normal; }
  .hero__proof { gap: 13px; }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .hero-visual { padding: 0 12px 26px 0; }
  .hero-visual__image { inset: 0 12px 26px 0; }
  .hero-visual__accent { inset: 22px 0 0 24px; }
  .float-card { padding: 12px 13px; }
  .float-card--top { top: 18px; right: -4px; }
  .float-card--bottom { left: -4px; bottom: 34px; }
  .float-card__value { font-size: .76rem; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__lead { grid-column: auto; }
  .trust-pill { border-right: 0; border-bottom: 1px solid var(--line); }
  .grid-3, .grid-4, .process-grid, .form-grid, .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .about-visual { min-height: 500px; }
  .about-visual__image { inset: 0 20px 60px 0; }
  .about-visual__panel { width: 230px; padding: 22px; }
  .cta-band { padding: 42px 28px; border-radius: 26px; }
  .page-hero { padding: 54px 0 70px; }
  .page-hero__grid { gap: 34px; }
  .page-hero__media { min-height: 280px; margin-right: 14px; }
  .page-hero__media::before { inset: 14px -14px -14px 14px; }
  .workplaces { padding: 68px 0; }
  .workplaces__head { gap: 20px; margin-bottom: 34px; }
  .workplaces__photo { min-height: 390px; }
  .workplaces__panel { padding: 34px 24px; }
  .legal-card dl { grid-template-columns: 1fr; }
  .service-group { padding-block: 42px; }
  .price-card, .contact-form { padding: 26px 22px; }
  .price-list li { display: grid; gap: 3px; }
  .price-list strong { text-align: left; }
  .footer-main { grid-template-columns: 1fr; padding-top: 62px; }
  .footer-bottom { flex-direction: column; }
}

@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; }
}
