:root {
  color-scheme: dark;
  --bg: #020b08;
  --bg-soft: #061511;
  --surface: #0a1210;
  --surface-strong: #111d19;
  --surface-muted: #15231f;
  --text: #f4fbf8;
  --muted: #a7bbb2;
  --muted-strong: #d3e1db;
  --accent: #00ad63;
  --accent-strong: #3ee98d;
  --accent-soft: rgba(0, 173, 99, 0.14);
  --steel: #8fa39a;
  --gold: #f2c15c;
  --line: rgba(191, 232, 211, 0.16);
  --line-strong: rgba(102, 238, 169, 0.42);
  --warning: #f5c46b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max-width: 1240px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(62, 233, 141, 0.25);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--accent);
  color: #00110a;
  font-weight: 800;
  padding: 0.65rem 0.85rem;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(2, 11, 8, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(2, 11, 8, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--text);
  font-weight: 800;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 233, 141, 0.24);
  object-fit: cover;
  object-position: 50% 20%;
  background: #020b08;
}

.brand__name {
  font-size: 1.12rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.58rem 0.72rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.site-nav a.nav-cta {
  margin-left: 0.45rem;
  background: var(--accent);
  color: #00110a;
}

.site-nav a.nav-cta:hover {
  background: var(--accent-strong);
  color: #00110a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(0, 173, 99, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, transparent 0 31px, rgba(153, 255, 205, 0.14) 32px),
    linear-gradient(transparent 0 31px, rgba(153, 255, 205, 0.14) 32px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 5.2rem 0 3.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border: 1px solid rgba(62, 233, 141, 0.28);
  border-radius: 999px;
  background: rgba(0, 173, 99, 0.1);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 0.42rem 0.72rem;
}

.eyebrow::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 173, 99, 0.12);
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 1.1rem 0 1rem;
  font-size: 3.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  hyphens: manual;
}

.hero__lead,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  padding: 0.82rem 1rem;
}

.button--primary {
  background: var(--accent);
  color: #00110a;
  box-shadow: 0 16px 40px rgba(0, 173, 99, 0.22);
}

.button--primary:hover {
  background: var(--accent-strong);
  color: #00110a;
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 0.66rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
  width: 100%;
}

.decision-panel {
  border: 1px solid rgba(62, 233, 141, 0.26);
  border-radius: var(--radius);
  background: rgba(3, 15, 11, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.decision-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.decision-panel__logo {
  width: 104px;
  height: 104px;
  border-radius: var(--radius);
  object-fit: contain;
  border: 1px solid rgba(62, 233, 141, 0.24);
  background: #020b08;
}

.decision-panel__label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-panel__top strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.02rem;
}

.decision-panel__status {
  border-radius: 999px;
  background: rgba(0, 173, 99, 0.14);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.38rem 0.6rem;
  white-space: nowrap;
}

.decision-flow {
  display: grid;
  gap: 0;
  padding: 0.35rem 1rem 1rem;
}

.decision-step {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.8rem;
  align-items: start;
  border-bottom: 1px solid rgba(191, 232, 211, 0.1);
  padding: 1rem 0;
}

.decision-step:last-child {
  border-bottom: 0;
}

.decision-step span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--accent-strong);
  font-weight: 900;
}

.decision-step strong {
  display: block;
  margin-bottom: 0.18rem;
}

.decision-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(0, 173, 99, 0.12), transparent 40%),
    var(--bg-soft);
}

.page-hero__inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.3rem, 8vw, 6.2rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.draft-warning {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1.4rem auto 0;
  border: 1px solid rgba(245, 196, 107, 0.4);
  border-radius: var(--radius);
  background: rgba(245, 196, 107, 0.1);
  color: #ffe4aa;
  padding: 0.9rem 1rem;
}

.page-content {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 5rem) 0;
}

.content {
  max-width: 880px;
}

.home .content {
  max-width: none;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-bottom: 0;
}

