/* fonts */
@font-face {
  font-family: "Figtree";
  src: url("/fonts/Figtree-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/Figtree-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alfa Slab One";
  src: url("/fonts/AlfaSlabOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Conthrax";
  src: url("/fonts/Conthrax-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* root */
:root {
  --container: 1408px;
  --pad: 16px;

  --accent: #177139;
  --gray-100: #efefef;
  --text: #1b1f1c;
  --muted: #ffffffcc;
  --white: #ffffff;
  --black: #000000;

  --surface: #ffffffd9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --stroke: rgba(0, 0, 0, 0.08);

  --r-10: 10px;
  --r-14: 14px;
  --r-18: 18px;

  --font-sans:
    "Figtree", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --font-display: "Alfa Slab One", "Figtree", sans-serif;
  --font-accent: "Conthrax", "Inter", sans-serif;

  --header-h: 86px;

  --t-fast: 160ms;
  --t-base: 240ms;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --ring: 0 0 0 3px rgba(23, 113, 57, 0.22);
}

/* base */
html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #f7f7f7;
  line-height: 1.4;
}

/* utilities */
.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.header-spacer {
  height: calc(var(--header-h) + 18px);
}

:where(a, button) {
  transition:
    transform var(--t-fast) var(--ease),
    opacity var(--t-fast) var(--ease),
    background-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease);
}

:where(a, button):focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

/* shared badges */
.about__badge,
.services-badge,
.projects-badge,
.team-badge,
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 239, 239, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: fit-content;
}

.about__dot,
.services-dot,
.projects-dot,
.team-dot,
.faq-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 113, 57, 0.15);
}

.about__badge-text,
.services-badge__text,
.projects-badge__text,
.team-badge__text,
.faq-badge__text {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: rgba(27, 31, 28, 0.82);
  text-transform: uppercase;
}

/* header */
.header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

.header__inner {
  pointer-events: auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  padding: 10px 16px 10px 24px;
  border-radius: var(--r-18);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand__logo {
  width: 120px;
  height: auto;
  user-select: none;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand:active {
  transform: translateY(0);
}

.nav {
  justify-self: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: rgba(27, 31, 28, 0.86);
  padding: 10px 6px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
  opacity: 0.9;
}
.nav__link:hover {
  color: var(--text);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.header__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 14px;
  white-space: nowrap;
}
.btn__icon {
  font-family: var(--font-sans);
  font-weight: 600;
  transform: translateY(-1px);
}
.btn--full {
  width: 100%;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(23, 113, 57, 0.22);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(23, 113, 57, 0.28);
}
.btn--primary:active {
  transform: translateY(0);
  opacity: 0.95;
}

/* burger */
.burger {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
}
.burger:hover {
  transform: translateY(-1px);
}

.burger__lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: rgba(27, 31, 28, 0.8);
  border-radius: 999px;
}
.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(27, 31, 28, 0.8);
  border-radius: 999px;
  transition:
    transform var(--t-base) var(--ease),
    top var(--t-base) var(--ease),
    opacity var(--t-base) var(--ease);
}
.burger__lines::before {
  top: -6px;
}
.burger__lines::after {
  top: 6px;
}

.is-menu-open .burger__lines {
  background: transparent;
}
.is-menu-open .burger__lines::before {
  top: 0;
  transform: rotate(45deg);
}
.is-menu-open .burger__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* overlay + drawer */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 88vw);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid var(--stroke);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(110%);
  transition: transform var(--t-base) var(--ease);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 16px;
  gap: 12px;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand--small .brand__logo {
  width: 110px;
}

.drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
.drawer__close:hover {
  transform: translateY(-1px);
}

.drawer__nav {
  display: flex;
  gap: 6px;
  padding-top: 6px;
  flex-direction: column;
}
.drawer__link {
  font-weight: 600;
  font-size: 16px;
  padding: 14px 12px;
  border-radius: 14px;
  background: transparent;
}
.drawer__link:hover {
  background: var(--gray-100);
}
.drawer__cta {
  padding-top: 10px;
}

