:root {
  --bg: #f6f8fb;
  --bg-soft: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --ink: #172033;
  --muted: #627084;
  --line: #d9e2ec;
  --line-strong: #bcc9d8;
  --blue: #123b67;
  --blue-deep: #0c2a49;
  --blue-soft: #dce9f4;
  --teal: #286d67;
  --teal-soft: #dcefeb;
  --gold: #b99350;
  --gold-light: #ecd49d;
  --silver: #eef2f5;
  --graphite: #2b3139;
  --success: #1f7a53;
  --error: #a23a35;
  --shadow: 0 18px 50px rgba(16, 31, 48, 0.12);
  --soft-shadow: 0 12px 34px rgba(18, 45, 72, 0.08);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  background:
    linear-gradient(145deg, rgba(220, 233, 244, 0.78) 0%, rgba(246, 248, 251, 0.5) 36%, rgba(236, 212, 157, 0.32) 100%),
    linear-gradient(180deg, #f6f8fb 0%, #edf2f7 54%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--blue-deep);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  background: rgba(246, 248, 251, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -1px 0 rgba(18, 59, 103, 0.06);
  backdrop-filter: blur(20px) saturate(145%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(18, 59, 103, 0.08);
}

.site-header .container {
  width: min(100% - 28px, 1320px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  width: 75px;
  height: 75px;
  max-width: 75px;
  max-height: 75px;
  flex: 0 0 auto;
  background: transparent;
  object-fit: contain;
}

.brand-name,
.brand-year {
  display: block;
}

.brand-name {
  color: var(--blue-deep);
  font-weight: 850;
  line-height: 1.05;
}

.brand-year {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--graphite);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(18, 59, 103, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(18, 59, 103, 0.08);
}

.main-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(18, 59, 103, 0.46);
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.42);
  font-weight: 800;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  border-color: rgba(18, 59, 103, 0.62);
  background: rgba(255, 255, 255, 0.82);
}

.header-contacts {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  margin-left: 0;
  padding: 0;
  color: var(--blue);
  font-size: 0.77rem;
  line-height: 1.18;
  white-space: nowrap;
}

.main-nav .header-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(18, 59, 103, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.14;
}

.main-nav .header-contacts a:first-child {
  color: var(--blue);
  font-weight: 850;
}

.main-nav .header-contacts a:last-child {
  color: var(--blue);
}

.main-nav .header-contacts a:hover,
.main-nav .header-contacts a:focus-visible {
  border-color: rgba(18, 59, 103, 0.62);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  color: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero-media,
.final-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 39, 0.82) 0%, rgba(10, 35, 61, 0.66) 44%, rgba(10, 35, 61, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 18, 31, 0.48) 0%, rgba(6, 18, 31, 0.12) 48%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 390px;
  align-items: center;
  gap: 56px;
  min-height: calc(74svh - var(--header-height));
  padding: 42px 0 28px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-section .eyebrow {
  color: #f1d99d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.28rem;
  line-height: 1.03;
  font-weight: 860;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 2.55rem;
  line-height: 1.1;
  font-weight: 840;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 14px;
  color: #eef5fb;
  font-size: 1.12rem;
  font-weight: 750;
}

.hero-text,
.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
}

.mobile-benefits {
  display: none;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d4b875, var(--gold));
  color: #101926;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(185, 147, 80, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-primary:hover {
  background: #caa766;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(18, 59, 103, 0.98), rgba(40, 109, 103, 0.9));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero .btn-secondary,
.final-section .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--blue-deep);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.form-ghost {
  color: var(--blue-deep);
  border-color: var(--line-strong);
}

.hero-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 42, 73, 0.68), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.region-map {
  min-height: 184px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 32px);
}

.region-map svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.map-shape {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 1.8;
}