.content h2 {
  max-width: 860px;
  margin: clamp(2.4rem, 6vw, 4rem) 0 0.9rem;
  color: var(--text);
  font-size: 2.35rem;
  font-weight: 830;
  letter-spacing: 0;
  line-height: 1.12;
}

.content h3 {
  margin: 1.8rem 0 0.45rem;
  color: var(--muted-strong);
  font-size: 1.32rem;
  line-height: 1.25;
}

.content p,
.content li {
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.content p {
  max-width: 820px;
  margin: 0.8rem 0;
}

.content strong {
  color: var(--text);
}

.content ul,
.content ol {
  display: grid;
  gap: 0.42rem;
  max-width: 820px;
  margin: 1rem 0 1.4rem;
  padding-left: 1.25rem;
}

.content li::marker {
  color: var(--accent-strong);
}

.content a {
  border-bottom: 1px solid rgba(62, 233, 141, 0.45);
}

.content hr {
  height: 1px;
  border: 0;
  background: var(--line);
  margin: 2rem 0;
}

.content blockquote {
  margin: 1.6rem 0;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem 1.2rem;
}

.table-wrap {
  max-width: 100%;
  margin: 1.4rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 18, 16, 0.72);
}

.content table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.content th,
.content td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.content th {
  background: rgba(0, 173, 99, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content td {
  color: var(--muted-strong);
}

.content tbody tr:last-child td {
  border-bottom: 0;
}

.home .content h2 {
  padding-top: 0.2rem;
}

.home .content h2 + p,
.home .content h2 + p + p {
  font-size: 1.08rem;
}

.home .content h3 {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.hero {
  min-height: 0;
  background:
    linear-gradient(115deg, rgba(0, 173, 99, 0.2), rgba(0, 0, 0, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, #020b08, #06100d 54%, #020806);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 span {
  display: block;
}

.hero__lead {
  max-width: 690px;
  color: #dcebe5;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 660px;
  margin-top: 1.45rem;
}

.hero__metrics div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.8rem;
}

.hero__metrics span {
  display: block;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__metrics strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.decision-panel {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 36%),
    rgba(5, 17, 13, 0.94);
  width: 100%;
}

.decision-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0 23px, rgba(62, 233, 141, 0.08) 24px),
    linear-gradient(transparent 0 23px, rgba(62, 233, 141, 0.08) 24px);
  background-size: 24px 24px;
  opacity: 0.32;
  pointer-events: none;
}

.decision-panel > * {
  position: relative;
}

.decision-panel__top {
  padding: 1.15rem;
}

.decision-panel__status {
  background: rgba(242, 193, 92, 0.14);
  color: #ffd982;
}

.decision-flow {
  padding: 0.55rem 1.15rem 1.2rem;
}

.decision-step {
  border-color: rgba(191, 232, 211, 0.13);
  padding: 1.05rem 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 173, 99, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--bg-soft);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, 0.045) 48px),
    linear-gradient(transparent 0 47px, rgba(255, 255, 255, 0.035) 48px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: 0.5;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
}

.page-hero h1 {
  font-size: 3.55rem;
  line-height: 1.02;
}

.page-content {
  padding: 5.2rem 0;
}

.content {
  max-width: none;
}

.content p,
.content li {
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.intro-panel {
  max-width: 900px;
  margin-bottom: 3.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.35rem;
}

.intro-panel--wide {
  max-width: 980px;
}

.intro-panel p {
  font-size: 1.15rem;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.43fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  padding: 3.4rem 0;
}

.content-section--first {
  padding-top: 0;
  border-top: 0;
}

.content-section > h2 {
  position: sticky;
  top: 96px;
  align-self: start;
  max-width: 360px;
  margin: 0;
}

.content-section__main {
  min-width: 0;
}

.content-section__body > *:first-child,
.info-card > *:first-child,
.offer-card > *:first-child,
.faq-card > *:first-child,
.team-card > *:first-child,
.contact-card > *:first-child,
.legal-panel > *:first-child {
  margin-top: 0;
}

.content-section__body > *:last-child,
.info-card > *:last-child,
.offer-card > *:last-child,
.faq-card > *:last-child,
.team-card > *:last-child,
.contact-card > *:last-child,
.legal-panel > *:last-child {
  margin-bottom: 0;
}

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

.info-card,
.offer-card,
.faq-card,
.team-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), transparent 44%),
    rgba(10, 18, 16, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 1.35rem;
}