.is-menu-open .overlay {
  opacity: 1;
}
.is-menu-open .drawer {
  transform: translateX(0);
}
.is-locked {
  overflow: hidden;
}

/* hero */
.hero {
  padding: 18px 0 40px;
}

.hero-card {
  position: relative;
  border-radius: var(--r-18);
  overflow: hidden;
  min-height: 660px;
  box-shadow: var(--shadow);
  background: #dcdcdc;
}

.hero-card__media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero/hero-main.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0.02) 75%
  );
  pointer-events: none;
}

.hero-card__top {
  position: absolute;
  top: 140px;
  right: 46px;
  width: min(520px, 70%);
  display: grid;
  gap: 14px;
  z-index: 2;
}

.hero-card__note {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.hero-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-icon img {
  width: 18px;
  height: 18px;
}
.hero-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}
.hero-icon:active {
  transform: translateY(0);
  opacity: 0.95;
}

.hero-card__content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
  width: min(640px, 78%);
  padding: 30px 34px;
  border-radius: var(--r-18);
  background: rgba(23, 113, 57, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* about */
.about {
  padding: 54px 0 74px;
  background: var(--white);
}

.about__grid {
  display: flex;
  gap: 28px;
  align-items: start;
  justify-content: space-between;
}

.about__content {
  max-width: 980px;
}

.about__title {
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.25;
  color: rgba(27, 31, 28, 0.92);
}

.about__desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(27, 31, 28, 0.52);
  max-width: 760px;
}

.about-stats {
  margin-top: 28px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  position: relative;
  border-radius: 12px;
  transition:
    transform var(--t-fast) var(--ease),
    background-color var(--t-base) var(--ease);
}

.about-stat:hover {
  transform: translateY(-2px);
  background: rgba(239, 239, 239, 0.4);
}

.about-stat__value {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 26px);
  color: rgba(0, 0, 0, 0.9);
}

.about-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.12) 3px,
    transparent 3px,
    transparent 9px
  );
  opacity: 0.7;
}

/* services */
.services {
  padding: 0 0 70px;
  background: var(--white);
}

.services-box {
  background: var(--gray-100);
  border-radius: var(--r-18);
  padding: 46px 44px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.services-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.services-badge {
  background: rgba(255, 255, 255, 0.65);
}

.services-title {
  margin-top: 14px;
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.15;
  color: rgba(27, 31, 28, 0.92);
}

.services-subtitle {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(27, 31, 28, 0.55);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
  padding: 22px 22px 20px;
  min-height: 208px;
  transition:
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 113, 57, 0.15);
  background: rgba(23, 113, 57, 0.06);
}

.service-card__icon img {
  width: 18px;
  height: 18px;
}

.service-card__title {
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(27, 31, 28, 0.9);
}

.service-card__text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(27, 31, 28, 0.55);
}

/* projects */
.projects {
  padding: 54px 0 70px;
  background: var(--white);
}

.projects-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.projects-left {
  display: grid;
  gap: 14px;
}

.projects-title {
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.1;
  color: rgba(27, 31, 28, 0.92);
}

.projects-right {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.projects-desc {
  max-width: 720px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(27, 31, 28, 0.55);
}

.projects-cta {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
}

.projects-bleed {
  margin-top: 26px;
  overflow: hidden;
}

.projects-swiper {
  overflow: visible;
}

.projects-bleed .container {
  position: relative;
}

.projects-bleed .projects-swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(
    var(--pad),
    calc((100vw - var(--container)) / 2 + var(--pad))
  );
  padding-right: var(--pad);
}

.project-card {
  display: block;
  position: relative;
  border-radius: var(--r-18);
  overflow: hidden;
  height: 320px;
  background: #ddd;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transform: translateZ(0);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.project-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--t-base) var(--ease);
}

.project-card:hover .project-card__img {
  transform: scale(1.07);
}