.map-line {
  fill: none;
  stroke: rgba(241, 217, 157, 0.72);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.map-dot {
  fill: #ffffff;
  stroke: rgba(18, 59, 103, 0.8);
  stroke-width: 1.4;
}

.map-dot.primary {
  fill: var(--gold-light);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-benefits article {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-benefits strong,
.hero-benefits span {
  display: block;
}

.hero-benefits strong {
  color: #fff;
  font-size: 1rem;
}

.hero-benefits span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.52);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.two-column,
.split-layout,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.split-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-lead {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.point-grid,
.ecosystem-grid,
.audience-grid,
.model-grid,
.value-grid,
.product-grid,
.format-grid,
.materials-grid {
  display: grid;
  gap: 14px;
}

.point-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.point-grid article,
.ecosystem-grid article,
.audience-grid article,
.model-grid article,
.value-grid article,
.product-grid article,
.format-grid article,
.materials-grid span,
.rating-panel,
.form-shell {
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.point-grid article {
  min-height: 118px;
  padding: 18px;
  color: var(--graphite);
  font-weight: 700;
}

.point-grid article span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.point-grid.small article {
  min-height: 92px;
}

.formula {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.formula span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(18, 59, 103, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(220, 239, 235, 0.72));
  color: var(--blue-deep);
  font-weight: 850;
  text-align: center;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecosystem-grid article,
.format-grid article {
  padding: 22px;
}

.ecosystem-grid svg,
.format-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--gold);
}

.ecosystem-grid p,
.audience-grid p,
.model-grid p,
.format-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid article {
  min-height: 174px;
  padding: 20px;
}

.benefits-section {
  background:
    linear-gradient(135deg, rgba(220, 233, 244, 0.96), rgba(255, 255, 255, 0.84) 48%, rgba(236, 212, 157, 0.26)),
    var(--bg);
  color: var(--ink);
}

.benefits-section .split-copy {
  padding: 28px;
  border: 1px solid rgba(217, 226, 236, 0.94);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.benefits-section h2 {
  color: var(--blue-deep);
}

.benefits-section .lead {
  color: var(--graphite);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(18, 59, 103, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(18, 59, 103, 0.07);
}

.benefit-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 147, 80, 0.14);
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.media-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.media-card.tall {
  min-height: 470px;
}

.media-card.wide {
  min-height: 430px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 22, 39, 0.76), rgba(7, 22, 39, 0.1) 64%);
}

.media-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.media-card figcaption span,
.media-card figcaption strong {
  display: block;
}

.media-card figcaption span {
  margin-bottom: 8px;
  color: #f1d99d;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.media-card figcaption strong {
  max-width: 540px;
  font-size: 1.2rem;
  line-height: 1.28;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.status-board div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(18, 59, 103, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.status-board strong,
.status-board span {
  display: block;
}

.status-board strong {
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.status-board span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 34%, rgba(185, 147, 80, 0.18) 36% 100%);
}

.model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-grid article {
  padding: 22px;
}

.model-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 850;
}

.model-grid ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--graphite);
}

.commerce-section {
  background: rgba(255, 255, 255, 0.56);
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article {
  min-height: 142px;
  padding: 20px;
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.value-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid article {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--blue-deep);
  font-weight: 800;
}

.rating-panel {
  padding: 24px;
}

.integrity-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff7e4;
  color: #4b3a1d;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.timeline article {
  position: relative;
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.timeline article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 850;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.materials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.materials-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--graphite);
  font-weight: 750;
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-grid article {
  min-height: 208px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--blue-deep);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 39, 0.82), rgba(7, 22, 39, 0.52) 58%, rgba(7, 22, 39, 0.16)),
    linear-gradient(0deg, rgba(7, 22, 39, 0.42), rgba(7, 22, 39, 0.08));
}

.final-inner {
  position: relative;
  max-width: 860px;
  padding: 76px 0;
}

.final-section h2 {
  color: #fff;
}

.final-section p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.request-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(220, 239, 235, 0.56));
}

.request-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.request-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 59, 103, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  font-weight: 800;
}

.contact-actions svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.form-shell {
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.form-tabs button {
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--graphite);
  font-weight: 800;
  line-height: 1.18;
}

.form-tabs button.active {
  border-color: rgba(18, 59, 103, 0.5);
  background: var(--blue-deep);
  color: #fff;
}

.lead-form {
  display: none;
}

.lead-form.active {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea,
select {
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(18, 59, 103, 0.72);
  box-shadow: 0 0 0 3px rgba(18, 59, 103, 0.11);
}

.privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

.privacy + input[type="hidden"] + .privacy {
  margin-top: -4px;
}

.privacy input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 750;
}

.form-status.is-error {
  color: var(--error);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4b875, var(--gold));
  color: #101926;
  box-shadow: 0 16px 36px rgba(16, 31, 48, 0.2);
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.cta-visible .floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  padding: 36px 0;
  background: var(--blue-deep);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1160px) {
  .main-nav {
    gap: 11px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    font-size: 1rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    min-height: 44px;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:last-of-type {
    border-bottom: 0;
  }

  .main-nav .nav-cta {
    margin-top: 10px;
  }

  .header-contacts {
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    white-space: normal;
  }

  .main-nav .header-contacts a {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    font-size: 1rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav .nav-cta {
    margin-top: 10px;
  }

  .hero-inner,
  .two-column,
  .split-layout,
  .split-layout.reverse,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding: 46px 0 56px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-lead,
  .request-copy {
    position: static;
  }

  .formula,
  .ecosystem-grid,
  .audience-grid,
  .model-grid,
  .product-grid,
  .materials-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-year {
    font-size: 0.74rem;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .hero-text,
  .lead,
  .final-section p {
    font-size: 1rem;
  }

  .hero-text {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .mobile-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-benefits span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    white-space: normal;
  }

  .section {
    padding: 66px 0;
  }

  .point-grid,
  .formula,
  .ecosystem-grid,
  .audience-grid,
  .model-grid,
  .value-grid,
  .value-grid.compact,
  .product-grid,
  .format-grid,
  .materials-grid,
  .benefit-list,
  .check-list.columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .status-board,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card,
  .media-card.tall,
  .media-card.wide {
    min-height: 340px;
  }

  .form-tabs {
    grid-template-columns: 1fr;
  }

  .final-section {
    min-height: 0;
  }

  .final-inner {
    padding: 66px 0;
  }

  .footer-inner {
    display: grid;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }

  .hero-panel {
    padding: 14px;
  }

  .region-map {
    min-height: 178px;
  }

  .status-board,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 0;
  }

  .form-shell {
    padding: 14px;
  }
}
