:root {
  --bg: #f4f7fa;
  --bg-soft: #e8eef4;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --ink: #172033;
  --muted: #607184;
  --line: #d8e1ea;
  --line-strong: #bdcad7;
  --blue: #123b67;
  --blue-strong: #0b2745;
  --blue-deep: #071a30;
  --graphite: #2d333b;
  --silver: #eef2f5;
  --gold: #b99350;
  --gold-soft: #f2e5ca;
  --teal: #2f756d;
  --green: #1f7a58;
  --red: #9d3b36;
  --shadow: 0 18px 50px rgba(16, 34, 54, 0.12);
  --shadow-strong: 0 26px 70px rgba(10, 34, 58, 0.2);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(219, 232, 243, 0.7), rgba(244, 247, 250, 0.74) 42%, rgba(242, 229, 202, 0.42)),
    linear-gradient(180deg, #f4f7fa 0%, #ffffff 58%, #edf3f7 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;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: 3.15rem;
  line-height: 1;
  font-weight: 870;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 850;
}

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

ul {
  margin: 0;
  padding-left: 19px;
}

li + li {
  margin-top: 7px;
}

.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;
  border-radius: var(--radius);
  background: var(--blue-strong);
  color: #fff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(244, 247, 250, 0.68);
  backdrop-filter: blur(20px) saturate(140%);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

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

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

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

.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-strong);
  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;
  color: var(--graphite);
  font-size: 0.86rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  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.72);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(18, 59, 103, 0.08);
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(18, 59, 103, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  color: var(--blue);
  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.86);
  box-shadow: var(--shadow);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-strong);
  transition: opacity 0.2s ease, transform 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;
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 19, 36, 0.86) 0%, rgba(10, 36, 63, 0.72) 48%, rgba(10, 36, 63, 0.26) 82%),
    linear-gradient(0deg, rgba(5, 17, 30, 0.58), rgba(5, 17, 30, 0.08) 48%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: auto;
  padding: 48px 0 30px;
}

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

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

.hero .eyebrow {
  color: #f4d9a0;
}

.hero-subtitle {
  max-width: 860px;
  margin-bottom: 18px;
  color: #f3f8fc;
  font-size: 1.16rem;
  font-weight: 750;
}

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

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

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

.center-action {
  justify-content: center;
}

.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 {
  border-color: rgba(255, 255, 255, 0.46);
  background: linear-gradient(135deg, #d8bb7c, var(--gold));
  color: #111923;
  box-shadow: 0 14px 30px rgba(185, 147, 80, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-strong);
  backdrop-filter: blur(16px);
}

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

.hero-proof article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 42, 73, 0.74), rgba(255, 255, 255, 0.12));
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

.hero-proof svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: #f4d9a0;
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 90px 0;
}

.section:nth-of-type(odd):not(.value-section):not(.request-section) {
  background: rgba(255, 255, 255, 0.48);
}

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

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

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

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

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

.split-layout.reverse > :first-child {
  order: 2;
}

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

.insight-grid,
.value-grid,
.audience-grid,
.proof-grid,
.nomination-grid,
.club-grid,
.pricing-grid,
.timeline,
.media-board,
.mini-list,
.profile-blocks {
  display: grid;
  gap: 12px;
}

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

.insight-grid article,
.value-grid article,
.audience-grid article,
.proof-grid article,
.nomination-grid article,
.club-grid span,
.media-board span,
.mini-list span,
.pricing-grid article,
.timeline article,
.catalog-visual,
.profile-preview,
.criteria-table article,
.faq-list details,
.form-card,
.contact-panel,
.image-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 213, 226, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(135%);
}

.insight-grid article {
  min-height: 132px;
  padding: 22px;
  color: var(--graphite);
  font-weight: 720;
}

.section.value-section {
  background:
    linear-gradient(135deg, rgba(7, 26, 48, 0.98), rgba(18, 59, 103, 0.94) 56%, rgba(47, 117, 109, 0.92));
  color: #fff;
}

.value-section h2,
.value-section h3 {
  color: #fff;
}

.value-section .lead {
  color: rgba(255, 255, 255, 0.94);
}

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

.value-grid article {
  min-height: 152px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 42px rgba(0, 0, 0, 0.14);
}

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

.value-grid strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.02rem;
}

.value-grid span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.48;
}

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

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

.audience-grid p,
.proof-grid span,
.pricing-grid li,
.timeline p,
.expert-card p,
.profile-head p,
.criteria-table li {
  color: var(--muted);
  font-size: 0.94rem;
}

.image-feature {
  margin: 0;
}

.image-feature img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.mini-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0;
}

.mini-list span,
.media-board span,
.club-grid span {
  padding: 15px 16px;
  color: var(--graphite);
  font-weight: 720;
}

.note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(242, 229, 202, 0.48);
  color: var(--graphite);
  font-size: 0.95rem;
}

.note.centered {
  max-width: 760px;
  margin: 24px auto 0;
}

.catalog-visual {
  padding: 18px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 6px;
  background: var(--blue-strong);
  color: #fff;
}