.project-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.project-card__title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-card:hover .project-pill {
  background: rgba(23, 113, 57, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.projects-nav {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.projects-nav__btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(239, 239, 239, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(27, 31, 28, 0.85);
}

.projects-nav__btn:hover {
  transform: translateY(-2px);
  background: rgba(239, 239, 239, 0.85);
}

.projects-nav__btn:active {
  transform: translateY(0);
  opacity: 0.95;
}

.projects-nav__btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

/* reasons */
.reasons {
  padding: 0 0 70px;
  background: var(--white);
}

.reasons-box {
  background: #3b3b3b;
  border-radius: var(--r-18);
  padding: 48px 44px 44px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.reasons-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.reasons-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 113, 57, 0.14);
  border: 1px solid rgba(23, 113, 57, 0.22);
}

.reasons-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 113, 57, 0.22);
}

.reasons-badge__text {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.reasons-title {
  margin-top: 14px;
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
}

.reasons-subtitle {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.reasons-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-14);
  padding: 22px 20px 20px;
  min-height: 180px;
  transition:
    transform var(--t-fast) var(--ease),
    background-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

.reason-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(23, 113, 57, 0.22);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.reason-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reason-card__icon img {
  width: 18px;
  height: 18px;
}

.reason-card__title {
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.reason-card__text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

/* team */
.team {
  padding: 54px 0 70px;
  background: var(--white);
}

.team-top {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: start;
}

.team-left {
  display: grid;
  gap: 14px;
}

.team-title {
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1.05;
  color: rgba(27, 31, 28, 0.92);
}

.team-right {
  display: grid;
  justify-items: start;
}

.team-desc {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(27, 31, 28, 0.55);
}

.team-slider {
  margin-top: 26px;
}

.team-swiper {
  overflow: hidden;
}

.team-card {
  position: relative;
  height: 360px;
  border-radius: var(--r-18);
  overflow: hidden;
  display: block;
  background: #ddd;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
}

.team-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--t-base) var(--ease);
}

.team-card:hover .team-card__img {
  transform: scale(1.06);
}

.team-card__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  gap: 6px;
}

.team-card__name {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.team-card__role {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 12px;
}

.team-nav {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.team-nav__btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.team-nav__btn--prev {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(27, 31, 28, 0.7);
}

.team-nav__btn--next {
  background: rgba(23, 113, 57, 0.12);
  border: 1px solid rgba(23, 113, 57, 0.28);
  color: var(--accent);
  box-shadow: 0 12px 22px rgba(23, 113, 57, 0.14);
}

.team-nav__btn:hover {
  transform: translateY(-2px);
}
.team-nav__btn:active {
  transform: translateY(0);
  opacity: 0.95;
}
.team-nav__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

/* faq */
.faq {
  padding: 54px 0 70px;
  background: var(--white);
}

.faq-grid {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.faq-left {
  display: grid;
  gap: 16px;
  align-content: start;
  flex: 4;
}

.faq-title {
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1.05;
  color: rgba(27, 31, 28, 0.92);
}

.faq-media {
  margin-top: 10px;
  border-radius: var(--r-18);
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.faq-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.faq-right {
  display: grid;
  flex: 4;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--r-14);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  border-color: rgba(23, 113, 57, 0.18);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-weight: 600;
  font-size: 14px;
  color: rgba(27, 31, 28, 0.9);
}

.faq-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 239, 239, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(27, 31, 28, 0.8);
  transition:
    transform var(--t-base) var(--ease),
    background-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease);
}

.faq-ico span {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease);
}

.faq-panel__inner {
  overflow: hidden;
}

.faq-a {
  padding: 0 18px 18px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(27, 31, 28, 0.55);
}

