:root {
  --navy: #0b2a4a;
  --navy-deep: #071f38;
  --navy-mid: #123a62;
  --green: #1a7a4c;
  --green-dark: #14603c;
  --green-soft: #e8f5ee;
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --bg-soft: #eef2f6;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(11, 42, 74, 0.08);
  --radius: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
  --nav-h: 78px;
}

*,
*::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;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  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, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn--callback {
  background: var(--green);
  color: var(--white);
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.btn--callback:hover {
  background: var(--green-dark);
}

.btn--nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  padding: 0.5rem 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.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.top-bar__social {
  display: flex;
  gap: 0.85rem;
}
.top-bar__social a:hover {
  color: #9fe0bc;
}


.top-bar__contacts a:hover {
  color: #9fe0bc;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
  overflow: visible;
}

.site-chrome,
.navbar__inner,
.nav {
  overflow: visible;
}

.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: var(--nav-h);
}

.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.2rem;
}

.nav__link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.65rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.nav__link i {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.nav__link:hover,
.nav__link.active,
.nav__dropdown:hover > .nav__trigger,
.nav__dropdown.open > .nav__trigger {
  color: var(--green);
}

.nav__dropdown:hover > .nav__trigger i,
.nav__dropdown.open > .nav__trigger i {
  transform: rotate(180deg);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--green);
}

.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: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(11, 42, 74, 0.12);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 300;
}

.nav__dropdown-menu--cols {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 0.35rem;
  max-height: none;
  overflow: visible;
}

.nav__dropdown--wide .nav__dropdown-menu {
  left: 50%;
  right: auto;
  transform: translate(-50%, 8px);
}

.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);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  white-space: normal;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.is-active {
  background: var(--green-soft);
  color: var(--green);
  padding-left: 1rem;
}

.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);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* About hero */
.about-hero {
  padding: 1.5rem 0 2rem;
  background: linear-gradient(180deg, #f3f6fa 0%, var(--bg) 70%, var(--bg) 100%);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.75rem;
  align-items: center;
}

.about-hero__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.about-hero__title span {
  color: var(--green);
}

.about-hero__subtitle {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.about-hero__intro {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.62rem;
  row-gap: 0.35rem;
}

.about-pillar {
  padding: 1.2rem 1rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 42, 74, 0.12);
}

.about-pillar__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.about-pillar h3 {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.about-pillar p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.about-hero__figure {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(11, 42, 74, 0.08),
    0 24px 50px rgba(11, 42, 74, 0.12);
  border: 1px solid rgba(197, 210, 224, 0.7);
  background: #e8eef4;
  min-height: 0;
}

.about-hero__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0;
}

.about-hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  background: rgba(11, 42, 74, 0.88);
  color: var(--white);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.about-hero__badge .logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.about-hero__badge strong {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Stats — rounded navy bar matching home */
.stats {
  background: var(--bg);
  color: var(--white);
  padding: 0.85rem 0 1.25rem;
  position: relative;
  overflow: visible;
  margin-top: 0;
  z-index: 1;
  border: none;
}

.stats::before {
  display: none;
}

.stats__bar,
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep, #071f38) 60%, #0a2540 100%) !important;
  border-radius: 20px !important;
  padding: 1.2rem 0.75rem !important;
  box-shadow: 0 14px 36px rgba(7, 31, 56, 0.22);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats__bar::before,
.stats__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(125, 207, 159, 0.06) 50%,
    transparent 100%
  );
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: left;
  padding: 0.25rem 1.1rem;
  position: relative;
  z-index: 1;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stats__item i {
  font-size: 2.15rem !important;
  color: #ffffff !important;
  width: 2.4rem;
  text-align: center;
  flex-shrink: 0;
}

.stats__item strong,
.stats__item span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #3dcc7a;
  display: inline;
  line-height: 1.15;
}

.stats__item p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.15rem;
  font-weight: 500;
}

/* Why we exist */
.about-exist {
  padding: 1.5rem 0;
  background: var(--bg);
}

.about-exist__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.25rem);
  row-gap: 1.5rem;
  align-items: center;
}

.about-exist__content {
  min-width: 0;
}

.about-exist__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.about-exist__content > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.about-exist__list {
  display: grid;
  gap: 0.85rem;
}

.about-exist__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}

.about-exist__list i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-exist__media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #e8eef4;
  box-shadow:
    0 8px 20px rgba(11, 42, 74, 0.08),
    0 24px 50px rgba(11, 42, 74, 0.12);
  border: 1px solid rgba(197, 210, 224, 0.7);
}

.about-exist__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 45%;
  border-radius: 0;
}

/* Expertise */
.about-expertise {
  padding: 1.5rem 0 2.5rem;
  background: var(--white);
}

.about-expertise__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-expertise__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0.78rem;
  row-gap: 0.35rem;
}

.about-expertise__item {
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.about-expertise__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-expertise__item:hover .about-expertise__icon {
  background: var(--green);
  transform: translateY(-3px);
}

.about-expertise__item h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.about-expertise__item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Team & Experience */
.about-team {
  padding: 1.5rem 0;
  background: #f0f4f9;
}

.about-team__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 1.55rem;
  row-gap: 1.25rem;
  align-items: stretch;
}