.info-card::before,
.offer-card::before,
.faq-card::before,
.team-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid rgba(62, 233, 141, 0.24);
  pointer-events: none;
}

.info-card h3,
.offer-card h2,
.faq-card h2,
.team-card h2,
.contact-card h2 {
  border-top: 0;
  padding-top: 0;
  margin: 0.45rem 0 0.65rem;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.18;
}

.offer-card h2,
.faq-card h2,
.team-card h2,
.contact-card h2 {
  font-size: 1.55rem;
}

.info-card__index,
.offer-card__number,
.faq-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border-radius: 999px;
  background: rgba(0, 173, 99, 0.12);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.36rem 0.58rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.offer-card {
  min-height: 100%;
  padding: 1.45rem;
}

.offer-card ul,
.offer-card ol {
  margin-bottom: 0;
}

.option-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.option-item {
  border-left: 2px solid rgba(62, 233, 141, 0.55);
  padding-left: 0.9rem;
}

.option-item h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 1.05rem;
}

.option-item p {
  margin: 0.35rem 0;
}

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

.faq-card h2 {
  font-size: 1.28rem;
}

.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-card--wide,
.contact-card--wide {
  grid-column: 1 / -1;
}

.team-card h2,
.contact-card h2 {
  margin-top: 0;
}

.team-card p:first-of-type,
.contact-card p:first-of-type {
  color: var(--steel);
}

.legal-panel {
  max-width: 900px;
  border: 1px solid rgba(245, 196, 107, 0.24);
  border-radius: var(--radius);
  background: rgba(10, 18, 16, 0.72);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 5rem;
  border: 1px solid rgba(62, 233, 141, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(0, 173, 99, 0.18), rgba(255, 255, 255, 0.04) 48%, rgba(242, 193, 92, 0.08)),
    #08130f;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.cta-band span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0.3rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.12;
}

.cta-band p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #010805;
}

.site-footer__inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 3rem 0 1.4rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 620px;
  margin-bottom: 2.4rem;
}

.site-footer__logo {
  width: 86px;
  height: 86px;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 233, 141, 0.24);
  object-fit: contain;
}

.site-footer__brand strong {
  display: block;
  font-size: 1.16rem;
}

.site-footer__brand p {
  margin: 0.18rem 0 0;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: grid;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 11, 8, 0.98);
    padding: 1rem;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .site-nav a.nav-cta {
    margin-left: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 4.2rem 0 3.2rem;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 3.55rem;
  }

  .hero__visual {
    display: none;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .content-section > h2 {
    position: static;
    max-width: 760px;
  }

  .offer-grid,
  .faq-list,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand__name {
    font-size: 1rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.95rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 3.2rem 0 2.8rem;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero__signals li,
  .hero__metrics strong {
    font-size: 0.82rem;
  }

  .hero__signals {
    display: none;
  }

  .hero__metrics div {
    padding: 0.7rem 0.6rem;
  }

  .decision-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .decision-panel__logo {
    width: 86px;
    height: 86px;
  }

  .decision-step {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 3.4rem 0;
  }

  .content h2,
  .cta-band h2 {
    font-size: 1.7rem;
  }

  .offer-card,
  .faq-card,
  .team-card,
  .contact-card,
  .info-card {
    padding: 1.1rem;
  }

  .site-footer__brand {
    align-items: flex-start;
  }
}

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