:root {
  --navy: #0b2a4a;
  --navy-mid: #0a2f55;
  --navy-deep: #001122;
  --gold: #1a7a4c;
  --gold-bright: #1f8f58;
  --gold-soft: #e8f5ee;
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(0, 26, 51, 0.1);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn--lg { padding: 1rem 1.7rem; }
.btn--nav { padding: 0.7rem 1.15rem; font-size: 0.8rem; border-radius: 8px; flex-shrink: 0; }

.section-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.section-title span {
  width: 40px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__item,
.top-bar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar__contacts { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.top-bar__social { display: flex; gap: 0.85rem; }
.top-bar a:hover { color: var(--gold-bright); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar.scrolled { box-shadow: 0 8px 24px rgba(0, 26, 51, 0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo { display: flex; align-items: center; gap: 0.7rem; }

.logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; }
.logo__text strong { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: 0.06em; text-shadow: 0 1px 0 rgba(11, 42, 74, 0.12); }
.logo__text > span { display: inline-flex; align-items: flex-start; gap: 0.12rem; font-family: var(--display); font-size: 0.72rem; font-weight: 700; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; text-shadow: 0 1px 0 rgba(11, 42, 74, 0.08); }
.logo__tm { font-size: 0.55em; font-weight: 800; color: #e11d2e; line-height: 1; position: relative; top: -0.15em; left: 0.05em; letter-spacing: 0; font-style: normal; }

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

.nav__link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.55rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
}

.nav__link:hover,
.nav__dropdown:hover > .nav__trigger { color: var(--gold); }
.nav__link i { font-size: 0.65rem; }
.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 230px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 120;
}

.nav__dropdown-menu--cols {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: none;
}

.nav__dropdown--wide .nav__dropdown-menu {
  left: 50%;
  transform: translate(-50%, 6px);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown--wide:hover .nav__dropdown-menu,
.nav__dropdown--wide:focus-within .nav__dropdown-menu,
.nav__dropdown--wide.open .nav__dropdown-menu {
  transform: translate(-50%, 0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.86rem;
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--gold-soft);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span { width: 18px; height: 2px; background: var(--navy); }

/* Hero */
.llp-hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.llp-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: clamp(460px, 70vh, 600px);
  align-items: stretch;
}

.llp-hero__content {
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(212, 160, 23, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.llp-hero__content-inner {
  width: min(100% - 2.5rem, 560px);
  margin-left: max(1.25rem, calc((100vw - var(--container)) / 2));
  margin-right: 1.5rem;
}

.breadcrumb { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.85rem; }
.breadcrumb a:hover { color: var(--gold-bright); }

.llp-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.llp-hero h1 em { font-style: normal; color: var(--gold-bright); }

.llp-hero__tag {
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.llp-hero__text {
  opacity: 0.9;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.llp-hero__perks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.perk {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.25;
}

.perk i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
}

.llp-hero__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.llp-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 26, 51, 0.55) 0%, rgba(0, 26, 51, 0.12) 30%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.llp-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 70vh, 600px);
  object-fit: cover;
  object-position: center 40%;
}

/* Why */
.why { padding: 1.5rem 0; background: var(--bg); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0.62rem;
  row-gap: 0.35rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 26, 51, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f0f8;
  color: var(--navy-mid);
  display: grid;
  place-items: center;
  margin: 0 auto 0.85rem;
  font-size: 1.15rem;
}

.why-card h3 {
  font-family: var(--display);
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.why-card p { color: var(--muted); font-size: 0.84rem; }

/* Process */
.process { padding: 1.5rem 0; background: var(--white); }

.process__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
}

.process__step { flex: 1; text-align: center; max-width: 170px; }

.process__num {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(0, 26, 51, 0.25);
}

.process__step h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.process__step p { font-size: 0.8rem; color: var(--muted); }
.process__arrow { color: var(--gold); padding-top: 1.15rem; }

/* Requirements */
.reqs { padding: 1rem 0 3.5rem; background: var(--bg); }

.reqs__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  column-gap: 0.78rem;
  row-gap: 0.35rem;
}

.reqs-panel {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
}

.reqs-panel header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.2rem;
}

.reqs-panel ol {
  list-style: none;
  padding: 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reqs-panel__art {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
  color: var(--gold);
  font-size: 1.6rem;
}

.reqs-panel--min {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.reqs-panel--min header {
  background: var(--gold);
}

.min-req {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.15rem;
  padding: 2rem 1.5rem 2.25rem;
}

.min-req__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  flex-shrink: 0;
}

.min-req h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.55rem;
}

.min-req p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 26rem;
  margin: 0 auto;
}

/* Trust + compact CTA (no form) */
.trust-row {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 1.75rem;
}

.trust-row__inner {
  display: grid;
  gap: 1.25rem;
}

.trust-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-row__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.trust-row__grid i { color: var(--gold); }

.trust-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-cta strong {
  font-family: var(--display);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-cta p { opacity: 0.85; font-size: 0.9rem; }

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 0;
  font-size: 0.88rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a { color: var(--gold-bright); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .llp-hero__perks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .process__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem 0.75rem;
  }

  .process__arrow { display: none; }
  .process__step { flex: 0 0 calc(50% - 1rem); max-width: none; }

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

  .llp-hero__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .llp-hero__content-inner {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
  }

  .llp-hero__visual {
    min-height: 280px;
    max-height: 380px;
  }

  .llp-hero__img {
    min-height: 280px;
    max-height: 380px;
  }

  .llp-hero__visual::before {
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.35) 0%, transparent 40%);
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .btn--nav { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav__dropdown-menu,
  .nav__dropdown-menu--cols {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: none;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    padding-left: 0.75rem;
  }

  .nav__dropdown.open .nav__dropdown-menu { display: grid; }
}

@media (max-width: 700px) {
  .top-bar__contacts { display: none; }
  .why__grid,
  .trust-row__grid,
  .llp-hero__perks { grid-template-columns: 1fr 1fr; }
  .process__step { flex-basis: 100%; }
}
