:root {
  --eco: #16824f;
  --eco-dark: #0d3b2a;
  --eco-soft: #e8f6ee;
  --ink: #17211d;
  --muted: #64726c;
  --line: rgba(23, 33, 29, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 59, 42, 0.16);
  --mobile-shadow: 0 8px 24px rgba(13, 59, 42, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--eco);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #ffffff 0, #e8f6ee 70%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 96px;
  height: 96px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(13, 59, 42, 0.1);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.site-header.scrolled .navbar-brand,
.site-header.scrolled .nav-link,
.site-header.scrolled .navbar-toggler {
  color: var(--ink);
}

.navbar-brand img {
  border-radius: 6px;
  object-fit: cover;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link:focus {
  color: var(--eco);
}

.nav-cta {
  padding: 9px 16px !important;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header.scrolled .nav-cta {
  background: var(--eco);
  color: var(--white);
}

.navbar-toggler {
  border: 0;
  color: var(--white);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.site-header.scrolled .navbar-toggler-icon {
  filter: none;
}

.lang-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .lang-switcher {
  border-color: var(--line);
  background: rgba(22, 130, 79, 0.08);
}

.lang-btn {
  border: 0;
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 800;
}

.site-header.scrolled .lang-btn {
  color: var(--ink);
}

.lang-btn.active {
  background: var(--white);
  color: var(--eco-dark);
}

.site-header.scrolled .lang-btn.active {
  background: var(--eco);
  color: var(--white);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  z-index: -2;
}

.hero-bg {
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 15, 0.88) 0%, rgba(5, 20, 15, 0.56) 48%, rgba(5, 20, 15, 0.32) 100%),
    linear-gradient(0deg, rgba(5, 20, 15, 0.6), rgba(5, 20, 15, 0.05));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 72px;
}

.hero-glass {
  width: min(820px, 100%);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--eco);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #73e2a9;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 20px;
  animation: riseIn 0.9s ease both 0.15s;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin-bottom: 28px;
  font-weight: 700;
}

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

.btn {
  min-height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  box-shadow: none !important;
}

.btn-primary-eco {
  border: 1px solid var(--eco);
  background: var(--eco);
  color: var(--white);
}

.btn-primary-eco:hover,
.btn-primary-eco:focus {
  border-color: #1aa866;
  background: #1aa866;
  color: var(--white);
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-glass:hover,
.btn-glass:focus {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-telegram {
  border: 1px solid #2aabee;
  background: #2aabee;
  color: var(--white);
}

.btn-telegram:hover,
.btn-telegram:focus {
  background: #1d95d1;
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollCue 1.4s ease-in-out infinite;
}

.section {
  padding: clamp(78px, 9vw, 132px) 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 16px;
}

.image-stack {
  position: relative;
  min-height: 480px;
}

.image-main {
  width: 88%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 58%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(13, 59, 42, 0.22);
  border: 8px solid var(--white);
}

.eco-badge {
  position: absolute;
  top: 28px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  color: var(--eco-dark);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.eco-badge i {
  color: var(--eco);
  font-size: 1.45rem;
}

.services-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f7f3 100%);
}

.service-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(13, 59, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 130, 79, 0.38);
  box-shadow: var(--shadow);
}

.service-card i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--eco);
  background: var(--eco-soft);
  font-size: 1.55rem;
}

.service-card h3 {
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.stats-band {
  padding: 82px 0;
  background:
    linear-gradient(rgba(8, 34, 24, 0.82), rgba(8, 34, 24, 0.82)),
    url("../images/optimized/process-06-lg.webp") center / cover fixed;
  color: var(--white);
}

.stat-card {
  min-height: 176px;
  padding: 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  text-align: center;
}

.stat-card span {
  display: block;
  margin-bottom: 10px;
  color: #7ef0b5;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
}

.stat-card i {
  font-size: 2.7rem;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.gallery-section {
  background: #ffffff;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item,
.certificate-frame {
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  box-shadow: 0 16px 42px rgba(13, 59, 42, 0.12);
}

.gallery-item img,
.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-bg,
.image-main,
.image-float,
.gallery-item img,
.news-card img,
.video-card img {
  background: #e8f6ee;
}

.gallery-item:hover img,
.certificate-frame:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.certificate-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 130, 79, 0.12), transparent 36%),
    #f4faf6;
}

