:root {
  --green-950: #0b3b31;
  --green-850: #12513f;
  --green-700: #1c7559;
  --gold: #d4a73b;
  --gold-soft: #f4df9d;
  --ink: #17211d;
  --muted: #65736d;
  --paper: #fffdf7;
  --mist: #eef5f1;
  --line: #dce7df;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.floating-register {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px 9px 10px;
  color: var(--white);
  background: rgba(8, 40, 32, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.floating-register__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
}

.floating-register__icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--green-950);
  border-right: 3px solid var(--green-950);
  transform: translateX(-2px) rotate(45deg);
}

.floating-register span:last-child {
  font-size: 0.84rem;
  font-weight: 900;
}

.floating-register:hover {
  background: rgba(11, 59, 49, 0.94);
}

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

img,
object {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -3px;
  color: currentColor;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  color: #16361f;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-950);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 88px) 80px;
  color: var(--white);
  overflow: hidden;
}

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

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

.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 29, 24, 0.9) 0%, rgba(5, 29, 24, 0.72) 38%, rgba(5, 29, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 29, 24, 0.78), rgba(5, 29, 24, 0.05));
}

.hero-content {
  position: relative;
  max-width: 710px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--green-700);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 9vw, 7.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero p {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 42px;
  width: min(360px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(10, 55, 45, 0.72);
  backdrop-filter: blur(14px);
}

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

.hero-card a {
  margin: 6px 0;
  color: var(--gold-soft);
  font-size: 1.45rem;
  font-weight: 900;
}

.info-band,
.split-section,
.video-section,
.fees,
.total-section,
.brochure,
.advantages,
.contact {
  padding: 86px clamp(20px, 6vw, 88px);
}

.info-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  color: var(--white);
  background: var(--green-950) url("../assets/pattern.svg");
}

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

.timeline article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline span,
.timeline strong {
  display: block;
}

.timeline span {
  color: var(--gold-soft);
  font-weight: 900;
}

.timeline strong {
  margin-top: 8px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.section-copy p,
.video-copy p,
.brochure p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.test-grid,
.fee-grid,
.advantage-grid {
  display: grid;
  gap: 18px;
}

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

.test-grid article,
.fee-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 70, 54, 0.08);
}

.test-grid article {
  padding: 32px;
}

.video-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(212, 167, 59, 0.12), transparent 28%),
    radial-gradient(circle at 82% 82%, rgba(28, 117, 89, 0.13), transparent 30%),
    linear-gradient(135deg, #eef7f2 0%, #fbfdfb 100%);
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 360px;
  height: 360px;
  border: 44px solid rgba(11, 59, 49, 0.05);
  border-radius: 50%;
}

.video-copy {
  position: relative;
  z-index: 1;
}

.video-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.98;
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.profile-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: var(--green-950);
  border: 1px solid rgba(28, 117, 89, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 850;
}

.profile-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(11, 59, 49, 0.17);
  isolation: isolate;
}

.profile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 40, 32, 0.02), rgba(8, 40, 32, 0.44)),
    linear-gradient(90deg, rgba(8, 40, 32, 0.26), transparent 55%);
}

.profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.01);
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--green-950);
}

.profile-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(8, 40, 32, 0.66);
  backdrop-filter: blur(14px);
}

.profile-visual figcaption strong,
.profile-visual figcaption span {
  display: block;
}

.profile-visual figcaption strong {
  font-size: 1.05rem;
}

.profile-visual figcaption span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.fees {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.fee-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.fee-card.featured {
  color: var(--white);
  background: var(--green-850);
  border-color: var(--green-850);
}

.fee-card ul {
  display: grid;
  gap: 12px;
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.fee-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(101, 115, 109, 0.18);
}

.fee-card.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.fee-card li span {
  color: var(--muted);
}

.fee-card.featured li span {
  color: rgba(255, 255, 255, 0.78);
}

.fee-card li strong {
  white-space: nowrap;
}

.fee-card b {
  margin-top: auto;
  color: var(--green-950);
  font-size: 1.05rem;
}

.fee-card.featured b {
  color: var(--gold-soft);
}

.total-section {
  margin-top: 24px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 14px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(7, 33, 27, 0.14);
}

.fees .total-section .section-heading {
  margin-bottom: 22px;
}

.fees .total-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.fees .total-section .section-kicker {
  color: var(--gold-soft);
}

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

.total-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.total-table strong {
  color: var(--gold-soft);
  white-space: nowrap;
}

.brochure {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 167, 59, 0.14), transparent 28%),
    radial-gradient(circle at 90% 86%, rgba(28, 117, 89, 0.12), transparent 26%),
    linear-gradient(135deg, #fffdf7 0%, #f4faf6 100%);
  overflow: hidden;
}

.brochure::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 18%;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(28, 117, 89, 0.06);
  border-radius: 50%;
}

.brochure-preview {
  position: relative;
  width: min(520px, 100%);
  justify-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 90px rgba(11, 59, 49, 0.14);
  backdrop-filter: blur(16px);
}

.brochure-preview::after {
  content: "";
  position: absolute;
  inset: 52px -18px auto auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(212, 167, 59, 0.28);
}