.catalog-toolbar span {
  font-weight: 850;
}

.catalog-toolbar strong {
  color: #f4d9a0;
  font-size: 0.84rem;
}

.expert-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.expert-card + .expert-card {
  margin-top: 10px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 850;
}

.avatar.gold {
  background: var(--gold);
  color: #111923;
}

.avatar.slate {
  background: var(--graphite);
}

.avatar.large {
  width: 72px;
  height: 72px;
  font-size: 1.12rem;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #705324;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.expert-card h3,
.profile-head h3 {
  margin-bottom: 4px;
}

.expert-card p,
.profile-head p {
  margin-bottom: 0;
}

.profile-preview {
  padding: 24px;
}

.profile-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.profile-metrics span {
  min-height: 78px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--silver);
  color: var(--muted);
}

.profile-metrics strong {
  display: block;
  color: var(--blue-strong);
  font-size: 1.5rem;
}

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

.profile-blocks span {
  min-height: 64px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--graphite);
  font-weight: 720;
}

.media-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 0;
}

.media-section .btn {
  margin-top: 24px;
}

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

.proof-grid article {
  min-height: 138px;
  padding: 20px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-strong);
}

.nomination-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.nomination-grid article {
  min-height: 82px;
  padding: 17px;
  color: var(--blue-strong);
  font-weight: 820;
}

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

.status-path article {
  position: relative;
  min-height: 192px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.status-path article::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.status-path article:last-child::after {
  display: none;
}

.status-path span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blue-strong);
  color: #fff;
  font-weight: 850;
}

.status-path p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.criteria-table article {
  padding: 24px;
}

.criteria-table h3 {
  color: var(--blue-strong);
}

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

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

.pricing-grid article {
  display: flex;
  min-height: 378px;
  padding: 22px;
  flex-direction: column;
}

.pricing-grid h3 {
  min-height: 54px;
  color: var(--blue-strong);
}

.pricing-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-strong);
  font-size: 1.12rem;
}

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

.timeline article {
  min-height: 178px;
  padding: 20px;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--blue-strong);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.4rem;
}

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

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

.section.request-section {
  background-color: var(--blue-strong);
  background-image: linear-gradient(135deg, rgba(7, 26, 48, 0.98), rgba(18, 59, 103, 0.94) 58%, rgba(47, 117, 109, 0.9));
  color: #fff;
}

.request-copy {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 19, 36, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.16);
}

.request-section .eyebrow {
  color: #f4d9a0;
}

.request-section h2 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.request-section .lead {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 650;
}

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

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 750;
}

.contact-panel svg {
  width: 19px;
  height: 19px;
  color: #f4d9a0;
}

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

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--silver);
}

.tab-button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 830;
}

.tab-button.active {
  background: #fff;
  color: var(--blue-strong);
  box-shadow: 0 8px 18px rgba(16, 34, 54, 0.08);
}

.lead-form {
  display: none;
}

.lead-form.active {
  display: block;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 760;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
}

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

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

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

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

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 720;
}

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

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  max-width: calc(100vw - 44px);
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d8bb7c, var(--gold));
  color: #111923;
  box-shadow: 0 16px 34px rgba(16, 34, 54, 0.2);
  font-weight: 870;
  transform: translateY(92px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.floating-cta svg {
  width: 18px;
  height: 18px;
}

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

.site-footer {
  padding: 34px 0;
  background: #101b28;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #f4d9a0;
  font-weight: 760;
}

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

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

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .two-column,
  .split-layout,
  .request-layout {
    gap: 38px;
  }

  .hero-proof,
  .value-grid,
  .audience-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .status-path article::after {
    display: none;
  }
}

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

  .main-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    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: 920px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    min-width: auto;
  }

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto;
    transition: none;
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

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

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

  .split-layout.reverse > :first-child {
    order: 0;
  }

  .section-lead {
    position: static;
  }

  .criteria-table,
  .proof-grid,
  .nomination-grid,
  .club-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-feature img {
    height: 330px;
  }
}

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

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

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

  h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 1.82rem;
  }

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

  .hero-inner {
    min-height: auto;
    gap: 16px;
    padding: 30px 0 24px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .hero-subtitle {
    margin-bottom: 0;
    line-height: 1.38;
  }

  .hero-text {
    display: none;
  }

  .hero-actions,
  .center-action {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero-proof,
  .insight-grid,
  .value-grid,
  .audience-grid,
  .mini-list,
  .media-board,
  .profile-blocks,
  .profile-metrics,
  .status-path,
  .pricing-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof article {
    min-height: 82px;
    padding: 12px;
  }

  .hero-proof svg {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
  }

  .hero-proof strong {
    margin-bottom: 0;
    font-size: 0.88rem;
  }

  .hero-proof span {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .image-feature img {
    height: 250px;
  }

  .expert-card,
  .profile-head {
    grid-template-columns: 1fr;
  }

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

  .contact-panel a {
    overflow-wrap: anywhere;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