.certificate-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.certificate-frame {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 130, 79, 0.18);
  box-shadow: var(--shadow);
}

.certificate-frame img {
  height: auto;
  max-height: 650px;
  object-fit: contain;
  background: #fff;
}

.contact-section {
  background: #ffffff;
}

.contact-panel,
.contact-form,
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(13, 59, 42, 0.08);
}

.contact-panel {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.contact-panel a,
.contact-panel div {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #f4faf6;
  color: var(--ink);
  font-weight: 800;
}

.contact-panel i {
  color: var(--eco);
  font-size: 1.2rem;
}

.map-placeholder {
  min-height: 240px;
  margin-top: 18px;
  display: grid;
  place-items: center;
  color: var(--eco-dark);
  background:
    linear-gradient(rgba(232, 246, 238, 0.9), rgba(232, 246, 238, 0.9)),
    repeating-linear-gradient(45deg, rgba(22, 130, 79, 0.14) 0 1px, transparent 1px 22px);
  text-align: center;
  font-weight: 900;
}

.map-placeholder i {
  font-size: 2.4rem;
  color: var(--eco);
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #f8fbf9;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--eco);
  box-shadow: 0 0 0 4px rgba(22, 130, 79, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--eco);
  font-weight: 800;
}

.site-footer {
  padding: 44px 0 24px;
  background: #101815;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
}

.site-footer nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-social a,
.float-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 0.94rem;
}

.footer-bottom a {
  color: #7ef0b5;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  box-shadow: 0 14px 36px rgba(13, 59, 42, 0.26);
  transition: transform 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px);
  color: var(--white);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.telegram {
  background: #2aabee;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 14, 10, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
  }

  .navbar-brand,
  .nav-link,
  .lang-btn,
  .navbar-toggler {
    color: var(--ink);
  }

  .navbar-toggler-icon {
    filter: none;
  }

  .lang-switcher {
    border-color: var(--line);
    background: rgba(22, 130, 79, 0.08);
  }

  .lang-btn.active {
    background: var(--eco);
    color: var(--white);
  }

  .navbar-collapse {
    padding: 16px 0 4px;
  }

  .nav-cta {
    background: var(--eco);
    color: var(--white);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 20, 15, 0.78), rgba(5, 20, 15, 0.62));
  }

  .image-stack {
    min-height: auto;
  }

  .image-main,
  .image-float {
    position: static;
    width: 100%;
  }

  .image-main {
    height: 360px;
  }

  .image-float {
    margin-top: 14px;
  }

  .eco-badge {
    top: 18px;
    right: 18px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 575.98px) {
  .hero-glass {
    padding: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Modern premium hero redesign */
.site-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(23, 33, 29, 0.06);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.navbar {
  padding: 12px 0;
}

.navbar-brand,
.nav-link,
.lang-btn,
.navbar-toggler {
  color: var(--ink);
}

.navbar-brand span {
  font-size: 0.88rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
}

.nav-link {
  color: rgba(23, 33, 29, 0.72);
  font-size: 0.84rem;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--eco);
}

.nav-cta {
  background: rgba(22, 130, 79, 0.1);
  border-color: rgba(22, 130, 79, 0.16);
  color: var(--eco-dark);
}

.site-header.scrolled .nav-cta {
  background: var(--eco);
  color: var(--white);
}

.navbar-toggler-icon {
  filter: none;
}

.lang-switcher {
  border-color: rgba(22, 130, 79, 0.16);
  background: rgba(22, 130, 79, 0.08);
}

.lang-btn {
  color: var(--eco-dark);
}

.lang-btn.active {
  background: var(--eco);
  color: var(--white);
}

.hero {
  min-height: 100svh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 130, 79, 0.12), transparent 30%),
    linear-gradient(135deg, #fbfdfb 0%, #edf7f1 48%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(22, 130, 79, 0.08), transparent);
  pointer-events: none;
  z-index: -3;
}