.brochure-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(8, 40, 32, 0.2);
}

.brochure-tag {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 66px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white);
  border-radius: 0 8px 8px 0;
  background: var(--green-950);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 40, 32, 0.24);
}

.brochure-copy {
  position: relative;
  max-width: 820px;
}

.brochure-copy h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.3vw, 5.2rem);
  line-height: 0.96;
}

.brochure-copy p {
  max-width: 720px;
}

.brochure-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.brochure-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: var(--green-950);
  border: 1px solid rgba(28, 117, 89, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.outline-dark {
  color: var(--green-950);
  border: 1px solid rgba(11, 59, 49, 0.22);
  background: rgba(255, 255, 255, 0.68);
}

.button.outline-dark:hover,
.brochure-highlights span:hover {
  border-color: rgba(28, 117, 89, 0.36);
  background: rgba(255, 255, 255, 0.92);
}

.advantages {
  position: relative;
  padding: 104px clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(rgba(8, 18, 15, 0.72), rgba(8, 18, 15, 0.78)),
    url("../assets/advantages-activities.png") center / cover fixed;
  overflow: hidden;
}

.advantages .section-heading {
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
}

.advantages h2 {
  margin-bottom: 46px;
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin-inline: auto;
}

.advantage-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  min-height: 142px;
  padding: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(87, 126, 111, 0.72);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #4ee01c;
}

.advantage-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-grid h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.18;
}

.advantage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.25;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 167, 59, 0.16), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(28, 117, 89, 0.18), transparent 28%),
    linear-gradient(135deg, #eef7f2 0%, #f9fbf7 52%, #e8f0ec 100%);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 26px;
  pointer-events: none;
  border: 1px solid rgba(11, 59, 49, 0.06);
  border-radius: 18px;
}

.contact-copy {
  position: relative;
  max-width: 680px;
}

.contact-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.contact-copy p {
  max-width: 650px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-actions a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(11, 59, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(18, 81, 63, 0.08);
  backdrop-filter: blur(10px);
}

.contact-actions span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  color: var(--green-950);
  font-size: 1.05rem;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(11, 59, 49, 0.16);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form label:nth-child(4) {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  background: rgba(251, 253, 251, 0.86);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(28, 117, 89, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(28, 117, 89, 0.12);
}

textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(212, 167, 59, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(212, 167, 59, 0.32);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(18px, 3vw, 34px);
  padding: 38px clamp(20px, 6vw, 88px) 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, #082820 0%, #061f19 100%);
}

.footer-brand {
  max-width: 430px;
}

.footer-brand img {
  margin-bottom: 12px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

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

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer > div:not(.footer-legal) a:hover {
  color: var(--gold-soft);
}

.subscribe {
  display: flex;
  gap: 6px;
}

.subscribe input {
  min-width: 0;
  min-height: 40px;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.subscribe button {
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: #173a23;
  font-size: 0.86rem;
  font-weight: 900;
  background: var(--gold);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 15%, rgba(212, 167, 59, 0.18), transparent 28%),
    linear-gradient(135deg, #eef7f2, #fffdf7);
}

.legal-document {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-document a {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-700);
  font-weight: 900;
}

.legal-document h1 {
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.98;
}

.legal-document p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1120px) {
  .fee-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.8fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

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

  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    color: var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 860px;
    align-items: start;
  }

  .hero-card {
    left: 20px;
    right: 20px;
  }

  .info-band,
  .split-section,
  .video-section,
  .brochure,
  .contact {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 360px;
  }

  .profile-visual img {
    min-height: 360px;
  }

  .brochure-copy {
    max-width: none;
  }

  .brochure-preview {
    order: 2;
  }

  .timeline,
  .test-grid,
  .total-table {
    grid-template-columns: 1fr;
  }

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

  .contact-copy h2 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .advantages {
    background-attachment: scroll;
  }
}

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

  .hero {
    min-height: 820px;
    padding-top: 112px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .brochure {
    padding-block: 70px;
  }

  .profile-points {
    margin-top: 22px;
  }

  .profile-visual {
    min-height: 300px;
    border-radius: 12px;
  }

  .profile-visual img {
    min-height: 300px;
  }

  .play-button {
    width: 66px;
    height: 66px;
  }

  .profile-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brochure-preview {
    padding: 18px;
    border-radius: 12px;
  }

  .brochure-preview::after {
    width: 54px;
    height: 54px;
    right: -10px;
  }

  .brochure-tag {
    bottom: 44px;
  }

  .brochure-actions .button {
    width: 100%;
  }

  .fee-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 32px 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .advantages {
    padding-block: 76px;
  }

  .advantage-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 20px;
  }

  .advantage-icon {
    width: 42px;
    height: 42px;
  }

  .advantage-icon svg {
    width: 38px;
    height: 38px;
  }

  .contact::before {
    inset: 14px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-radius: 10px;
  }

  .total-table div,
  .fee-card li,
  .subscribe,
  .footer-legal {
    flex-direction: column;
  }

  .footer-legal {
    align-items: flex-start;
  }
}