.faq-item.is-open {
  border-color: rgba(23, 113, 57, 0.22);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item .faq-ico span::before {
  content: "+";
}

.faq-item.is-open .faq-ico {
  background: rgba(23, 113, 57, 0.12);
  color: var(--accent);
}

.faq-item.is-open .faq-ico span::before {
  content: "–";
}

/* footer */
.footer {
  padding: 0 0 26px;
  background: var(--white);
}

.footer-box {
  background: #3b3b3b;
  border-radius: var(--r-18);
  padding: 28px 28px 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.footer-cta {
  background: var(--accent);
  border-radius: var(--r-18);
  padding: 28px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer-cta__title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
}

.footer-cta__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px;
  min-width: 420px;
}

.footer-cta__field {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 3px;
}

.footer-cta__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta__icon img {
  width: 16px;
  height: 16px;
}

.footer-cta__input {
  height: 40px;
  background: transparent;
  border: 0;
  outline: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.footer-cta__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.footer-cta__btn {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: rgba(27, 31, 28, 0.9);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.footer-cta__btn:hover {
  transform: translateY(-1px);
}

.footer-cta__btn:active {
  transform: translateY(0);
  opacity: 0.95;
}

.footer-main {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-lead {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
}

.footer-sub {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-info {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.footer-contacts {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.45;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.footer-phone:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px 0 16px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal__link {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-legal__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social__link {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social__link:hover {
  transform: translateY(-2px);
  background: rgba(23, 113, 57, 0.22);
}

.footer-social__link img {
  width: 16px;
  height: 16px;
}

/* media */
@media (max-width: 870px) {
  :root {
    --header-h: 78px;
  }

  .header {
    inset: 10px 0 auto 0;
  }

  .header__inner {
    grid-template-columns: 160px 1fr auto;
    padding: 10px 12px;
  }

  .nav {
    display: none;
  }

  .header__actions .btn--primary {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-card {
    min-height: 520px;
  }

  .hero-card__top {
    top: 112px;
    right: 18px;
    width: min(520px, 84%);
  }

  .hero-card__note {
    font-size: 14px;
  }

  .hero-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 22px 20px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 44px 0 58px;
  }

  .about__grid {
    flex-direction: column;
    gap: 18px;
  }

  .about__content,
  .about__desc {
    max-width: 100%;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 14px;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  .services-box {
    padding: 34px 22px;
  }

  .services-head {
    margin-bottom: 22px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 18px 16px;
    min-height: 200px;
  }

  .projects {
    padding: 44px 0 60px;
  }

  .projects-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .projects-desc {
    max-width: 100%;
  }

  .project-card {
    height: 300px;
  }

  .projects-nav__btn {
    width: 44px;
    height: 44px;
  }

  .reasons-box {
    padding: 34px 22px 30px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .reason-card {
    padding: 18px 16px;
    min-height: 170px;
  }

  .team {
    padding: 44px 0 60px;
  }

  .team-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-desc {
    max-width: 100%;
  }

  .team-card {
    height: 340px;
  }

  .team-nav__btn {
    width: 48px;
    height: 48px;
  }

  .faq {
    padding: 44px 0 60px;
  }

  .faq-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .faq-media img {
    height: 300px;
  }

  .faq-left,
  .faq-right {
    flex: unset;
  }

  .footer-box {
    padding: 18px 18px 16px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .footer-cta__form {
    min-width: 0;
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-info {
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contacts {
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom__right {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .brand__logo {
    width: 108px;
  }

  .header__inner {
    grid-template-columns: 140px 1fr auto;
  }

  .hero-card {
    min-height: 480px;
  }

  .hero-card__top {
    width: 92%;
  }

  .hero-icons {
    gap: 8px;
  }

  .hero-icon {
    width: 38px;
    height: 38px;
  }

  .about {
    padding: 38px 0 52px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat {
    justify-items: start;
    text-align: left;
    padding: 14px 14px;
  }

  .services-box {
    padding: 28px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .project-card {
    height: 280px;
  }

  .project-card__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .reasons-box {
    padding: 28px 16px 26px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: auto;
  }

  .team-card {
    height: 320px;
  }

  .team-card__label {
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 14px 14px 12px;
  }

  .team-card__name {
    font-size: 16px;
  }

  .faq-media img {
    height: 240px;
  }

  .faq-btn {
    padding: 16px 14px;
    grid-template-columns: 1fr 38px;
  }

  .faq-a {
    padding: 0 14px 14px;
  }

  .faq-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .footer-cta__form {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 8px;
  }

  .footer-cta__btn {
    width: 100%;
    border-radius: 14px;
  }

  .footer-bottom__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