.hero-content {
  padding-top: 136px;
  padding-bottom: 96px;
}

.hero-copy {
  max-width: 650px;
}

.hero-logo {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(13, 59, 42, 0.13);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(22, 130, 79, 0.16);
  border-radius: 999px;
  background: rgba(22, 130, 79, 0.08);
  color: var(--eco);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eco);
  box-shadow: 0 0 0 6px rgba(22, 130, 79, 0.12);
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #101815;
  font-size: clamp(2.45rem, 4.8vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(23, 33, 29, 0.68);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  font-weight: 600;
}

.hero-actions {
  gap: 10px;
  margin-bottom: 18px;
}

.hero-actions .btn {
  min-height: 46px;
  padding-inline: 18px;
}

.btn-soft-eco {
  border: 1px solid rgba(22, 130, 79, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--eco-dark);
}

.btn-soft-eco:hover,
.btn-soft-eco:focus {
  border-color: rgba(22, 130, 79, 0.28);
  background: var(--eco-soft);
  color: var(--eco-dark);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 130, 79, 0.14);
  color: rgba(16, 24, 21, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(13, 59, 42, 0.07);
}

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eco);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-stats div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 46px rgba(13, 59, 42, 0.08);
  animation: floatUp 0.9s ease both;
}

.hero-stats div:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-stats div:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--eco-dark);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}

.hero-stats span {
  display: block;
  color: rgba(23, 33, 29, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-media {
  position: relative;
  min-height: min(680px, calc(100svh - 190px));
  border-radius: 8px;
  overflow: hidden;
  background: var(--eco-dark);
  box-shadow: 0 34px 90px rgba(13, 59, 42, 0.2);
  isolation: isolate;
  transform: translateZ(0);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero-bg,
.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.2s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(7, 39, 27, 0.22), rgba(7, 39, 27, 0.08) 46%, rgba(7, 39, 27, 0.38)),
    linear-gradient(0deg, rgba(4, 22, 15, 0.28), transparent 52%);
}

.hero-media-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 390px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(6, 34, 24, 0.56);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-media-caption i {
  color: #8df3bc;
  font-size: 1.2rem;
}

.scroll-indicator {
  left: 50%;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 130, 79, 0.2);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(13, 59, 42, 0.12);
  backdrop-filter: blur(14px);
}

.page-hero {
  padding: 142px 0 82px;
  background:
    linear-gradient(110deg, rgba(248, 253, 250, 0.96), rgba(232, 246, 238, 0.88)),
    url("../images/optimized/process-05-lg.webp") center / cover;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #101815;
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 600;
}

.section-split {
  background: #fff;
}

.premium-card,
.mini-card,
.news-card,
.client-card,
.vacancy-card,
.doc-card,
.video-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(13, 59, 42, 0.08);
}

.premium-card {
  height: 100%;
  padding: clamp(24px, 4vw, 34px);
}

.premium-card h3,
.mini-card h3,
.news-card h3,
.vacancy-card h3,
.doc-card h3 {
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.premium-card p,
.mini-card p,
.news-card p,
.vacancy-card p,
.doc-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 22px;
}

.mini-card i,
.doc-card i,
.vacancy-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--eco);
  background: var(--eco-soft);
  font-size: 1.35rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 20px 22px;
  border-left: 3px solid var(--eco);
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 59, 42, 0.07);
}

.timeline-item strong {
  color: var(--eco-dark);
  font-weight: 900;
}

.territory-map {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 34, 24, 0.28), rgba(8, 34, 24, 0.44)),
    url("../images/optimized/process-02-lg.webp") center / cover;
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--eco);
  box-shadow: 0 0 0 9px rgba(126, 240, 181, 0.24), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.map-pin:nth-child(1) { left: 24%; top: 52%; }