.about-team__block {
  background: transparent;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-team__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.about-team__title i {
  color: var(--navy);
  font-size: 1.15rem;
}

.about-team__block > p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.about-team__media {
  margin: auto 0 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #e8eef4;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.about-team__media img,
.about-team__photo,
.about-team__trophy {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  box-shadow: none;
  aspect-ratio: unset;
}

.about-team__media--trophy img {
  object-position: center center;
}

.about-team__block .about-exist__list {
  margin-bottom: 1rem;
  flex: 0 0 auto;
}

/* CTA banner */
.about-cta {
  background: var(--navy);
  color: var(--white);
  padding: 1.35rem 0;
}

.about-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 0.93rem;
  align-items: center;
}

.about-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
}

.about-cta h2 span {
  color: #7dcf9f;
}

.about-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-self: end;
  font-size: 0.92rem;
}

.about-cta__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
}

.about-cta__contacts a:hover {
  color: #9fe0bc;
}

.about-cta__contacts i {
  color: #7dcf9f;
  width: 1rem;
}

/* Map / location */
.map-section {
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(26, 122, 76, 0.08), transparent 55%),
    linear-gradient(180deg, #f3f6f9 0%, #eef3f7 100%);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.map-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.map-section__eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.55rem;
}

.map-section__info h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.map-section__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  max-width: 28rem;
}

.map-section__address i {
  color: var(--green);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.map-section__address strong {
  color: var(--navy);
  font-weight: 700;
}

.map-section__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(11, 42, 74, 0.1);
  background: var(--white);
  min-height: 320px;
}

.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 900px) {
  .map-section__grid {
    grid-template-columns: 1fr;
  }

  .map-section__frame,
  .map-section__frame iframe {
    min-height: 280px;
  }
}

/* Site footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 2.25rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.05fr 1.05fr 0.9fr 1.15fr;
  gap: 1.75rem 1.25rem;
  align-items: start;
  padding-bottom: 2.75rem;
}

.logo--footer .logo__text strong,
.logo--footer .logo__text > span {
  color: var(--white);
}

.logo--footer .logo__tm {
  color: #ff5a6a;
}

.site-footer__brand p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 22rem;
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.site-footer__social a {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
  background: var(--green);
}

.site-footer__col h3 {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.site-footer__col ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer__col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: #9fe0bc;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__contact i {
  color: #7dcf9f;
  margin-top: 0.2rem;
  width: 0.95rem;
  flex-shrink: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom nav {
  display: flex;
  gap: 1.25rem;
}

.site-footer__bottom a:hover {
  color: #9fe0bc;
}

.site-footer__bottom-inner .footer__credit {
  flex: 1 1 100%;
  text-align: center;
  margin-top: -0.25rem;
}

.site-footer__bottom-inner .footer__credit a {
  color: #9fe0bc;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__bottom-inner .footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .about-cta__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-cta__contacts {
    justify-self: start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 1000px) {
  .about-expertise__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0.4rem;
  }

  .stats__bar,
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0.5rem;
  }

  .stats__item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .btn--nav {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .navbar__inner {
    position: relative;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    gap: 0.1rem;
    display: none;
    box-shadow: 0 16px 40px rgba(11, 42, 74, 0.14);
    max-height: min(70vh, calc(100dvh - 8rem));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 250;
  }

  .nav.open {
    display: flex;
  }

  .nav__link,
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    font-size: 0.82rem;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .nav__link:focus,
  .nav__trigger:focus,
  .nav__link:focus-visible,
  .nav__trigger:focus-visible {
    outline: none;
    box-shadow: none;
    color: var(--green);
  }

  .nav__link.active::after {
    display: none;
  }

  .nav__dropdown {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav__dropdown:last-of-type {
    border-bottom: none;
  }

  /* Touch: only open via .open class — disable sticky hover menus */
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu,
  .nav__dropdown--wide:hover .nav__dropdown-menu,
  .nav__dropdown--wide:focus-within .nav__dropdown-menu {
    display: none;
    transform: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav__dropdown-menu,
  .nav__dropdown-menu--cols {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green-soft);
    padding: 0.15rem 0 0.55rem 0.85rem;
    margin: 0 0 0.35rem 0.35rem;
    display: none;
    min-width: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
    width: auto;
  }

  .nav__dropdown.open .nav__dropdown-menu,
  .nav__dropdown.open .nav__dropdown-menu--cols {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav__dropdown.open .nav__dropdown-menu:not(.nav__dropdown-menu--cols) {
    display: block;
  }

  .nav__dropdown.open > .nav__trigger {
    color: var(--green);
  }

  .nav__dropdown-menu a {
    padding: 0.55rem 0.35rem;
    white-space: normal;
    font-size: 0.9rem;
  }

  .about-hero__grid,
  .about-exist__grid,
  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-hero__figure,
  .about-hero__figure img {
    min-height: 0;
  }

  .about-hero__media {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .about-exist__media {
    justify-self: center;
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .top-bar__contacts {
    display: none;
  }

  .top-bar__inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .top-bar__item span {
    font-size: 0.75rem;
  }

  .top-bar__social {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .top-bar__social a:hover {
    color: #9fe0bc;
  }
  .logo__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

  .btn--callback {
    margin-left: auto;
  }

  .stats__bar,
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item:nth-child(2n)::after {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-expertise__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats__item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .stats__item:last-child::after {
    display: none;
  }

  .about-expertise__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
