:root {
  --navy: #0b2a4a;
  --navy-mid: #123a62;
  --navy-deep: #071f38;
  --green: #1a7a4c;
  --green-dark: #14603c;
  --green-soft: #e8f5ee;
  --gold: #1a7a4c;
  --gold-light: #1f8f58;
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(11, 42, 74, 0.08);
  --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;
}

ul,
ol {
  list-style: 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: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn--primary,
.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover,
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 1.6rem;
  font-size: 0.92rem;
}

.btn--nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Top bar + nav */
.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: #9fe0bc;
}

.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(11, 42, 74, 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;
  flex-shrink: 0;
}

.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(--green);
}

.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;
  color: var(--ink);
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--green-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 */
.iso-hero {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background:
    radial-gradient(ellipse 45% 40% at 88% 15%, rgba(201, 162, 39, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(26, 122, 76, 0.08), transparent 60%),
    linear-gradient(165deg, #eef3f8, #f8fafc 55%, #fff);
  overflow: hidden;
}

.iso-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.breadcrumb a:hover {
  color: var(--green);
}

.iso-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.iso-hero h1 span {
  color: var(--navy);
}

.iso-hero h1 em {
  font-style: normal;
  color: var(--green);
}

.iso-hero__banner {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.iso-hero__text {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.iso-hero__perks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.perk {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  line-height: 1.3;
}

.perk i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(11, 42, 74, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.perk:hover i {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--white);
}

.iso-standards {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.35rem;
}

.iso-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.iso-hero__glow {
  position: absolute;
  width: 78%;
  height: 68%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, rgba(26, 122, 76, 0.12) 45%, transparent 70%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}

.iso-hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197, 210, 224, 0.7);
  background: #e8eef4;
  box-shadow:
    0 4px 12px rgba(11, 42, 74, 0.05),
    0 20px 44px rgba(11, 42, 74, 0.12),
    0 36px 70px rgba(11, 42, 74, 0.07);
}

.iso-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.55s ease;
}

.iso-hero__figure:hover .iso-hero__img {
  
}

/* Benefits */
.benefits {
  padding-bottom: 2.25rem;
  background: var(--white);
}

.benefits__banner,
.process__banner {
  background: var(--green);
  color: var(--white);
  padding: 1.15rem 0;
  margin-bottom: 1.4rem;
}

.docs__banner {
  background: var(--navy);
  color: var(--white);
  padding: 1.15rem 0;
  margin-bottom: 1.4rem;
}

.benefits__banner h2,
.docs__banner h2,
.process__banner h2 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.benefit {
  text-align: center;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  padding: 0.5rem;
}

.benefit i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.benefit:hover i {
  transform: translateY(-4px);
  background: var(--green);
  color: var(--white);
}

.benefit h3 {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

/* Documents */
.docs {
  padding-bottom: 2.25rem;
  background: var(--bg);
}

.docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  max-width: 1080px;
  margin-inline: auto;
  width: 100%;
}

.docs-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(11, 42, 74, 0.05);
  padding-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.docs-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.9rem 1.15rem;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.docs-card--blue h3 {
  background: var(--navy);
}

.docs-card ol {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0 1.15rem;
  margin: 0;
  flex: 1;
}

.docs-card li {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

/* Process */
.process {
  padding-bottom: 2.25rem;
  background: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.process__steps li {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  position: relative;
  padding: 0.5rem 0.25rem;
}

.process__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, #b7dcc8, #dfe7ef);
}

.process__num {
  position: absolute;
  top: 0;
  right: calc(50% - 36px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  z-index: 1;
}

.process__steps i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border: 2px solid #c6e5d4;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.process__steps li:hover i {
  transform: translateY(-4px);
  background: var(--green);
  color: var(--white);
}

.process__steps h3 {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}

.process__steps p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

/* CTA */
.cta {
  padding: 0 0 1.5rem;
  background: var(--bg);
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.value-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  text-align: center;
}

.value-bar i {
  color: var(--gold);
}

.cta__box {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, #123a62);
  color: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 16px 36px rgba(11, 42, 74, 0.28);
}

.cta__text h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.cta__text p {
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: var(--white);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}

.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.trust-bar i {
  color: #7dcf9f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-bottom a {
  color: #9fe0bc;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .iso-hero__perks,
  .process__steps,
  .value-bar,
  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__steps li:not(:last-child)::after {
    display: none;
  }
}

@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;
  }

  .iso-hero__grid,
  .docs__grid {
    grid-template-columns: 1fr;
  }

  .iso-hero__visual {
    order: -1;
  }

  .iso-hero__figure {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .top-bar__contacts {
    display: none;
  }

  .benefits__grid,
  .iso-hero__perks,
  .process__steps,
  .value-bar,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .benefits__grid,
  .iso-hero__perks,
  .process__steps,
  .value-bar,
  .trust-bar {
    grid-template-columns: 1fr;
  }
}