.map-pin:nth-child(2) { left: 58%; top: 38%; }
.map-pin:nth-child(3) { left: 74%; top: 64%; }

.map-card {
  padding: 24px;
  height: 100%;
}

.news-grid,
.video-grid,
.clients-grid,
.docs-grid,
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.video-card,
.client-card,
.vacancy-card,
.doc-card {
  overflow: hidden;
}

.news-card img,
.video-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card div,
.video-card div,
.vacancy-card,
.doc-card {
  padding: 22px;
}

.video-card button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.client-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
}

.client-logo {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--eco-soft);
  color: var(--eco-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.pdf-preview {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f4faf6;
  border: 1px dashed rgba(22, 130, 79, 0.3);
  color: var(--eco-dark);
  text-align: center;
  font-weight: 900;
}

.map-embed {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.9);
}

.resume-form {
  margin-top: 24px;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .mini-grid,
  .news-grid,
  .video-grid,
  .clients-grid,
  .docs-grid,
  .vacancies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    padding-top: 118px;
  }
}

@media (max-width: 575.98px) {
  .mini-grid,
  .news-grid,
  .video-grid,
  .clients-grid,
  .docs-grid,
  .vacancies-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-bottom: 58px;
  }

  .territory-map,
  .map-embed {
    min-height: 330px;
  }
}

.scroll-indicator span {
  position: static;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--eco);
  border-bottom: 2px solid var(--eco);
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
  animation: scrollArrow 1.6s ease-in-out infinite;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollArrow {
  0%, 100% {
    opacity: 0.55;
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(2.25rem, 8vw, 4.2rem);
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding-top: 104px;
    padding-bottom: 76px;
  }

  .hero-logo {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badges {
    margin-bottom: 22px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media::before {
    inset: 12px;
  }

  .scroll-indicator {
    bottom: 16px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .site-header.scrolled,
  .lang-switcher,
  .hero-media-caption,
  .eco-badge,
  .stat-card,
  .scroll-indicator {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .stats-band {
    background:
      linear-gradient(rgba(8, 34, 24, 0.78), rgba(8, 34, 24, 0.78)),
      url("../images/optimized/process-06-sm.webp") center / cover no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(110deg, rgba(248, 253, 250, 0.97), rgba(232, 246, 238, 0.9)),
      url("../images/optimized/process-05-sm.webp") center / cover no-repeat;
  }

  .territory-map {
    background:
      linear-gradient(rgba(8, 34, 24, 0.3), rgba(8, 34, 24, 0.46)),
      url("../images/optimized/process-02-sm.webp") center / cover no-repeat;
  }

  .loader-mark,
  .image-main,
  .image-float,
  .eco-badge,
  .service-card,
  .stat-card,
  .gallery-item,
  .certificate-frame,
  .contact-panel,
  .contact-form,
  .map-placeholder,
  .premium-card,
  .mini-card,
  .news-card,
  .client-card,
  .vacancy-card,
  .doc-card,
  .video-card,
  .map-card,
  .hero-logo,
  .hero-badges span,
  .hero-stats div,
  .hero-media,
  .scroll-indicator,
  .floating-actions .float-btn {
    box-shadow: var(--mobile-shadow) !important;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-bg {
    transform: none !important;
    transition: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(120deg, rgba(7, 39, 27, 0.1), rgba(7, 39, 27, 0.12)),
      linear-gradient(0deg, rgba(4, 22, 15, 0.24), transparent 58%);
  }

  .service-card,
  .gallery-item img,
  .certificate-frame img,
  .float-btn,
  .reveal,
  .hero-stats div {
    transition: none !important;
    animation: none !important;
  }

  .service-card:hover,
  .gallery-item:hover img,
  .certificate-frame:hover img,
  .float-btn:hover {
    transform: none !important;
  }

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

  .section {
    content-visibility: auto;
    contain-intrinsic-size: 620px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --shadow: var(--mobile-shadow);
  }

  .loader {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 50px;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-media-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.google-map{
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.google-map iframe{
    display:block;
    width:100%;
    border:0;
}