:root {
  --military-dark: #2f3522;
  --military-deep: #3a3f2a;
  --military-green: #4b5320;
  --khaki-main: #8f9568;
  --khaki-light: #b6bb8a;
  --khaki-soft: #d2d5a6;
  --olive: #6b8e23;
  --sand: #c2b280;
  --steel: #4a4f46;
  --graphite: #2a2a2a;
  --text-dark: #1c1c1c;
  --text-light: #ffffff;
  --text-military: #e8ead1;
  --bg-light-section: #d2d5a6;
  --bg-dark-section: #3a3f2a;
  --accent-radar: #9cff00;
  --accent-scan: #7bd389;
  --gradient-military: linear-gradient(135deg, #3a3f2a, #2f3522);
  --gradient-khaki: linear-gradient(135deg, #d2d5a6, #b6bb8a);
  --gradient-olive: linear-gradient(135deg, #6b8e23, #4b5320);

  --military-dark: #2f3522;
  --military-deep: #3a3f2a;
  --military-green: #4b5320;
  --khaki-main: #8f9568;
  --khaki-light: #b6bb8a;
  --khaki-soft: #d2d5a6;
  --olive: #6b8e23;
  --sand: #c2b280;
  --steel: #4a4f46;
  --graphite: #2a2a2a;
  --text-dark: #1c1c1c;
  --text-light: #ffffff;
  --text-military: #e8ead1;
  --bg-light: #d2d5a6;
  --bg-dark: #3a3f2a;
  --accent: #9cff00;
  --accent-dim: rgba(156, 255, 0, 0.18);
  --accent-scan: #7bd389;
  --glow: 0 0 12px rgba(156, 255, 0, 0.45), 0 0 28px rgba(156, 255, 0, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-light-section);
  min-height: 200vh;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#top-bar {
  background: var(--gradient-khaki);
  border-bottom: 2px solid rgba(75, 83, 32, 0.25);
  position: relative;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  max-height: 130px;
  opacity: 1;
}

#top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent, transparent 40px,
      rgba(47, 53, 34, 0.06) 40px, rgba(47, 53, 34, 0.06) 41px);
  pointer-events: none;
}

#top-bar::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: scanLight 7s linear infinite;
  pointer-events: none;
}

@keyframes scanLight {
  0% {
    left: -60%;
  }

  100% {
    left: 160%;
  }
}

#top-bar.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 13px 32px;
}

.logo-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding-right: 22px;
  border-right: 2px solid rgba(75, 83, 32, 0.22);
}

.logo-block img {
  height: 52px;
  width: auto;
  filter: brightness(0.95) contrast(1.08);
  transition: filter 0.3s ease;
  display: block;
}

.logo-block:hover img {
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(75, 83, 32, 0.45));
}

.tagline {
  flex: 1;
  min-width: 0;
  font-weight: 400;
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 0 22px;
  border-right: 2px solid rgba(75, 83, 32, 0.22);
}

.tagline strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--military-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  padding: 0 22px;
  border-right: 2px solid rgba(75, 83, 32, 0.22);
  gap: 3px;
}

.phone-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--military-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: var(--olive);
}

.work-hours {
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.03em;
  text-align: right;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-callback {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 22px;
  padding: 10px 22px;
  flex-shrink: 0;
  background: transparent;
  border: 2px solid var(--military-dark);
  color: var(--military-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  white-space: nowrap;
}

.btn-callback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--military-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-callback:hover {
  color: var(--khaki-soft);
  box-shadow: 0 4px 18px rgba(47, 53, 34, 0.35);
}

.btn-callback:hover::before {
  transform: scaleX(1);
}

.btn-callback span,
.btn-callback svg {
  position: relative;
  z-index: 1;
}

.btn-callback svg {
  transition: transform 0.3s ease;
}

.btn-callback:hover svg {
  transform: rotate(15deg);
}

#nav-bar {
  background: var(--military-dark);
  border-bottom: 2px solid rgba(156, 255, 0, 0.2);
  position: relative;
  transition: box-shadow 0.35s ease;
}

#nav-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent, transparent 3px,
      rgba(156, 255, 0, 0.015) 3px, rgba(156, 255, 0, 0.015) 4px);
  pointer-events: none;
}

#nav-bar.sticky {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(156, 255, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-military);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 28px;
  overflow: hidden;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-radar);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.6);
}

.nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(156, 255, 0, 0.04) 0%,
      rgba(156, 255, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item:hover {
  color: var(--accent-radar);
}

.nav-item:hover::after {
  width: 80%;
}

.nav-item:hover::before {
  opacity: 1;
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent-radar);
}

.nav-item:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-badge {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-radar);
  margin-left: 6px;
  opacity: 0;
  transform: scale(0);
  box-shadow: 0 0 6px rgba(156, 255, 0, 0.8);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease;
}

.nav-item:hover .nav-badge {
  opacity: 1;
  transform: scale(1);
}

.nav-separator {
  width: 1px;
  height: 18px;
  background: rgba(156, 255, 0, 0.15);
  flex-shrink: 0;
}

.nav-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 58px;
  gap: 10px;
}

.nav-mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-mobile-logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.3) contrast(1.05);
  display: block;
}

.btn-callback-m {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--accent-radar);
  color: var(--accent-radar);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s, box-shadow 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  white-space: nowrap;
}

.btn-callback-m::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-radar);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-callback-m:hover {
  color: var(--military-dark);
  box-shadow: 0 0 14px rgba(156, 255, 0, 0.4);
}

.btn-callback-m:hover::before {
  transform: scaleX(1);
}

.btn-callback-m span,
.btn-callback-m svg {
  position: relative;
  z-index: 1;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid rgba(156, 255, 0, 0.35);
  background: transparent;
  flex-shrink: 0;
  transition: border-color 0.3s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.hamburger:hover {
  border-color: var(--accent-radar);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-military);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent-radar);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent-radar);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--military-deep);
  border-top: 1px solid rgba(156, 255, 0, 0.12);
  border-bottom: 2px solid rgba(156, 255, 0, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-nav.open {
  max-height: 520px;
}

.mobile-nav a.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  color: var(--text-military);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 255, 0, 0.08);
  transition: color 0.25s, background 0.25s, padding-left 0.25s;
}

.mobile-nav a.m-link:hover {
  color: var(--accent-radar);
  background: rgba(156, 255, 0, 0.04);
  padding-left: 32px;
}

.mobile-nav a.m-link .m-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
  color: var(--accent-radar);
  flex-shrink: 0;
}

.mobile-nav a.m-link:hover .m-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 24px 20px;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(156, 255, 0, 0.18);
}

.mobile-contacts .m-phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-radar);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(156, 255, 0, 0.3);
  transition: text-shadow 0.3s;
}

.mobile-contacts .m-phone:hover {
  text-shadow: 0 0 20px rgba(156, 255, 0, 0.6);
}

.mobile-contacts .m-hours {
  font-size: 12px;
  color: var(--khaki-main);
  letter-spacing: 0.04em;
  text-align: center;
}

.demo-content {
  min-height: 200vh;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--gradient-military);
  color: var(--text-military);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rPulse 4s ease-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rPulse 4s ease-out infinite 1.5s;
}

@keyframes rPulse {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.3);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.light-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: var(--bg-light-section);
  color: var(--military-dark);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 40px 20px;
}

@media (max-width:1200px) {
  .nav-item {
    padding: 18px 18px;
    font-size: 13px;
  }

  .tagline {
    font-size: 12px;
  }

  .tagline strong {
    font-size: 14px;
  }

  .phone-number {
    font-size: 19px;
  }

  .top-bar-inner {
    padding: 12px 20px;
  }
}

@media (max-width:1000px) {
  .tagline {
    display: none;
  }
}

@media (max-width:768px) {



  #top-bar {
    display: none;
  }

  .nav-inner {
    display: none;
  }

  .nav-mobile-bar {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width:400px) {
  .nav-mobile-bar {
    padding: 0 12px;
    height: 52px;
    gap: 8px;
  }

  .nav-mobile-logo img {
    height: 30px;
  }

  .btn-callback-m {
    padding: 6px 10px;
    font-size: 10px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
  }

  .hamburger span {
    width: 20px;
  }
}











/* ═══════════════════════════════════════════════════
   первый экран
═══════════════════════════════════════════════════ */
.hero, .hero *,
.hero *::before,
.hero *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 120px 0 80px !important;
  color: #e8ead1 !important;
  background: transparent !important;
  box-sizing: border-box !important;
  width: 100% !important;
  contain: layout style;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('/userfiles/images/dron/hero-bg-2.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(28, 28, 28, 0.92) 0%,
      rgba(47, 53, 34, 0.88) 40%,
      rgba(58, 63, 42, 0.75) 70%,
      rgba(47, 53, 34, 0.82) 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(-55deg,
      transparent,
      transparent 120px,
      rgba(156, 255, 0, 0.012) 120px,
      rgba(156, 255, 0, 0.012) 121px);
  pointer-events: none;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.0) 10%,
      rgba(156, 255, 0, 0.35) 50%,
      rgba(156, 255, 0, 0.0) 90%,
      transparent 100%);
  z-index: 3;
  top: 0;
  animation: scanMove 6s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(156, 255, 0, 0.4);
}

@keyframes scanMove {
  0% {
    top: 0%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.drone-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.drone {
  position: absolute;
  opacity: 0.08;
  fill: var(--khaki-soft);
  filter: blur(0.5px);
}

.drone-1 {
  width: 80px;
  top: 15%;
  animation: droneFly1 22s linear infinite;
}

.drone-2 {
  width: 50px;
  top: 35%;
  animation: droneFly2 28s linear infinite 4s;
  opacity: 0.06;
}

.drone-3 {
  width: 65px;
  top: 60%;
  animation: droneFly3 18s linear infinite 8s;
}

.drone-4 {
  width: 40px;
  top: 78%;
  animation: droneFly1 32s linear infinite 12s;
  opacity: 0.05;
}

@keyframes droneFly1 {
  0% {
    left: -100px;
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg);
  }

  100% {
    left: 110%;
    transform: translateY(0) rotate(-5deg);
  }
}

@keyframes droneFly2 {
  0% {
    left: 110%;
    transform: translateY(0) rotate(5deg) scaleX(-1);
  }

  50% {
    transform: translateY(15px) rotate(-3deg) scaleX(-1);
  }

  100% {
    left: -100px;
    transform: translateY(0) rotate(5deg) scaleX(-1);
  }
}

@keyframes droneFly3 {
  0% {
    left: -80px;
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-25px) rotate(-4deg);
  }

  100% {
    left: 110%;
    transform: translateY(0) rotate(2deg);
  }
}

.corner-tl, .corner-tr, .corner-bl, .corner-br {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 4;
}

.corner-tl {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.corner-tr {
  top: 6px;
  right: 6px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.corner-bl {
  bottom: 6px;
  left: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.corner-br {
  bottom: 6px;
  right: 6px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.status-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
  z-index: 5;
  animation: blink 2.8s ease-in-out infinite;
}

.status-dot:nth-child(1) {
  top: 18px;
  right: 18px;
  animation-delay: 0s;
}

.status-dot:nth-child(2) {
  bottom: 18px;
  left: 18px;
  animation-delay: 1.4s;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.15;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(156, 255, 0, 0.55) !important;
  background: rgba(156, 255, 0, 0.12) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.2s;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.chip .icon {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  stroke: #9cff00 !important;
  fill: none !important;
}

.h1 {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 700 !important;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #ffffff !important;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.4s;
  text-shadow: none !important;
}

.h1 span {
  color: #9cff00 !important;
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.55), 0 0 32px rgba(156, 255, 0, 0.25) !important;
  font-style: normal !important;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7;
  color: #b6bb8a !important;
  max-width: 620px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards 0.6s;
  font-weight: 400 !important;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.75s;
}

.hero-badges .chip {
  margin-bottom: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  font-size: 11px !important;
  gap: 6px;
  color: #9cff00 !important;
  background: rgba(156, 255, 0, 0.10) !important;
  border-color: rgba(156, 255, 0, 0.45) !important;
  text-shadow: 0 0 6px rgba(156, 255, 0, 0.35);
}

.hero-badges .chip .icon {
  stroke: #9cff00 !important;
  fill: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.9s;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--accent);
  color: var(--military-dark);
  box-shadow: 0 4px 24px rgba(156, 255, 0, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 8px 32px rgba(156, 255, 0, 0.5);
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn.primary:hover::before {
  left: 130%;
}

.btn.secondary {
  background: transparent !important;
  color: #e8ead1 !important;
  border: 1.5px solid rgba(232, 234, 209, 0.45) !important;
}

.btn.secondary:hover {
  border-color: #b6bb8a !important;
  color: #b6bb8a !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trust {
  padding: 24px 28px;
  background: rgba(28, 28, 28, 0.72) !important;
  border: 1px solid rgba(156, 255, 0, 0.2) !important;
  border-left: 3px solid #9cff00 !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.trust::before {
  content: 'СТАТИСТИКА';
  position: absolute;
  top: -9px;
  left: 18px;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em;
  color: #9cff00 !important;
  background: #1e2214;
  padding: 0 8px;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  text-align: center;
}

.num {
  font-size: clamp(26px, 2.5vw, 36px) !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.6), 0 0 28px rgba(156, 255, 0, 0.3) !important;
  line-height: 1;
  margin-bottom: 6px;
  display: block !important;
}

.lbl {
  font-size: 11px !important;
  color: #8f9568 !important;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500 !important;
  display: block !important;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.9s ease forwards 0.7s;
  color: #e8ead1 !important;
}

.hero-panel {
  position: relative;
  padding: 30px 28px 28px;
  background: rgba(18, 20, 14, 0.75) !important;
  border: 1px solid rgba(156, 255, 0, 0.25) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-panel .corner-tl,
.hero-panel .corner-tr,
.hero-panel .corner-bl,
.hero-panel .corner-br {
  position: absolute;
}

.radar {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.12);
  overflow: visible;
  pointer-events: none;
}

.radar::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.08);
  animation: radarRing 4s ease-out infinite;
}

.radar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(156, 255, 0, 0.0) 260deg,
      rgba(156, 255, 0, 0.18) 300deg,
      rgba(156, 255, 0, 0.28) 360deg);
  animation: radarSpin 6s linear infinite;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.1);
}

.radar-ring:nth-child(1) {
  inset: 25%;
}

.radar-ring:nth-child(2) {
  inset: 50%;
}

.radar-x {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, transparent 49.5%, rgba(156, 255, 0, 0.1) 49.5%, rgba(156, 255, 0, 0.1) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(156, 255, 0, 0.1) 49.5%, rgba(156, 255, 0, 0.1) 50.5%, transparent 50.5%);
  border-radius: 50%;
}

@keyframes radarSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes radarRing {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.blip {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
  animation: blipFade 3s ease-in-out infinite;
}

.blip:nth-child(1) {
  top: 30%;
  left: 60%;
  animation-delay: 0s;
}

.blip:nth-child(2) {
  top: 55%;
  left: 30%;
  animation-delay: 1.2s;
}

.blip:nth-child(3) {
  top: 20%;
  left: 40%;
  animation-delay: 2.1s;
}

@keyframes blipFade {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.mini {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9cff00 !important;
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.mini-title {
  font-size: clamp(18px, 1.6vw, 22px) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 8px 0 10px;
  line-height: 1.2;
}

.hero-panel p {
  font-size: 13.5px !important;
  line-height: 1.7;
  color: #b6bb8a !important;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(47, 53, 34, 0.65) !important;
  border: 1px solid rgba(156, 255, 0, 0.15) !important;
  border-left: 3px solid rgba(156, 255, 0, 0.5) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-left-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.hero-feature:hover {
  border-left-color: #9cff00 !important;
  background: rgba(47, 53, 34, 0.82) !important;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-feature .i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 255, 0, 0.35) !important;
  background: rgba(156, 255, 0, 0.08) !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s;
}

.hero-feature:hover .i {
  background: rgba(156, 255, 0, 0.15) !important;
  border-color: rgba(156, 255, 0, 0.7) !important;
}

.hero-feature .icon {
  width: 18px !important;
  height: 18px !important;
  stroke: #9cff00 !important;
  fill: none !important;
}

.hero-feature h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8ead1 !important;
  margin-bottom: 4px;
  text-shadow: none !important;
}

.hero-feature p {
  font-size: 12.5px !important;
  line-height: 1.6;
  color: #8f9568 !important;
  font-weight: 400 !important;
}

.vertical-label {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(156, 255, 0, 0.2) !important;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

.crosshair {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(156, 255, 0, 0.15);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.crosshair::before, .crosshair::after {
  content: '';
  position: absolute;
  background: rgba(156, 255, 0, 0.15);
}

.crosshair::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.crosshair::after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.crosshair-1 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 8%;
  animation: crossRotate 12s linear infinite;
}

.crosshair-2 {
  width: 45px;
  height: 45px;
  top: 20%;
  right: 15%;
  animation: crossRotate 8s linear infinite reverse;
}

@keyframes crossRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.8s;
  z-index: 10;
  cursor: pointer;
}

.scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(156, 255, 0, 0.45);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(156, 255, 0, 0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.6;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.2;
  }
}

.hero-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--accent) 30%,
      rgba(156, 255, 0, 0.4) 60%,
      transparent 100%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.1s;
}

.coord {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(156, 255, 0, 0.22) !important;
  pointer-events: none;
  z-index: 3;
  text-transform: uppercase;
}

.coord-tl {
  top: 30px;
  left: 30px;
}

.coord-tr {
  top: 30px;
  right: 30px;
  text-align: right;
}

.coord-bl {
  bottom: 80px;
  left: 30px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(var(--from-y, 25px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1200px) {
  .hero-wrap {
    grid-template-columns: 1fr 370px;
    gap: 40px;
  }

  .container {
    padding: 0 32px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width:960px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    opacity: 1;
    transform: none;
    animation: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-panel {
    grid-column: 1/-1;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .h1 {
    font-size: clamp(28px, 5vw, 48px);
  }

  .vertical-label {
    display: none;
  }
}

@media (max-width:768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .container {
    padding: 0 20px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .crosshair-1, .crosshair-2 {
    display: none;
  }
}

@media (max-width:480px) {
  .hero {
    padding: 90px 0 50px;
  }

  .container {
    padding: 0 16px;
  }

  .h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .trust {
    padding: 18px 16px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .num {
    font-size: 24px;
  }

  .lbl {
    font-size: 10px;
  }

  .hero-panel {
    padding: 22px 18px 20px;
  }

  .hero-feature {
    padding: 14px 16px;
  }

  .coord {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .drone {
    opacity: 0.04;
  }
}

@media (max-width:360px) {
  .chip {
    font-size: 10px;
    padding: 5px 10px;
  }

  .h1 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .drone, .scanline, .radar::after,
  .crosshair-1, .crosshair-2,
  .blip, .scroll-wheel {
    animation: none;
  }
}











.threats {
  background: linear-gradient(135deg, #c8cc98 0%, #b8bc80 50%, #adb06e 100%) !important;
  padding: 96px 0 100px !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.threats *, .threats *::before, .threats *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.threats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 53, 34, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 53, 34, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.threats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent,
      transparent 100px,
      rgba(47, 53, 34, 0.03) 100px,
      rgba(47, 53, 34, 0.03) 101px);
  pointer-events: none;
  z-index: 0;
}

.threats .container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.threats-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.threats-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}

.threats-label.in {
  opacity: 1;
  transform: translateY(0);
}

.threats .title {
  font-size: clamp(26px, 3.2vw, 46px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: #1a1e0e !important;
  max-width: 760px !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.threats .title.in {
  opacity: 1;
  transform: translateY(0);
}

.threats .kicker {
  font-size: clamp(14px, 1.15vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  color: #2a2e18 !important;
  max-width: 640px !important;
  margin-bottom: 0 !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.threats .kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.threat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 48px !important;
}

.threat-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(42, 46, 24, 0.2) !important;
  border-top: 3px solid #4b5320 !important;
  padding: 28px 26px 26px !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-top-color 0.3s ease,
    background 0.3s ease !important;
  cursor: default !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(32px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.threat-card::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 14px;
  height: 14px;
  border-bottom: 1.5px solid rgba(75, 83, 32, 0.2);
  border-right: 1.5px solid rgba(75, 83, 32, 0.2);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.threat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: left 0s;
  pointer-events: none;
}

.threat-card:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

.threat-card.in {
  opacity: 1;
  transform: translateY(0);
}

.threat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 40px rgba(42, 46, 24, 0.22), 0 2px 8px rgba(42, 46, 24, 0.12) !important;
  border-top-color: #2f3522 !important;
  background: rgba(255, 255, 255, 0.88) !important;
}

.threat-card:hover::before {
  border-color: rgba(75, 83, 32, 0.45);
}

.card-top {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 14px !important;
}

.threat-card .badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%) !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

.threat-card .badge.hot {
  background: rgba(75, 83, 32, 0.1) !important;
  border: 1px solid rgba(75, 83, 32, 0.35) !important;
  color: #2a2e18 !important;
}

.threat-card:hover .badge.hot {
  background: rgba(75, 83, 32, 0.18) !important;
  border-color: rgba(75, 83, 32, 0.55) !important;
  color: #1a1e0e !important;
}

.threat-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #1a1e0e !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}

.threat-card .muted {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.threat-card:nth-child(1) {
  transition-delay: 0.05s;
}

.threat-card:nth-child(2) {
  transition-delay: 0.13s;
}

.threat-card:nth-child(3) {
  transition-delay: 0.21s;
}

.threat-card:nth-child(4) {
  transition-delay: 0.29s;
}

.threat-card:nth-child(5) {
  transition-delay: 0.37s;
}

.threat-card:nth-child(6) {
  transition-delay: 0.45s;
}

.threats-footer-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(75, 83, 32, 0.4) 30%,
      rgba(75, 83, 32, 0.6) 50%,
      rgba(75, 83, 32, 0.4) 70%,
      transparent 100%);
}

@media (max-width: 1100px) {
  .threats .container {
    padding: 0 32px !important;
  }

  .threat-grid {
    gap: 16px !important;
  }
}

@media (max-width: 860px) {
  .threats {
    padding: 72px 0 80px !important;
  }

  .threat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .threats {
    padding: 60px 0 68px !important;
  }

  .threats .container {
    padding: 0 20px !important;
  }

  .threat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 36px !important;
  }

  .threat-card {
    padding: 22px 20px 20px !important;
  }

  .threats .title {
    font-size: clamp(22px, 6vw, 30px) !important;
  }
}

@media (max-width: 400px) {
  .threats .container {
    padding: 0 14px !important;
  }

  .threat-card h3 {
    font-size: 16px !important;
  }

  .threat-card .muted {
    font-size: 13px !important;
  }
}












.about-section {
  background: linear-gradient(135deg, #2f3522 0%, #3a3f2a 60%, #2a2e18 100%) !important;
  padding: 100px 0 104px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.about-section *, .about-section *::before, .about-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent,
      transparent 110px,
      rgba(156, 255, 0, 0.015) 110px,
      rgba(156, 255, 0, 0.015) 111px);
  pointer-events: none;
  z-index: 0;
}

.about-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.7) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.about-section .about-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.about-layout {
  display: grid !important;
  grid-template-columns: 1fr 500px !important;
  gap: 72px !important;
  align-items: center !important;
}

.about-layout2 {
  display: grid !important;
  grid-template-columns: 500px 1fr !important;
  gap: 72px !important;
  align-items: center !important;
}

.about-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.5);
}

.about-label.in {
  opacity: 1;
  transform: translateY(0);
}

.about-section .about-title {
  font-size: clamp(26px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.about-section .about-title.in {
  opacity: 1;
  transform: translateY(0);
}

.about-section .about-kicker {
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #fff !important;
  margin-bottom: 20px !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}

.about-section .about-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.about-desc {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #fff !important;
  margin-bottom: 32px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.26s, transform 0.7s ease 0.26s;
  border-left: 2px solid rgba(156, 255, 0, 0.2);
  padding-left: 16px !important;
}

.about-desc.in {
  opacity: 1;
  transform: translateY(0);
}

.about-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  margin-bottom: 32px !important;
}

.about-card {
  padding: 20px 18px 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(156, 255, 0, 0.12) !important;
  border-top: 2px solid rgba(156, 255, 0, 0.35) !important;
  transition: background 0.3s, border-top-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
  cursor: default !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(28px);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-bottom: 1.5px solid rgba(156, 255, 0, 0.15);
  border-right: 1.5px solid rgba(156, 255, 0, 0.15);
  transition: border-color 0.3s;
  pointer-events: none;
}

.about-card:hover {
  background: rgba(156, 255, 0, 0.06) !important;
  border-top-color: #9cff00 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3) !important;
}

.about-card:hover::after {
  border-color: rgba(156, 255, 0, 0.4);
}

.about-card.in {
  opacity: 1;
  transform: translateY(0);
}

.about-card:nth-child(1) {
  transition-delay: 0.3s;
}

.about-card:nth-child(2) {
  transition-delay: 0.4s;
}

.about-card:nth-child(3) {
  transition-delay: 0.5s;
}

.about-card .ac-icon {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(156, 255, 0, 0.3) !important;
  background: rgba(156, 255, 0, 0.06) !important;
  margin-bottom: 14px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s !important;
  flex-shrink: 0 !important;
}

.about-card:hover .ac-icon {
  background: rgba(156, 255, 0, 0.12) !important;
  border-color: rgba(156, 255, 0, 0.6) !important;
}

.about-card .ac-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.about-card h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #e8ead1 !important;
  margin: 0 0 6px !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
}

.about-card p {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #fff !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.about-cta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s !important;
}

.about-cta.in {
  opacity: 1;
  transform: translateY(0);
}

.about-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 13px 30px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  background: transparent !important;
  border: 1.5px solid rgba(156, 255, 0, 0.5) !important;
  color: #9cff00 !important;
  overflow: hidden !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: color 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
}

.about-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #9cff00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-btn:hover {
  color: #2f3522 !important;
  box-shadow: 0 0 24px rgba(156, 255, 0, 0.35) !important;
}

.about-btn:hover::before {
  transform: scaleX(1);
}

.about-btn span, .about-btn svg {
  position: relative !important;
  z-index: 1 !important;
}

.about-btn svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  transition: transform 0.3s !important;
  stroke-width: 2.5 !important;
}

.about-btn:hover svg {
  transform: translateX(4px);
}

.about-visual {
  position: relative !important;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.about-visual.in {
  opacity: 1;
  transform: translateX(0);
}

.about-img-frame {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4/5 !important;
  overflow: hidden !important;
}

.about-img-frame::before,
.about-img-frame::after {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.about-img-frame::before {
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-top: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
}

.about-img-frame::after {
  bottom: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
}

.about-frame-tr {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  border-top: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
  z-index: 3;
  pointer-events: none;
}

.about-frame-bl {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
  z-index: 3;
  pointer-events: none;
}

.about-img-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: brightness(0.88) contrast(1.06) saturate(0.7) !important;
  transition: filter 0.5s ease, transform 0.6s ease !important;
}

.about-visual:hover .about-img-frame img {
  filter: brightness(0.95) contrast(1.08) saturate(0.8) !important;
  transform: scale(1.02) !important;
}

.about-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(160deg,
      rgba(47, 53, 34, 0.25) 0%,
      transparent 50%,
      rgba(28, 28, 28, 0.55) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.about-img-scan {
  position: absolute !important;
  left: 0;
  right: 0;
  height: 1px !important;
  background: linear-gradient(90deg,
      transparent, rgba(156, 255, 0, 0.3), transparent) !important;
  z-index: 2 !important;
  animation: aboutScan 7s ease-in-out infinite !important;
  pointer-events: none !important;
}

@keyframes aboutScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.about-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin-top: 0 !important;
  border: 1px solid rgba(156, 255, 0, 0.15) !important;
  border-top: none !important;
}

.about-stat {
  padding: 16px 14px !important;
  text-align: center !important;
  border-right: 1px solid rgba(156, 255, 0, 0.1) !important;
  background: rgba(0, 0, 0, 0.25) !important;
  transition: background 0.3s !important;
}

.about-stat:last-child {
  border-right: none !important;
}

.about-stat:hover {
  background: rgba(156, 255, 0, 0.04) !important;
}

.about-stat-num {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 12px rgba(156, 255, 0, 0.45) !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.about-stat-lbl {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #8f9568 !important;
  line-height: 1.3 !important;
  display: block !important;
}

@media (max-width: 1200px) {
  .about-layout {
    grid-template-columns: 1fr 420px !important;
    gap: 52px !important;
  }

  .about-section .about-container {
    padding: 0 32px !important;
  }
}

@media (max-width: 960px) {
  .about-layout, .about-layout2 {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .about-visual {
    order: -1;
  }

  .about-img-frame {
    aspect-ratio: 16/9 !important;
  }

  .about-cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 700px) {
  .about-section {
    padding: 72px 0 80px !important;
  }

  .about-section .about-container {
    padding: 0 20px !important;
  }

  .about-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-img-frame {
    aspect-ratio: 4/3 !important;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0 68px !important;
  }

  .about-section .about-container {
    padding: 0 16px !important;
  }

  .about-section .about-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .about-img-frame {
    aspect-ratio: 3/2 !important;
  }

  .about-stat-num {
    font-size: 18px !important;
  }

  .about-stat {
    padding: 12px 8px !important;
  }
}

@media (max-width: 380px) {
  .about-section .about-container {
    padding: 0 12px !important;
  }

  .about-btn {
    padding: 11px 22px !important;
    font-size: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-img-scan {
    animation: none !important;
  }
}












.solutions-section {
  background: linear-gradient(160deg, #d2d5a6 0%, #c5c88e 55%, #bbbf7a 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.solutions-section *,
.solutions-section *::before,
.solutions-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 46, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 46, 24, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.solutions-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(42, 46, 24, 0.025) 110px, rgba(42, 46, 24, 0.025) 111px);
  pointer-events: none;
  z-index: 0;
}

.solutions-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(42, 46, 24, 0.45) 30%,
      rgba(42, 46, 24, 0.65) 50%,
      rgba(42, 46, 24, 0.45) 70%,
      transparent 100%);
}

.solutions-section .sol-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.sol-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 32px !important;
  margin-bottom: 48px !important;
}

.sol-head-left {
  max-width: 700px !important;
}

.sol-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 16px !important;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sol-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}

.sol-label.in {
  opacity: 1;
  transform: translateY(0);
}

.sol-title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.sol-title.in {
  opacity: 1;
  transform: translateY(0);
}

.sol-kicker {
  font-size: clamp(13.5px, 1.1vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.sol-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.sol-count {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px;
  background: rgba(42, 46, 24, 0.08);
  border: 1px solid rgba(42, 46, 24, 0.2);
  border-top: 2px solid #4b5320;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.sol-count.in {
  opacity: 1;
  transform: translateY(0);
}

.sol-count-num {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: #2f3522 !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.sol-count-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  white-space: nowrap !important;
  display: block !important;
}

.sol-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.sol-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(42, 46, 24, 0.15) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
  cursor: default !important;
  opacity: 0;
  transform: translateY(36px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sol-card.in {
  opacity: 1;
  transform: translateY(0);
}

.sol-card:nth-child(1) {
  transition-delay: 0.05s;
}

.sol-card:nth-child(2) {
  transition-delay: 0.12s;
}

.sol-card:nth-child(3) {
  transition-delay: 0.19s;
}

.sol-card:nth-child(4) {
  transition-delay: 0.26s;
}

.sol-card:nth-child(5) {
  transition-delay: 0.33s;
}

.sol-card:nth-child(6) {
  transition-delay: 0.40s;
}

.sol-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 44px rgba(42, 46, 24, 0.2), 0 2px 8px rgba(42, 46, 24, 0.1) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.sol-card.sol-card-cta {
  background: rgba(47, 53, 34, 0.88) !important;
  border-color: rgba(156, 255, 0, 0.2) !important;
}

.sol-card.sol-card-cta:hover {
  background: rgba(47, 53, 34, 0.96) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(156, 255, 0, 0.2) !important;
}

.sol-thumb {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16/10 !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: #c0c48a !important;
}

.sol-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: brightness(0.82) contrast(1.05) saturate(0.75) !important;
  transition: transform 0.5s ease, filter 0.4s ease !important;
}

.sol-card:hover .sol-thumb img {
  transform: scale(1.05) !important;
  filter: brightness(0.9) contrast(1.06) saturate(0.85) !important;
}

.sol-thumb-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(28, 30, 14, 0.5) 100%) !important;
  z-index: 1 !important;
}

.sol-num {
  position: absolute !important;
  top: 10px;
  left: 10px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  color: #9cff00 !important;
  background: rgba(28, 30, 14, 0.7) !important;
  padding: 3px 8px !important;
  z-index: 2 !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  line-height: 1.4 !important;
  display: block !important;
}

.sol-card-cta .sol-thumb {
  background: linear-gradient(135deg, #2f3522, #3a3f2a) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.sol-cta-radar {
  position: relative !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(156, 255, 0, 0.2) !important;
}

.sol-cta-radar::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.1);
  animation: solRadarPulse 3.5s ease-out infinite;
}

.sol-cta-radar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 260deg,
      rgba(156, 255, 0, 0.22) 310deg,
      rgba(156, 255, 0, 0.32) 360deg);
  animation: solRadarSpin 5s linear infinite;
}

.sol-cta-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.08);
  inset: 25%;
}

@keyframes solRadarPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes solRadarSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sol-body {
  padding: 22px 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.sol-card h3,
.sol-card .sol-h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #1a1e0e !important;
  margin: 0 0 10px !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}

.sol-card.sol-card-cta h3,
.sol-card.sol-card-cta .sol-h3 {
  color: #e8ead1 !important;
}

.sol-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-bottom: 14px !important;
}

.sol-tag {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 3px 9px !important;
  background: rgba(42, 46, 24, 0.08) !important;
  border: 1px solid rgba(42, 46, 24, 0.2) !important;
  color: #2a2e18 !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  display: inline-block !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

.sol-card.sol-card-cta .sol-tag {
  background: rgba(156, 255, 0, 0.08) !important;
  border-color: rgba(156, 255, 0, 0.25) !important;
  color: #9cff00 !important;
}

.sol-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  flex: 1 !important;
}

.sol-bullets li {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #2e3220 !important;
  line-height: 1.5 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-shadow: none !important;
  text-decoration: none !important;
}

.sol-bullets li::before {
  content: '';
  display: block !important;
  width: 14px !important;
  height: 1px !important;
  background: #4b5320 !important;
  flex-shrink: 0 !important;
}

.sol-card.sol-card-cta .sol-bullets li {
  color: #b6bb8a !important;
}

.sol-card.sol-card-cta .sol-bullets li::before {
  background: rgba(156, 255, 0, 0.5) !important;
}

.sol-btn-ghost {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 9px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: 1.5px solid rgba(42, 46, 24, 0.35) !important;
  color: #2a2e18 !important;
  cursor: pointer !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: border-color 0.3s, background 0.3s, color 0.3s !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.sol-btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2f3522;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sol-btn-ghost:hover {
  color: #e8ead1 !important;
  border-color: #2f3522 !important;
}

.sol-btn-ghost:hover::before {
  transform: scaleX(1);
}

.sol-btn-ghost span, .sol-btn-ghost svg {
  position: relative;
  z-index: 1;
}

.sol-btn-ghost svg {
  width: 12px !important;
  height: 12px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.sol-btn-ghost:hover svg {
  transform: translateX(3px);
}

.sol-btn-primary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 11px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #9cff00 !important;
  border: none !important;
  color: #1a1e0e !important;
  cursor: pointer !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 4px 20px rgba(156, 255, 0, 0.3) !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  overflow: hidden !important;
}

.sol-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.sol-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(156, 255, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

.sol-btn-primary:hover::before {
  left: 130%;
}

.sol-btn-primary span, .sol-btn-primary svg {
  position: relative;
  z-index: 1;
}

.sol-btn-primary svg {
  width: 13px !important;
  height: 13px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.sol-btn-primary:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .solutions-section .sol-container {
    padding: 0 32px !important;
  }

  .sol-grid {
    gap: 18px !important;
  }
}

@media (max-width: 1024px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sol-head {
    grid-template-columns: 1fr !important;
  }

  .sol-count {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .solutions-section {
    padding: 72px 0 80px !important;
  }

  .solutions-section .sol-container {
    padding: 0 20px !important;
  }

  .sol-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .sol-head {
    margin-bottom: 36px !important;
  }
}

@media (max-width: 480px) {
  .solutions-section {
    padding: 60px 0 68px !important;
  }

  .solutions-section .sol-container {
    padding: 0 16px !important;
  }

  .sol-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .sol-thumb {
    aspect-ratio: 16/9 !important;
  }

  .sol-body {
    padding: 18px 18px 16px !important;
  }
}

@media (max-width: 380px) {
  .solutions-section .sol-container {
    padding: 0 12px !important;
  }

  .sol-card h3, .sol-card .sol-h3 {
    font-size: 15px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sol-cta-radar::before,
  .sol-cta-radar::after {
    animation: none !important;
  }
}













.principle-section {
  background: linear-gradient(150deg, #1e2112 0%, #2f3522 45%, #252b18 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

.principle-section *,
.principle-section *::before,
.principle-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.principle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.principle-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.012) 110px, rgba(156, 255, 0, 0.012) 111px);
  pointer-events: none;
  z-index: 0;
}

.principle-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.75) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.principle-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%, rgba(156, 255, 0, 0.25) 50%, transparent 100%);
  animation: pScan 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.principle-section .pr-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.pr-head {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: flex-start !important;
  margin-bottom: 64px !important;
}

.pr-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pr-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.5);
}

.pr-label.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-title {
  font-size: clamp(26px, 3vw, 46px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin-bottom: 0 !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.pr-title.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-kicker {
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #fff !important;
  margin: 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(156, 255, 0, 0.12) !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.pr-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  margin-bottom: 72px !important;
  position: relative !important;
}

.pr-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg,
      rgba(156, 255, 0, 0.4),
      rgba(156, 255, 0, 0.15) 50%,
      rgba(156, 255, 0, 0.4));
  z-index: 0;
  pointer-events: none;
}

.pr-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 20px !important;
  position: relative !important;
  z-index: 1 !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pr-step.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-step:nth-child(1) {
  transition-delay: 0.1s;
}

.pr-step:nth-child(2) {
  transition-delay: 0.22s;
}

.pr-step:nth-child(3) {
  transition-delay: 0.34s;
}

.pr-step:nth-child(4) {
  transition-delay: 0.46s;
}

.pr-step-icon {
  width: 88px !important;
  height: 88px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(156, 255, 0, 0.3) !important;
  background: rgba(156, 255, 0, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 22px !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s !important;
}

.pr-step:hover .pr-step-icon {
  border-color: #9cff00 !important;
  background: rgba(156, 255, 0, 0.1) !important;
  box-shadow: 0 0 24px rgba(156, 255, 0, 0.2) !important;
}

.pr-step-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(156, 255, 0, 0.1);
}

.pr-step-num {
  position: absolute !important;
  top: -6px;
  right: -6px;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: #9cff00 !important;
  color: #1a1e0e !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 10px rgba(156, 255, 0, 0.5) !important;
  line-height: 1 !important;
}

.pr-step-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  transition: transform 0.35s ease !important;
}

.pr-step:hover .pr-step-icon svg {
  transform: scale(1.1) !important;
}

.pr-step-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  background: rgba(156, 255, 0, 0.08) !important;
  border: 1px solid rgba(156, 255, 0, 0.2) !important;
  padding: 3px 10px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  margin-bottom: 10px !important;
  display: inline-block !important;
  text-shadow: none !important;
}

.pr-step h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #e8ead1 !important;
  margin: 0 0 8px !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}

.pr-step p {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #fff !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.pr-arrow {
  position: absolute !important;
  top: 36px !important;
  right: -14px !important;
  width: 28px !important;
  height: 16px !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pr-arrow svg {
  width: 16px !important;
  height: 16px !important;
  stroke: rgba(156, 255, 0, 0.5) !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.pr-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pr-divider.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(156, 255, 0, 0.2), rgba(156, 255, 0, 0.05));
}

.pr-divider-line:last-child {
  background: linear-gradient(270deg, rgba(156, 255, 0, 0.2), rgba(156, 255, 0, 0.05));
}

.pr-divider-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  white-space: nowrap !important;
}

.pr-passive {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
  margin-bottom: 60px !important;
}

.pr-passive-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 14px !important;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.35);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.05s, transform 0.6s ease 0.05s;
}

.pr-passive-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(156, 255, 0, 0.4);
}

.pr-passive-label.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-passive-title {
  font-size: clamp(22px, 2.4vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}

.pr-passive-title.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-passive-desc {
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #fff !important;
  margin-bottom: 24px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.pr-passive-desc.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-contact-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 13px 28px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #9cff00 !important;
  border: none !important;
  color: #1a1e0e !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 4px 22px rgba(156, 255, 0, 0.3) !important;
  overflow: hidden !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.28s, transform 0.6s ease 0.28s,
    box-shadow 0.3s, box-shadow 0.25s !important;
}

.pr-contact-btn.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-contact-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.pr-contact-btn:hover {
  box-shadow: 0 8px 32px rgba(156, 255, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

.pr-contact-btn:hover::before {
  left: 130%;
}

.pr-contact-btn span,
.pr-contact-btn svg {
  position: relative;
  z-index: 1;
}

.pr-contact-btn svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.pr-contact-btn:hover svg {
  transform: translateX(4px);
}

.pr-contact-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.pr-contact-options.open {
  display: flex;
}

.pr-contact-option {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 18px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(156, 255, 0, 0.15) !important;
  color: #e8ead1 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: background 0.25s, border-color 0.25s !important;
  cursor: pointer !important;
  width: fit-content !important;
}

.pr-contact-option:hover {
  background: rgba(156, 255, 0, 0.07) !important;
  border-color: rgba(156, 255, 0, 0.35) !important;
  color: #9cff00 !important;
}

.pr-contact-option svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  flex-shrink: 0 !important;
  stroke-width: 2 !important;
}

.pr-benefits {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  align-content: start !important;
}

.pr-benefit {
  padding: 22px 20px 20px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(156, 255, 0, 0.1) !important;
  border-left: 3px solid rgba(156, 255, 0, 0.3) !important;
  transition: background 0.3s, border-left-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
  cursor: default !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(24px);
}

.pr-benefit::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-bottom: 1.5px solid rgba(156, 255, 0, 0.12);
  border-right: 1.5px solid rgba(156, 255, 0, 0.12);
  transition: border-color 0.3s;
  pointer-events: none;
}

.pr-benefit:hover {
  background: rgba(156, 255, 0, 0.05) !important;
  border-left-color: #9cff00 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25) !important;
}

.pr-benefit:hover::after {
  border-color: rgba(156, 255, 0, 0.35);
}

.pr-benefit.in {
  opacity: 1;
  transform: translateY(0);
}

.pr-benefit:nth-child(1) {
  transition-delay: 0.1s;
}

.pr-benefit:nth-child(2) {
  transition-delay: 0.18s;
}

.pr-benefit:nth-child(3) {
  transition-delay: 0.26s;
}

.pr-benefit:nth-child(4) {
  transition-delay: 0.34s;
}

.pr-benefit:nth-child(5) {
  transition-delay: 0.42s;
}

.pr-benefit:nth-child(6) {
  transition-delay: 0.50s;
}

.pr-benefit-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(156, 255, 0, 0.25) !important;
  background: rgba(156, 255, 0, 0.06) !important;
  margin-bottom: 14px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s !important;
}

.pr-benefit:hover .pr-benefit-icon {
  background: rgba(156, 255, 0, 0.12) !important;
  border-color: rgba(156, 255, 0, 0.5) !important;
}

.pr-benefit-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.pr-benefit h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #e8ead1 !important;
  margin: 0 0 6px !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
}

.pr-benefit p {
  font-size: 12.5px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #fff !important;
  margin: 0 !important;
  text-shadow: none !important;
}

@media (max-width: 1200px) {
  .principle-section .pr-container {
    padding: 0 32px !important;
  }

  .pr-head {
    gap: 40px !important;
  }

  .pr-passive {
    gap: 40px !important;
  }
}

@media (max-width: 1024px) {
  .pr-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 860px) {
  .pr-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 48px !important;
  }

  .pr-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px !important;
  }

  .pr-steps::before {
    display: none !important;
  }

  .pr-arrow {
    display: none !important;
  }

  .pr-passive {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .pr-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .principle-section {
    padding: 72px 0 80px !important;
  }

  .principle-section .pr-container {
    padding: 0 20px !important;
  }

  .pr-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }

  .pr-step-icon {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 16px !important;
  }

  .pr-step-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .pr-step p {
    display: none !important;
  }

  .pr-benefits {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .pr-benefit {
    padding: 18px 16px 16px !important;
  }
}

@media (max-width: 480px) {
  .principle-section {
    padding: 60px 0 68px !important;
  }

  .principle-section .pr-container {
    padding: 0 16px !important;
  }

  .pr-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .pr-passive-title {
    font-size: clamp(20px, 5.5vw, 28px) !important;
  }

  .pr-benefits {
    grid-template-columns: 1fr !important;
  }

  .pr-steps {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 380px) {
  .principle-section .pr-container {
    padding: 0 12px !important;
  }

  .pr-steps {
    grid-template-columns: 1fr !important;
  }

  .pr-step {
    align-items: flex-start !important;
    text-align: left !important;
    flex-direction: row !important;
    gap: 14px !important;
  }

  .pr-step-icon {
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    width: 56px !important;
    height: 56px !important;
  }

  .pr-step p {
    display: block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .principle-scan {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .pr-steps::before {
    display: none !important;
  }

  .pr-steps {
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }

  .pr-step {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 20px !important;
    padding: 20px 20px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-bottom: 1px solid rgba(156, 255, 0, 0.08) !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .pr-step:last-child {
    border-bottom: none !important;
  }

  .pr-step-icon {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
  }

  .pr-step-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .pr-step-icon::before {
    inset: -8px !important;
  }

  .pr-step-text-wrap {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .pr-step-tag {
    display: none !important;
  }

  .pr-step h3 {
    font-size: 15px !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 4px !important;
    white-space: normal !important;
    word-break: break-word !important;
    hyphens: auto !important;
    text-align: left !important;
  }

  .pr-step p {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: left !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .pr-step {
    gap: 16px !important;
    padding: 18px 16px !important;
  }

  .pr-step-icon {
    width: 56px !important;
    height: 56px !important;
  }

  .pr-step-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .pr-step-num {
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
    top: -4px !important;
    right: -4px !important;
  }

  .pr-step h3 {
    font-size: 14px !important;
  }

  .pr-step p {
    font-size: 12.5px !important;
  }
}

@media (max-width: 360px) {
  .pr-step {
    gap: 14px !important;
    padding: 16px 12px !important;
  }

  .pr-step-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .pr-step-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .pr-step h3 {
    font-size: 13px !important;
  }

  .pr-step p {
    font-size: 12px !important;
  }
}















.worksteps-section {
  background: linear-gradient(160deg, #d2d5a6 0%, #c8cb94 55%, #bfc274 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.worksteps-section *,
.worksteps-section *::before,
.worksteps-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.worksteps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 46, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 46, 24, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.worksteps-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(42, 46, 24, 0.025) 110px, rgba(42, 46, 24, 0.025) 111px);
  pointer-events: none;
  z-index: 0;
}

.worksteps-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(42, 46, 24, 0.4) 30%,
      rgba(42, 46, 24, 0.65) 50%,
      rgba(42, 46, 24, 0.4) 70%,
      transparent 100%);
}

.worksteps-section .ws-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.ws-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 40px !important;
  align-items: flex-end !important;
  margin-bottom: 60px !important;
}

.ws-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 16px !important;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ws-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}

.ws-label.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.ws-title.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-kicker {
  font-size: clamp(13.5px, 1.1vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.ws-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-total {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 26px;
  background: rgba(42, 46, 24, 0.09);
  border: 1px solid rgba(42, 46, 24, 0.22);
  border-top: 2px solid #4b5320;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.ws-total.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-total-num {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1a1e0e !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.ws-total-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: center !important;
}

.ws-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  margin-bottom: 48px !important;
  position: relative !important;
}

.ws-row {
  display: contents !important;
}

.ws-step {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 36px 36px 36px 36px !important;
  border-bottom: 1px solid rgba(42, 46, 24, 0.14) !important;
  position: relative !important;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.ws-step:nth-child(even) {
  border-left: 1px solid rgba(42, 46, 24, 0.14) !important;
}

.ws-step:nth-last-child(-n+2) {
  border-bottom: none !important;
}

.ws-step.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-step:nth-child(1) {
  transition-delay: 0.05s;
}

.ws-step:nth-child(2) {
  transition-delay: 0.13s;
}

.ws-step:nth-child(3) {
  transition-delay: 0.21s;
}

.ws-step:nth-child(4) {
  transition-delay: 0.29s;
}

.ws-step:nth-child(5) {
  transition-delay: 0.37s;
}

.ws-step:nth-child(6) {
  transition-delay: 0.45s;
}

.ws-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 46, 24, 0.0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.ws-step:hover::before {
  background: rgba(42, 46, 24, 0.03);
}

.ws-step:hover {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 8px 32px rgba(42, 46, 24, 0.12) !important;
}

.ws-step-left {
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  margin-right: 28px !important;
  position: relative !important;
}

.ws-no {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: rgba(42, 46, 24, 0.12) !important;
  user-select: none !important;
  margin-bottom: 8px !important;
  transition: color 0.3s !important;
  display: block !important;
  letter-spacing: -0.02em !important;
}

.ws-step:hover .ws-no {
  color: rgba(42, 46, 24, 0.22) !important;
}

.ws-step-line {
  width: 1px !important;
  flex: 1 !important;
  min-height: 32px !important;
  background: linear-gradient(180deg,
      rgba(42, 46, 24, 0.25) 0%,
      rgba(42, 46, 24, 0.06) 100%) !important;
}

.ws-step-body {
  flex: 1 !important;
  padding-top: 6px !important;
}

.ws-step-head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  flex-wrap: wrap !important;
}

.ws-step-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #4b5320 !important;
  flex-shrink: 0 !important;
  transition: background 0.3s, box-shadow 0.3s !important;
}

.ws-step:hover .ws-step-dot {
  background: #2a2e18 !important;
  box-shadow: 0 0 6px rgba(42, 46, 24, 0.5) !important;
}

.ws-time {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  background: rgba(42, 46, 24, 0.1) !important;
  border: 1px solid rgba(42, 46, 24, 0.22) !important;
  padding: 3px 10px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  display: inline-block !important;
  transition: background 0.3s, border-color 0.3s !important;
}

.ws-step:hover .ws-time {
  background: rgba(42, 46, 24, 0.16) !important;
  border-color: rgba(42, 46, 24, 0.38) !important;
}

.ws-step h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #1a1e0e !important;
  margin: 0 0 8px !important;
  line-height: 1.15 !important;
  text-shadow: none !important;
  transition: color 0.3s !important;
}

.ws-step:hover h3 {
  color: #0e1008 !important;
}

.ws-step p {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.ws-step-accent {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 3px !important;
  background: rgba(42, 46, 24, 0.0) !important;
  transition: background 0.3s !important;
}

.ws-step:nth-child(odd) .ws-step-accent {
  left: 0 !important;
}

.ws-step:nth-child(even) .ws-step-accent {
  left: 0 !important;
}

.ws-step:hover .ws-step-accent {
  background: #4b5320 !important;
}

.ws-cta {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.ws-cta.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-btn-primary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #2f3522 !important;
  border: none !important;
  color: #e8ead1 !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  text-decoration: none !important;
}

.ws-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.ws-btn-primary:hover {
  box-shadow: 0 8px 28px rgba(42, 46, 24, 0.35) !important;
  transform: translateY(-2px) !important;
}

.ws-btn-primary:hover::before {
  left: 130%;
}

.ws-btn-primary span,
.ws-btn-primary svg {
  position: relative;
  z-index: 1;
}

.ws-btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.ws-btn-primary:hover svg {
  transform: translateX(4px);
}

.ws-cta-note {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #4a4f46 !important;
  line-height: 1.5 !important;
  border-left: 2px solid rgba(42, 46, 24, 0.25) !important;
  padding-left: 14px !important;
}

@media (max-width: 1200px) {
  .worksteps-section .ws-container {
    padding: 0 32px !important;
  }
}

@media (max-width: 900px) {
  .ws-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .ws-total {
    display: none !important;
  }

  .ws-step {
    padding: 28px 28px !important;
  }

  .ws-no {
    font-size: 44px !important;
  }

  .ws-step h3 {
    font-size: 19px !important;
  }
}

@media (max-width: 640px) {
  .worksteps-section {
    padding: 72px 0 80px !important;
  }

  .worksteps-section .ws-container {
    padding: 0 20px !important;
  }

  .ws-grid {
    grid-template-columns: 1fr !important;
  }

  .ws-step {
    border-left: none !important;
    border-bottom: 1px solid rgba(42, 46, 24, 0.14) !important;
    padding: 24px 20px !important;
  }

  .ws-step:nth-child(even) {
    border-left: none !important;
  }

  .ws-step:last-child {
    border-bottom: none !important;
  }

  .ws-step:nth-last-child(-n+2):not(:last-child) {
    border-bottom: 1px solid rgba(42, 46, 24, 0.14) !important;
  }

  .ws-no {
    font-size: 40px !important;
    margin-right: 0 !important;
  }

  .ws-step-left {
    margin-right: 22px !important;
  }

  .ws-cta {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .ws-btn-primary {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .worksteps-section {
    padding: 60px 0 68px !important;
  }

  .worksteps-section .ws-container {
    padding: 0 16px !important;
  }

  .ws-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .ws-no {
    font-size: 34px !important;
  }

  .ws-step-left {
    margin-right: 18px !important;
  }

  .ws-step h3 {
    font-size: 17px !important;
  }

  .ws-step {
    padding: 20px 16px !important;
  }
}

@media (max-width: 380px) {
  .worksteps-section .ws-container {
    padding: 0 12px !important;
  }

  .ws-step p {
    font-size: 13px !important;
  }
}













.projects-section {
  background: linear-gradient(150deg, #1e2112 0%, #2f3522 45%, #252b18 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.projects-section *,
.projects-section *::before,
.projects-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.projects-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.projects-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.012) 110px, rgba(156, 255, 0, 0.012) 111px);
  pointer-events: none;
  z-index: 0;
}

.projects-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.75) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.projects-section .pj-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.pj-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 32px !important;
  margin-bottom: 52px !important;
}

.pj-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pj-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.pj-label.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.pj-title.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-kicker {
  font-size: clamp(13.5px, 1.05vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  margin: 0 !important;
  max-width: 620px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.pj-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-counter {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  background: rgba(156, 255, 0, 0.05);
  border: 1px solid rgba(156, 255, 0, 0.15);
  border-top: 2px solid #9cff00;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.pj-counter.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-counter-num {
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.5) !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.pj-counter-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: center !important;
}

.pj-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin-bottom: 44px !important;
}

.pj-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(156, 255, 0, 0.1) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
  cursor: default !important;
  opacity: 0;
  transform: translateY(36px);
}

.pj-card.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-card:nth-child(1) {
  transition-delay: 0.05s;
}

.pj-card:nth-child(2) {
  transition-delay: 0.13s;
}

.pj-card:nth-child(3) {
  transition-delay: 0.21s;
}

.pj-card:nth-child(4) {
  transition-delay: 0.29s;
}

.pj-card:nth-child(5) {
  transition-delay: 0.37s;
}

.pj-card:nth-child(6) {
  transition-delay: 0.45s;
}

.pj-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(156, 255, 0, 0.18) !important;
  border-color: rgba(156, 255, 0, 0.22) !important;
}

.pj-slider {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16/10 !important;
  overflow: hidden !important;
  background: #1a1e10 !important;
  flex-shrink: 0 !important;
}

.pj-slides {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
}

.pj-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.pj-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: brightness(0.78) contrast(1.06) saturate(0.65) !important;
  transition: filter 0.4s ease !important;
}

.pj-card:hover .pj-slide img {
  filter: brightness(0.88) contrast(1.07) saturate(0.8) !important;
}

.pj-slide-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      rgba(28, 30, 14, 0.1) 0%,
      transparent 40%,
      rgba(18, 20, 10, 0.65) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.pj-arrow-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(28, 30, 14, 0.75) !important;
  border: 1px solid rgba(156, 255, 0, 0.3) !important;
  color: #9cff00 !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  pointer-events: none !important;
}

.pj-arrow-btn svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  flex-shrink: 0 !important;
}

.pj-arrow-prev {
  left: 10px !important;
}

.pj-arrow-next {
  right: 10px !important;
}

.pj-card:hover .pj-arrow-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pj-arrow-btn:hover {
  background: rgba(156, 255, 0, 0.15) !important;
  border-color: rgba(156, 255, 0, 0.6) !important;
}

.pj-arrow-btn:disabled,
.pj-arrow-btn[disabled] {
  opacity: 0.2 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.pj-dots {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 5px !important;
  z-index: 4 !important;
}

.pj-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.35) !important;
  transition: background 0.3s, transform 0.3s !important;
  cursor: pointer !important;
  border: none !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.pj-dot.active {
  background: #9cff00 !important;
  transform: scale(1.35) !important;
  box-shadow: 0 0 6px rgba(156, 255, 0, 0.6) !important;
}

.pj-slide-count {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(18, 20, 10, 0.65) !important;
  padding: 3px 8px !important;
  z-index: 4 !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  transition: opacity 0.25s !important;
  pointer-events: none !important;
}

.pj-body {
  padding: 20px 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.pj-badge {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  background: rgba(156, 255, 0, 0.08) !important;
  border: 1px solid rgba(156, 255, 0, 0.22) !important;
  padding: 3px 10px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  margin-bottom: 12px !important;
  text-shadow: none !important;
  text-decoration: none !important;
}

.pj-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #e8ead1 !important;
  margin: 0 0 6px !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
  transition: color 0.3s !important;
}

.pj-card:hover h3 {
  color: #ffffff !important;
}

.pj-loc {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
}

.pj-loc svg {
  width: 11px !important;
  height: 11px !important;
  stroke: #fff !important;
  fill: none !important;
  flex-shrink: 0 !important;
  stroke-width: 2 !important;
}

.pj-kv {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  border-top: 1px solid rgba(156, 255, 0, 0.08) !important;
  padding-top: 14px !important;
}

.pj-kv li {
  font-size: 12.5px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  line-height: 1.4 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-shadow: none !important;
  text-decoration: none !important;
}

.pj-kv li::before {
  content: '' !important;
  display: block !important;
  width: 12px !important;
  height: 1px !important;
  background: rgba(156, 255, 0, 0.35) !important;
  flex-shrink: 0 !important;
}

.pj-cta {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.pj-cta.in {
  opacity: 1;
  transform: translateY(0);
}

.pj-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 13px 28px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: 1.5px solid rgba(156, 255, 0, 0.45) !important;
  color: #9cff00 !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  transition: color 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
}

.pj-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #9cff00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pj-btn:hover {
  color: #1a1e0e !important;
  box-shadow: 0 0 24px rgba(156, 255, 0, 0.35) !important;
}

.pj-btn:hover::before {
  transform: scaleX(1);
}

.pj-btn span, .pj-btn svg {
  position: relative;
  z-index: 1;
}

.pj-btn svg {
  width: 13px !important;
  height: 13px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.pj-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .projects-section .pj-container {
    padding: 0 32px !important;
  }

  .pj-grid {
    gap: 18px !important;
  }
}

@media (max-width: 1024px) {
  .pj-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pj-head {
    grid-template-columns: 1fr !important;
  }

  .pj-counter {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .projects-section {
    padding: 72px 0 80px !important;
  }

  .projects-section .pj-container {
    padding: 0 20px !important;
  }

  .pj-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .pj-arrow-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 32px !important;
    height: 32px !important;
  }

  .pj-head {
    margin-bottom: 36px !important;
  }

  .pj-cta {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .pj-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 60px 0 68px !important;
  }

  .projects-section .pj-container {
    padding: 0 16px !important;
  }

  .pj-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .pj-slider {
    aspect-ratio: 4/3 !important;
  }

  .pj-body {
    padding: 16px 16px 18px !important;
  }

  .pj-card h3 {
    font-size: 15px !important;
  }
}

@media (max-width: 380px) {
  .projects-section .pj-container {
    padding: 0 12px !important;
  }

  .pj-arrow-btn {
    width: 28px !important;
    height: 28px !important;
  }

  .pj-arrow-btn svg {
    width: 13px !important;
    height: 13px !important;
  }
}

@media (hover: none) {
  .pj-arrow-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}










.testimonials-section {
  background: linear-gradient(160deg, #d2d5a6 0%, #c8cb94 55%, #bfc274 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.testimonials-section *,
.testimonials-section *::before,
.testimonials-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 46, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 46, 24, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(42, 46, 24, 0.025) 110px, rgba(42, 46, 24, 0.025) 111px);
  pointer-events: none;
  z-index: 0;
}

.tm-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(42, 46, 24, 0.4) 30%,
      rgba(42, 46, 24, 0.65) 50%,
      rgba(42, 46, 24, 0.4) 70%,
      transparent 100%);
}

.testimonials-section .tm-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.tm-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 32px !important;
  margin-bottom: 52px !important;
}

.tm-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 16px !important;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tm-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}

.tm-label.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-title {
  font-size: clamp(24px, 3vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.tm-title.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-kicker {
  font-size: clamp(13.5px, 1.05vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  max-width: 580px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.tm-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-rating-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 22px;
  background: rgba(42, 46, 24, 0.08);
  border: 1px solid rgba(42, 46, 24, 0.2);
  border-top: 2px solid #4b5320;
  gap: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.tm-rating-badge.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-rating-num {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #1a1e0e !important;
  line-height: 1 !important;
  display: block !important;
}

.tm-rating-stars {
  color: #4b5320 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
  display: block !important;
}

.tm-rating-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: center !important;
}

.tm-carousel-wrap {
  position: relative !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.tm-carousel-wrap.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-viewport {
  overflow: hidden !important;
  width: 100% !important;
}

.tm-track {
  display: flex !important;
  gap: 22px !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
  align-items: stretch !important;
}

.tm-card {
  flex: 0 0 calc(33.333% - 15px) !important;
  min-width: 0 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(42, 46, 24, 0.14) !important;
  border-top: 3px solid #4b5320 !important;
  padding: 28px 26px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.tm-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 40px rgba(42, 46, 24, 0.18) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.tm-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 96px;
  line-height: 1;
  color: rgba(42, 46, 24, 0.07);
  pointer-events: none;
  user-select: none;
}

.tm-card::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 13px;
  height: 13px;
  border-bottom: 1.5px solid rgba(42, 46, 24, 0.18);
  border-right: 1.5px solid rgba(42, 46, 24, 0.18);
  pointer-events: none;
  transition: border-color 0.3s;
}

.tm-card:hover::after {
  border-color: rgba(42, 46, 24, 0.4);
}

.tm-author-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.tm-who {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
}

.tm-avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #3a3f2a, #4b5320) !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(42, 46, 24, 0.2) !important;
  overflow: hidden !important;
}

.tm-avatar svg {
  width: 22px !important;
  height: 22px !important;
  stroke: rgba(210, 213, 166, 0.7) !important;
  fill: none !important;
  stroke-width: 1.5 !important;
}

.tm-author-info {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.tm-author-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #1a1e0e !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

.tm-author-role {
  font-size: 11.5px !important;
  font-weight: 400 !important;
  color: #4a4f46 !important;
  line-height: 1.4 !important;
  display: block !important;
}

.tm-stars {
  font-size: 14px !important;
  color: #4b5320 !important;
  letter-spacing: 2px !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

.tm-divider {
  width: 100% !important;
  height: 1px !important;
  background: rgba(42, 46, 24, 0.1) !important;
  margin-bottom: 18px !important;
  flex-shrink: 0 !important;
}

.tm-quote {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  flex: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  text-shadow: none !important;
}

.tm-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 36px !important;
}

.tm-nav-dots {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.tm-nav-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(42, 46, 24, 0.25) !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: background 0.3s, transform 0.3s !important;
  flex-shrink: 0 !important;
}

.tm-nav-dot.active {
  background: #2f3522 !important;
  transform: scale(1.4) !important;
}

.tm-nav-arrows {
  display: flex !important;
  gap: 10px !important;
}

.tm-arrow {
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(42, 46, 24, 0.08) !important;
  border: 1.5px solid rgba(42, 46, 24, 0.25) !important;
  color: #2f3522 !important;
  cursor: pointer !important;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s !important;
  position: relative !important;
  overflow: hidden !important;
}

.tm-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2f3522;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tm-arrow:hover {
  border-color: #2f3522 !important;
  color: #e8ead1 !important;
  box-shadow: 0 4px 16px rgba(42, 46, 24, 0.25) !important;
}

.tm-arrow:hover::before {
  transform: scaleX(1);
}

.tm-arrow svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  position: relative;
  z-index: 1;
}

.tm-arrow:disabled {
  opacity: 0.3 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.tm-progress {
  height: 2px !important;
  background: rgba(42, 46, 24, 0.12) !important;
  margin-top: 16px !important;
  position: relative !important;
  overflow: hidden !important;
}

.tm-progress-bar {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100% !important;
  background: #2f3522 !important;
  transition: width 0.5s ease !important;
}

@media (max-width: 1200px) {
  .testimonials-section .tm-container {
    padding: 0 32px !important;
  }

  .tm-card {
    flex: 0 0 calc(50% - 11px) !important;
  }
}

@media (max-width: 900px) {
  .tm-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .tm-rating-badge {
    display: none !important;
  }

  .tm-card {
    flex: 0 0 calc(50% - 11px) !important;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 72px 0 80px !important;
  }

  .testimonials-section .tm-container {
    padding: 0 20px !important;
  }

  .tm-card {
    flex: 0 0 100% !important;
  }

  .tm-track {
    gap: 16px !important;
  }

  .tm-nav {
    margin-top: 28px !important;
  }

  .tm-arrow {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 0 68px !important;
  }

  .testimonials-section .tm-container {
    padding: 0 16px !important;
  }

  .tm-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .tm-card {
    padding: 22px 18px 20px !important;
  }

  .tm-author-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .tm-stars {
    align-self: flex-start !important;
  }
}

@media (max-width: 380px) {
  .testimonials-section .tm-container {
    padding: 0 12px !important;
  }

  .tm-quote {
    font-size: 13.5px !important;
  }

  .tm-nav {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-track {
    transition: none !important;
  }
}











.faq-section {
  background: linear-gradient(150deg, #1e2112 0%, #2f3522 45%, #252b18 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.faq-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.012) 110px, rgba(156, 255, 0, 0.012) 111px);
  pointer-events: none;
  z-index: 0;
}

.faq-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.75) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.faq-section .faq-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.faq-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 32px !important;
  margin-bottom: 60px !important;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.faq-label.in {
  opacity: 1;
  transform: translateY(0);
}

.faq-title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.faq-title.in {
  opacity: 1;
  transform: translateY(0);
}

.faq-kicker {
  font-size: clamp(13.5px, 1.05vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  margin: 0 !important;
  max-width: 580px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.faq-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.faq-count {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 22px;
  background: rgba(156, 255, 0, 0.05);
  border: 1px solid rgba(156, 255, 0, 0.15);
  border-top: 2px solid #9cff00;
  gap: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.faq-count.in {
  opacity: 1;
  transform: translateY(0);
}

.faq-count-num {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.45) !important;
  line-height: 1 !important;
  display: block !important;
}

.faq-count-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: center !important;
}

.faq-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 40px !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.faq-grid.in {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  border-bottom: 1px solid rgba(156, 255, 0, 0.1) !important;
  position: relative !important;
}

.faq-item:first-child {
  border-top: 1px solid rgba(156, 255, 0, 0.1) !important;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
  pointer-events: none;
}

.faq-item.faq-open::before {
  background: #9cff00;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.faq-question {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 22px 16px 22px 20px !important;
  background: transparent !important;
  border: none !important;
  text-align: left !important;
  cursor: pointer !important;
  color: #e8ead1 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  transition: color 0.3s ease, background 0.3s ease !important;
}

.faq-question:hover {
  color: #ffffff !important;
  background: rgba(156, 255, 0, 0.03) !important;
}

.faq-item.faq-open .faq-question {
  color: #ffffff !important;
}

.faq-icon {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid rgba(156, 255, 0, 0.25) !important;
  background: rgba(156, 255, 0, 0.04) !important;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s, transform 0.35s ease !important;
  position: relative !important;
}

.faq-item.faq-open .faq-icon {
  background: rgba(156, 255, 0, 0.12) !important;
  border-color: rgba(156, 255, 0, 0.55) !important;
  transform: rotate(45deg) !important;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #9cff00;
  border-radius: 1px;
  transition: opacity 0.25s, background 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-answer {
  overflow: hidden !important;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease !important;
  opacity: 0;
}

.faq-item.faq-open .faq-answer {
  opacity: 1 !important;
}

.faq-answer-inner {
  padding: 0 16px 22px 20px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #fff !important;
  border-left: 2px solid rgba(156, 255, 0, 0.15) !important;
  margin-left: 0 !important;
}

.faq-item.faq-open .faq-answer-inner {
  border-left-color: rgba(156, 255, 0, 0.3) !important;
}

@media (max-width: 1200px) {
  .faq-section .faq-container {
    padding: 0 32px !important;
  }

  .faq-grid {
    gap: 0 28px !important;
  }
}

@media (max-width: 900px) {
  .faq-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .faq-count {
    display: none !important;
  }

  .faq-question {
    font-size: 15px !important;
  }
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .faq-col:last-child .faq-item:first-child {
    border-top: none !important;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 72px 0 80px !important;
  }

  .faq-section .faq-container {
    padding: 0 20px !important;
  }

  .faq-head {
    margin-bottom: 40px !important;
  }

  .faq-question {
    font-size: 14px !important;
    padding: 20px 14px 20px 16px !important;
  }

  .faq-answer-inner {
    padding: 0 14px 18px 16px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0 68px !important;
  }

  .faq-section .faq-container {
    padding: 0 16px !important;
  }

  .faq-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .faq-question {
    font-size: 13.5px !important;
    padding: 18px 12px 18px 14px !important;
    gap: 12px !important;
  }

  .faq-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .faq-answer-inner {
    font-size: 13px !important;
    padding: 0 12px 16px 14px !important;
  }
}

@media (max-width: 380px) {
  .faq-section .faq-container {
    padding: 0 12px !important;
  }

  .faq-question {
    font-size: 13px !important;
  }
}














.why-section {
  background: linear-gradient(160deg, #d2d5a6 0%, #c8cb94 55%, #bfc274 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.why-section *,
.why-section *::before,
.why-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 46, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 46, 24, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(42, 46, 24, 0.025) 110px, rgba(42, 46, 24, 0.025) 111px);
  pointer-events: none;
  z-index: 0;
}

.why-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(42, 46, 24, 0.4) 30%,
      rgba(42, 46, 24, 0.65) 50%,
      rgba(42, 46, 24, 0.4) 70%,
      transparent 100%);
}

.why-section .why-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.why-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 32px !important;
  margin-bottom: 56px !important;
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 16px !important;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}

.why-label.in {
  opacity: 1;
  transform: translateY(0);
}

.why-title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;
  margin-bottom: 12px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.why-title.in {
  opacity: 1;
  transform: translateY(0);
}

.why-kicker {
  font-size: clamp(13.5px, 1.05vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  max-width: 580px !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.why-kicker.in {
  opacity: 1;
  transform: translateY(0);
}

.why-stat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 22px;
  background: rgba(42, 46, 24, 0.09);
  border: 1px solid rgba(42, 46, 24, 0.2);
  border-top: 2px solid #4b5320;
  gap: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.why-stat.in {
  opacity: 1;
  transform: translateY(0);
}

.why-stat-num {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #1a1e0e !important;
  line-height: 1 !important;
  display: block !important;
}

.why-stat-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  white-space: nowrap !important;
  display: block !important;
  text-align: center !important;
}

.why-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

.why-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.80) !important;
  border: 1px solid rgba(42, 46, 24, 0.15) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 36px 34px 32px !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.3s ease !important;
  cursor: default !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  opacity: 0;
  transform: translateY(36px);
}

.why-card.in {
  opacity: 1;
  transform: translateY(0);
}

.why-card:nth-child(1) {
  transition-delay: 0.05s;
}

.why-card:nth-child(2) {
  transition-delay: 0.15s;
}

.why-card:nth-child(3) {
  transition-delay: 0.25s;
}

.why-card:nth-child(4) {
  transition-delay: 0.35s;
}

.why-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 44px rgba(42, 46, 24, 0.18), 0 2px 8px rgba(42, 46, 24, 0.08) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(42, 46, 24, 0.2);
  transition: background 0.35s ease;
}

.why-card:hover::before {
  background: #2f3522;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 14px;
  height: 14px;
  border-bottom: 1.5px solid rgba(42, 46, 24, 0.2);
  border-right: 1.5px solid rgba(42, 46, 24, 0.2);
  transition: border-color 0.3s;
  pointer-events: none;
}

.why-card:hover::after {
  border-color: rgba(42, 46, 24, 0.45);
}

.why-card-icon {
  width: 52px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid rgba(42, 46, 24, 0.25) !important;
  background: rgba(42, 46, 24, 0.06) !important;
  margin-bottom: 22px !important;
  flex-shrink: 0 !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s !important;
}

.why-card:hover .why-card-icon {
  background: rgba(42, 46, 24, 0.12) !important;
  border-color: rgba(42, 46, 24, 0.45) !important;
}

.why-card-icon svg {
  width: 26px !important;
  height: 26px !important;
  stroke: #2f3522 !important;
  fill: none !important;
  stroke-width: 1.8 !important;
}

.why-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-bottom: 18px !important;
}

.why-badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  display: inline-block !important;
  text-decoration: none !important;
  text-shadow: none !important;
  background: rgba(42, 46, 24, 0.1) !important;
  border: 1px solid rgba(42, 46, 24, 0.22) !important;
  color: #2a2e18 !important;
  transition: background 0.25s, border-color 0.25s !important;
}

.why-badge.accent {
  background: rgba(42, 46, 24, 0.16) !important;
  border-color: rgba(42, 46, 24, 0.35) !important;
  color: #1a1e0e !important;
}

.why-card:hover .why-badge {
  background: rgba(42, 46, 24, 0.14) !important;
  border-color: rgba(42, 46, 24, 0.32) !important;
}

.why-card h3 {
  font-size: clamp(18px, 1.7vw, 24px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: #1a1e0e !important;
  margin: 0 0 14px !important;
  line-height: 1.15 !important;
  text-shadow: none !important;
  transition: color 0.3s !important;
}

.why-card:hover h3 {
  color: #0e1008 !important;
}

.why-card p {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #2e3220 !important;
  margin: 0 !important;
  text-shadow: none !important;
  flex: 1 !important;
}

.why-card-stat {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 22px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(42, 46, 24, 0.1) !important;
}

.why-card-stat-num {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #2f3522 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.why-card-stat-lbl {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #4a4f46 !important;
  line-height: 1.4 !important;
  display: block !important;
}

@media (max-width: 1200px) {
  .why-section .why-container {
    padding: 0 32px !important;
  }

  .why-grid {
    gap: 20px !important;
  }
}

@media (max-width: 900px) {
  .why-head {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .why-stat {
    display: none !important;
  }

  .why-card {
    padding: 28px 26px 26px !important;
  }
}

@media (max-width: 700px) {
  .why-section {
    padding: 72px 0 80px !important;
  }

  .why-section .why-container {
    padding: 0 20px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .why-head {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 60px 0 68px !important;
  }

  .why-section .why-container {
    padding: 0 16px !important;
  }

  .why-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .why-card {
    padding: 24px 20px 22px !important;
  }

  .why-card-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 18px !important;
  }

  .why-card-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .why-card h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 380px) {
  .why-section .why-container {
    padding: 0 12px !important;
  }

  .why-card {
    padding: 20px 16px 18px !important;
  }

  .why-card p {
    font-size: 13.5px !important;
  }
}












.contacts-section {
  background: linear-gradient(150deg, #1a1d0f 0%, #2f3522 50%, #1e2112 100%) !important;
  padding: 100px 0 0 !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.contacts-section *,
.contacts-section *::before,
.contacts-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Grid texture */
.contacts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal stripes */
.contacts-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.012) 110px, rgba(156, 255, 0, 0.012) 111px);
  pointer-events: none;
  z-index: 0;
}

/* Top accent line */
.contacts-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.8) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

/* Scan line */
.contacts-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%, rgba(156, 255, 0, 0.2) 50%, transparent 100%);
  animation: ctScan 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ctScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.contacts-section .ct-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.ct-cta-block {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 48px !important;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.1) !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ct-cta-block.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
}

.ct-cta-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.ct-cta-title {
  font-size: clamp(28px, 3.5vw, 54px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
  max-width: 680px !important;
}

.ct-cta-title span {
  color: #9cff00 !important;
  text-shadow: 0 0 16px rgba(156, 255, 0, 0.45) !important;
}

.ct-cta-sub {
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  max-width: 560px !important;
  margin: 0 !important;
}

.ct-cta-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  min-width: 220px !important;
}

.ct-btn-primary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #9cff00 !important;
  border: none !important;
  color: #1a1e0e !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(156, 255, 0, 0.35) !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  text-decoration: none !important;
}

.ct-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.ct-btn-primary:hover {
  box-shadow: 0 8px 36px rgba(156, 255, 0, 0.55) !important;
  transform: translateY(-2px) !important;
}

.ct-btn-primary:hover::before {
  left: 130%;
}

.ct-btn-primary span,
.ct-btn-primary svg {
  position: relative;
  z-index: 1;
}

.ct-btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.ct-btn-primary:hover svg {
  transform: translateX(4px);
}

.ct-btn-secondary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: 1.5px solid rgba(156, 255, 0, 0.4) !important;
  color: #9cff00 !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  transition: color 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
}

.ct-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #9cff00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ct-btn-secondary:hover {
  color: #1a1e0e !important;
  box-shadow: 0 0 20px rgba(156, 255, 0, 0.25) !important;
}

.ct-btn-secondary:hover::before {
  transform: scaleX(1);
}

.ct-btn-secondary span,
.ct-btn-secondary svg {
  position: relative;
  z-index: 1;
}

.ct-btn-secondary svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

.ct-contacts-block {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 0 !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.ct-contacts-block.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-info {
  padding: 56px 48px 56px 0 !important;
  border-right: 1px solid rgba(156, 255, 0, 0.1) !important;
}

.ct-info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 28px !important;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.35);
}

.ct-info-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
}

/* Contact rows */
.ct-rows {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.ct-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.07) !important;
  transition: background 0.25s !important;
}

.ct-row:first-child {
  border-top: 1px solid rgba(156, 255, 0, 0.07) !important;
}

.ct-row:hover {
  background: rgba(156, 255, 0, 0.02) !important;
}

/* Icon box */
.ct-row-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(156, 255, 0, 0.22) !important;
  background: rgba(156, 255, 0, 0.05) !important;
  flex-shrink: 0 !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s !important;
}

.ct-row:hover .ct-row-icon {
  background: rgba(156, 255, 0, 0.1) !important;
  border-color: rgba(156, 255, 0, 0.45) !important;
}

.ct-row-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.ct-row-body {
  flex: 1 !important;
  min-width: 0 !important;
}

.ct-row-lbl {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #6b7055 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.ct-row-val {
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #e8ead1 !important;
  text-decoration: none !important;
  display: block !important;
  transition: color 0.25s !important;
}

a.ct-row-val:hover {
  color: #9cff00 !important;
}

.ct-row-val strong {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 12px rgba(156, 255, 0, 0.35) !important;
  display: block !important;
  letter-spacing: 0.04em !important;
}

.ct-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}

.ct-social-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #e8ead1 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(156, 255, 0, 0.15) !important;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.ct-social-link:hover {
  background: rgba(156, 255, 0, 0.08) !important;
  border-color: rgba(156, 255, 0, 0.4) !important;
  color: #9cff00 !important;
}

.ct-social-link svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

/* ── RIGHT: map ── */
.ct-map {
  position: relative !important;
  overflow: hidden !important;
}

/* Map filter overlay */
.ct-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(28, 30, 14, 0.35) 0%,
      transparent 30%);
  z-index: 2 !important;
  pointer-events: none !important;
}

/* Corner brackets on map */
.ct-map-tl, .ct-map-tr, .ct-map-bl, .ct-map-br {
  position: absolute !important;
  width: 18px !important;
  height: 18px !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.ct-map-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
}

.ct-map-tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
}

.ct-map-bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
}

.ct-map-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
}

.ct-map-status {
  position: absolute !important;
  top: 16px;
  right: 36px;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 4 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.5) !important;
  pointer-events: none !important;
}

.ct-map-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #9cff00 !important;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.8) !important;
  animation: mapDotPulse 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes mapDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.ct-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  border: none !important;
  display: block !important;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05) !important;
  transition: filter 0.4s ease !important;
}

.ct-map:hover iframe {
  filter: grayscale(0.2) brightness(0.92) contrast(1.05) !important;
}

.ct-bottom-bar {
  margin-top: 0 !important;
  border-top: 1px solid rgba(156, 255, 0, 0.1) !important;
  padding: 20px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.ct-copyright {
  font-size: 12px !important;
  color: #4b5320 !important;
  line-height: 1.5 !important;
}

.ct-policy {
  display: flex !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
}

.ct-policy a {
  font-size: 12px !important;
  color: #4b5320 !important;
  text-decoration: none !important;
  transition: color 0.25s !important;
}

.ct-policy a:hover {
  color: #9cff00 !important;
}

@media (max-width: 1200px) {
  .contacts-section .ct-container {
    padding: 0 32px !important;
  }

  .ct-contacts-block {
    grid-template-columns: 1fr 1.2fr !important;
  }
}

@media (max-width: 1000px) {
  .ct-cta-block {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ct-cta-actions {
    flex-direction: row !important;
    min-width: 0 !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 800px) {
  .ct-contacts-block {
    grid-template-columns: 1fr !important;
  }

  .ct-info {
    padding: 48px 0 40px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(156, 255, 0, 0.1) !important;
  }

  .ct-map iframe {
    min-height: 320px !important;
  }
}

@media (max-width: 640px) {
  .contacts-section {
    padding: 72px 0 0 !important;
  }

  .contacts-section .ct-container {
    padding: 0 20px !important;
  }

  .ct-cta-block {
    padding-bottom: 48px !important;
  }

  .ct-cta-actions {
    flex-direction: column !important;
  }

  .ct-btn-primary, .ct-btn-secondary {
    width: 100% !important;
  }

  .ct-map iframe {
    min-height: 280px !important;
  }

  .ct-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .contacts-section {
    padding: 60px 0 0 !important;
  }

  .contacts-section .ct-container {
    padding: 0 16px !important;
  }

  .ct-cta-title {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .ct-info {
    padding: 36px 0 32px !important;
  }

  .ct-row {
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .ct-row-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .ct-row-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .ct-map iframe {
    min-height: 250px !important;
  }
}

@media (max-width: 380px) {
  .contacts-section .ct-container {
    padding: 0 12px !important;
  }

  .ct-row-val {
    font-size: 13.5px !important;
  }

  .ct-row-val strong {
    font-size: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-scan {
    animation: none !important;
  }

  .ct-map-dot {
    animation: none !important;
  }
}














.contacts-section {
  background: linear-gradient(150deg, #1a1d0f 0%, #2f3522 50%, #1e2112 100%) !important;
  padding: 100px 0 0 !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.contacts-section *,
.contacts-section *::before,
.contacts-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.contacts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.contacts-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.012) 110px, rgba(156, 255, 0, 0.012) 111px);
  pointer-events: none;
  z-index: 0;
}

.contacts-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.8) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.contacts-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%, rgba(156, 255, 0, 0.2) 50%, transparent 100%);
  animation: ctScan 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ctScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.contacts-section .ct-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.ct-cta-block {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 48px !important;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.1) !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ct-cta-block.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
}

.ct-cta-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.ct-cta-title {
  font-size: clamp(28px, 3.5vw, 54px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
  max-width: 680px !important;
}

.ct-cta-title span {
  color: #9cff00 !important;
  text-shadow: 0 0 16px rgba(156, 255, 0, 0.45) !important;
}

.ct-cta-sub {
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  max-width: 560px !important;
  margin: 0 !important;
}

.ct-cta-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  min-width: 220px !important;
}

.ct-btn-primary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #9cff00 !important;
  border: none !important;
  color: #1a1e0e !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(156, 255, 0, 0.35) !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  text-decoration: none !important;
}

.ct-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.ct-btn-primary:hover {
  box-shadow: 0 8px 36px rgba(156, 255, 0, 0.55) !important;
  transform: translateY(-2px) !important;
}

.ct-btn-primary:hover::before {
  left: 130%;
}

.ct-btn-primary span,
.ct-btn-primary svg {
  position: relative;
  z-index: 1;
}

.ct-btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.ct-btn-primary:hover svg {
  transform: translateX(4px);
}

.ct-btn-secondary {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: 1.5px solid rgba(156, 255, 0, 0.4) !important;
  color: #9cff00 !important;
  cursor: pointer !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden !important;
  transition: color 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
}

.ct-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #9cff00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ct-btn-secondary:hover {
  color: #1a1e0e !important;
  box-shadow: 0 0 20px rgba(156, 255, 0, 0.25) !important;
}

.ct-btn-secondary:hover::before {
  transform: scaleX(1);
}

.ct-btn-secondary span,
.ct-btn-secondary svg {
  position: relative;
  z-index: 1;
}

.ct-btn-secondary svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

.ct-contacts-block {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 0 !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.ct-contacts-block.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-info {
  padding: 56px 48px 56px 0 !important;
  border-right: 1px solid rgba(156, 255, 0, 0.1) !important;
}

.ct-info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 28px !important;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.35);
}

.ct-info-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
}

.ct-rows {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.ct-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.07) !important;
  transition: background 0.25s !important;
}

.ct-row:first-child {
  border-top: 1px solid rgba(156, 255, 0, 0.07) !important;
}

.ct-row:hover {
  background: rgba(156, 255, 0, 0.02) !important;
}

.ct-row-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(156, 255, 0, 0.22) !important;
  background: rgba(156, 255, 0, 0.05) !important;
  flex-shrink: 0 !important;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.3s, border-color 0.3s !important;
}

.ct-row:hover .ct-row-icon {
  background: rgba(156, 255, 0, 0.1) !important;
  border-color: rgba(156, 255, 0, 0.45) !important;
}

.ct-row-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.ct-row-body {
  flex: 1 !important;
  min-width: 0 !important;
}

.ct-row-lbl {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.ct-row-val {
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #e8ead1 !important;
  text-decoration: none !important;
  display: block !important;
  transition: color 0.25s !important;
}

a.ct-row-val:hover {
  color: #9cff00 !important;
}

.ct-row-val strong {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 12px rgba(156, 255, 0, 0.35) !important;
  display: block !important;
  letter-spacing: 0.04em !important;
}

.ct-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}

.ct-social-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #e8ead1 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(156, 255, 0, 0.15) !important;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.ct-social-link:hover {
  background: rgba(156, 255, 0, 0.08) !important;
  border-color: rgba(156, 255, 0, 0.4) !important;
  color: #9cff00 !important;
}

.ct-social-link svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.ct-map {
  position: relative !important;
  overflow: hidden !important;
}

.ct-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(28, 30, 14, 0.35) 0%,
      transparent 30%);
  z-index: 2 !important;
  pointer-events: none !important;
}

.ct-map-tl, .ct-map-tr, .ct-map-bl, .ct-map-br {
  position: absolute !important;
  width: 18px !important;
  height: 18px !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.ct-map-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
}

.ct-map-tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
}

.ct-map-bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid #9cff00;
  border-left: 2px solid #9cff00;
}

.ct-map-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid #9cff00;
  border-right: 2px solid #9cff00;
}

.ct-map-status {
  position: absolute !important;
  top: 16px;
  right: 36px;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 4 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  text-shadow: 0 0 8px rgba(156, 255, 0, 0.5) !important;
  pointer-events: none !important;
}

.ct-map-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #9cff00 !important;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.8) !important;
  animation: mapDotPulse 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes mapDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.ct-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  border: none !important;
  display: block !important;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05) !important;
  transition: filter 0.4s ease !important;
}

.ct-map:hover iframe {
  filter: grayscale(0.2) brightness(0.92) contrast(1.05) !important;
}

.ct-bottom-bar {
  margin-top: 0 !important;
  border-top: 1px solid rgba(156, 255, 0, 0.1) !important;
  padding: 20px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.ct-copyright {
  font-size: 12px !important;
  color: #4b5320 !important;
  line-height: 1.5 !important;
}

.ct-policy {
  display: flex !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
}

.ct-policy a {
  font-size: 12px !important;
  color: #4b5320 !important;
  text-decoration: none !important;
  transition: color 0.25s !important;
}

.ct-policy a:hover {
  color: #9cff00 !important;
}

@media (max-width: 1200px) {
  .contacts-section .ct-container {
    padding: 0 32px !important;
  }

  .ct-contacts-block {
    grid-template-columns: 1fr 1.2fr !important;
  }
}

@media (max-width: 1000px) {
  .ct-cta-block {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ct-cta-actions {
    flex-direction: row !important;
    min-width: 0 !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 800px) {
  .ct-contacts-block {
    grid-template-columns: 1fr !important;
  }

  .ct-info {
    padding: 48px 0 40px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(156, 255, 0, 0.1) !important;
  }

  .ct-map iframe {
    min-height: 320px !important;
  }
}

@media (max-width: 640px) {
  .contacts-section {
    padding: 72px 0 0 !important;
  }

  .contacts-section .ct-container {
    padding: 0 20px !important;
  }

  .ct-cta-block {
    padding-bottom: 48px !important;
  }

  .ct-cta-actions {
    flex-direction: column !important;
  }

  .ct-btn-primary, .ct-btn-secondary {
    width: 100% !important;
  }

  .ct-map iframe {
    min-height: 280px !important;
  }

  .ct-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .contacts-section {
    padding: 60px 0 0 !important;
  }

  .contacts-section .ct-container {
    padding: 0 16px !important;
  }

  .ct-cta-title {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .ct-info {
    padding: 36px 0 32px !important;
  }

  .ct-row {
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .ct-row-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .ct-row-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .ct-map iframe {
    min-height: 250px !important;
  }
}

@media (max-width: 380px) {
  .contacts-section .ct-container {
    padding: 0 12px !important;
  }

  .ct-row-val {
    font-size: 13.5px !important;
  }

  .ct-row-val strong {
    font-size: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-scan {
    animation: none !important;
  }

  .ct-map-dot {
    animation: none !important;
  }
}











.price-section {
  background: linear-gradient(150deg, #1a1d0f 0%, #2f3522 50%, #1e2112 100%) !important;
  padding: 100px 0 108px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #e8ead1 !important;
  box-sizing: border-box !important;
}

.price-section *,
.price-section *::before,
.price-section *::after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased !important;
}

.price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.price-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-52deg,
      transparent, transparent 110px,
      rgba(156, 255, 0, 0.01) 110px, rgba(156, 255, 0, 0.01) 111px);
  pointer-events: none;
  z-index: 0;
}

.price-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(156, 255, 0, 0.5) 30%,
      rgba(156, 255, 0, 0.8) 50%,
      rgba(156, 255, 0, 0.5) 70%,
      transparent 100%);
}

.price-section .pr-wrap {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.price-head {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: flex-end !important;
  gap: 36px !important;
  margin-bottom: 60px !important;
}

.price-head-left {
  max-width: 700px !important;
}

.price-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.price-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.price-label.in {
  opacity: 1;
  transform: translateY(0);
}

.price-title {
  font-size: clamp(26px, 3vw, 46px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.price-title.in {
  opacity: 1;
  transform: translateY(0);
}

.price-sub {
  font-size: clamp(13.5px, 1.05vw, 15.5px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.16s, transform 0.7s ease 0.16s;
}

.price-sub.in {
  opacity: 1;
  transform: translateY(0);
}

.price-cta-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.22s, transform 0.7s ease 0.22s;
}

.price-cta-badge.in {
  opacity: 1;
  transform: translateY(0);
}

.price-cta-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 13px 26px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #9cff00 !important;
  border: none !important;
  color: #1a1e0e !important;
  cursor: pointer !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  overflow: hidden !important;
  box-shadow: 0 4px 22px rgba(156, 255, 0, 0.3) !important;
  transition: box-shadow 0.3s, transform 0.25s !important;
  white-space: nowrap !important;
}

.price-cta-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.price-cta-btn:hover {
  box-shadow: 0 8px 32px rgba(156, 255, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

.price-cta-btn:hover::before {
  left: 130%;
}

.price-cta-btn span, .price-cta-btn svg {
  position: relative;
  z-index: 1;
}

.price-cta-btn svg {
  width: 13px !important;
  height: 13px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s !important;
}

.price-cta-btn:hover svg {
  transform: translateX(3px);
}

.price-cta-note {
  font-size: 11px !important;
  color: #fff !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

.price-tables {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.price-tables.in {
  opacity: 1;
  transform: translateY(0);
}

.price-group {
  border: 1px solid rgba(156, 255, 0, 0.1) !important;
  overflow: hidden !important;
}

.price-group-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 18px 24px !important;
  background: rgba(156, 255, 0, 0.04) !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.08) !important;
  cursor: pointer !important;
  width: 100% !important;
  text-align: left !important;
  border: none !important;
  transition: background 0.25s !important;
  color: #e8ead1 !important;
}

.price-group-head:hover {
  background: rgba(156, 255, 0, 0.07) !important;
}

.price-group.open .price-group-head {
  background: rgba(156, 255, 0, 0.07) !important;
  border-bottom: 1px solid rgba(156, 255, 0, 0.12) !important;
}

.price-group-title-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.price-group-num {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #4b5320 !important;
  letter-spacing: 0.1em !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.price-group-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #e8ead1 !important;
  line-height: 1.2 !important;
  transition: color 0.25s !important;
}

.price-group-head:hover .price-group-name,
.price-group.open .price-group-name {
  color: #ffffff !important;
}

.price-group-cnt {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: #9cff00 !important;
  background: rgba(156, 255, 0, 0.08) !important;
  border: 1px solid rgba(156, 255, 0, 0.2) !important;
  padding: 2px 8px !important;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.price-group-chevron {
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(156, 255, 0, 0.2) !important;
  background: rgba(156, 255, 0, 0.04) !important;
  flex-shrink: 0 !important;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
  transition: background 0.25s, border-color 0.25s !important;
}

.price-group.open .price-group-chevron {
  background: rgba(156, 255, 0, 0.1) !important;
  border-color: rgba(156, 255, 0, 0.4) !important;
}

.price-group-chevron svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #9cff00 !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  transition: transform 0.35s ease !important;
}

.price-group.open .price-group-chevron svg {
  transform: rotate(180deg) !important;
}

.price-group-body {
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.price-table {
  width: 100% !important;
  border-collapse: collapse !important;
}

.price-table thead tr {
  border-bottom: 1px solid rgba(156, 255, 0, 0.12) !important;
}

.price-table thead th {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  padding: 10px 24px !important;
  text-align: left !important;
  background: rgba(0, 0, 0, 0.15) !important;
  white-space: nowrap !important;
}

.price-table thead th:nth-child(2) {
  text-align: center !important;
}

.price-table thead th:nth-child(3) {
  text-align: right !important;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(156, 255, 0, 0.05) !important;
  transition: background 0.2s !important;
}

.price-table tbody tr:last-child {
  border-bottom: none !important;
}

.price-table tbody tr:hover {
  background: rgba(156, 255, 0, 0.03) !important;
}

.price-table td {
  padding: 13px 24px !important;
  vertical-align: middle !important;
}

.price-table td:first-child {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #c8cab0 !important;
  line-height: 1.45 !important;
  width: 100% !important;
}

.price-table tbody tr:hover td:first-child {
  color: #e8ead1 !important;
}

.price-table td:nth-child(2) {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #6b7055 !important;
  text-align: center !important;
  white-space: nowrap !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.price-table td:nth-child(3) {
  text-align: right !important;
  white-space: nowrap !important;
  padding-left: 16px !important;
}

.price-val {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #9cff00 !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.3) !important;
  display: block !important;
  white-space: nowrap !important;
}

.price-val-from {
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #4b5320 !important;
  display: block !important;
  margin-bottom: 1px !important;
}

.price-note {
  margin-top: 24px !important;
  padding: 16px 20px !important;
  border-left: 3px solid rgba(156, 255, 0, 0.25) !important;
  background: rgba(156, 255, 0, 0.03) !important;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #fff !important;
}

.price-note strong {
  color: #fff !important;
  font-weight: 600 !important;
}

@media (max-width: 1200px) {
  .price-section .pr-wrap {
    padding: 0 32px !important;
  }
}

@media (max-width: 900px) {
  .price-head {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .price-cta-badge {
    flex-direction: row !important;
    align-items: center !important;
  }

  .price-cta-note {
    text-align: left !important;
  }
}

@media (max-width: 700px) {

  .hero {
    padding-top: 25px !important;

  }

  .price-section {
    padding: 72px 0 80px !important;
  }

  .price-section .pr-wrap {
    padding: 0 20px !important;
  }

  .price-head {
    margin-bottom: 40px !important;
  }

  .price-table thead th:nth-child(2),
  .price-table td:nth-child(2) {
    display: none !important;
  }

  .price-table td {
    padding: 11px 16px !important;
  }

  .price-table thead th {
    padding: 9px 16px !important;
  }

  .price-group-head {
    padding: 16px 18px !important;
  }
}

@media (max-width: 480px) {
  .price-section {
    padding: 60px 0 68px !important;
  }

  .price-section .pr-wrap {
    padding: 0 16px !important;
  }

  .price-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
  }

  .price-group-name {
    font-size: 13.5px !important;
  }

  .price-group-cnt {
    display: none !important;
  }

  .price-group-head {
    padding: 14px 14px !important;
    gap: 10px !important;
  }

  .price-group-num {
    font-size: 11px !important;
  }

  .price-table td {
    padding: 10px 14px !important;
  }

  .price-table td:first-child {
    font-size: 12.5px !important;
  }

  .price-val {
    font-size: 14px !important;
  }

  .price-cta-badge {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .price-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 380px) {
  .price-section .pr-wrap {
    padding: 0 12px !important;
  }

  .price-table td:first-child {
    font-size: 12px !important;
  }

  .price-group-name {
    font-size: 12.5px !important;
    letter-spacing: 0.03em !important;
  }

  .price-val {
    font-size: 13px !important;
  }
}


.ct-map img {
  width: 100%;
  height: 100%;
}


.protection-project {
  padding: 80px 0px;
  background: #e8ebc3;
  color: #171717;
}

.protection-project__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 48px;
}

/* Заголовок */

.protection-project__head {
  max-width: 850px;
  margin-bottom: 45px;
}

.protection-project__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;
  background: #252525;
}

.protection-project__title {
  margin: 0 0 22px;

  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.protection-project__text {
  max-width: 700px;
  margin: 0;

  font-size: 18px;
  line-height: 1.6;
  color: #666;
}


/* Галерея */

.protection-project__gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}

.protection-project__item {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.protection-project__item--main {
  grid-row: 1 / 3;
}

.protection-project__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.protection-project__item:hover img {
  transform: scale(1.035);
}


/* Адаптив */

@media (max-width: 900px) {

  .protection-project {
  
  padding: 20px 0px;
  }

  .protection-project__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 380px 230px 230px;
  }

  .protection-project__item--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}


@media (max-width: 600px) {


  .protection-project__container {
    padding: 0 12px !important;
}



  .protection-project__head {
    margin-bottom: 28px;
  }

  .protection-project__label {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .protection-project__title {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1.08;
  }

  .protection-project__title br {
    display: none;
  }

  .protection-project__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .protection-project__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 160px 160px;
    gap: 8px;
  }

  .protection-project__item--main {
    grid-column: 1 / 3;
  }
}


.protect-portfolio {
  padding: 80px 20px;
  background: #e8ebc3;
  color: #171717;
}

.protect-portfolio__container {
  max-width: 1280px;
  margin: 0 auto;
}


/* Заголовок */

.protect-portfolio__head {
  max-width: 800px;
  margin-bottom: 42px;
}

.protect-portfolio__label {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 14px;

  background: #252525;
  color: #fff;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.protect-portfolio__title {
  margin: 0 0 18px;

  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.protect-portfolio__text {
  max-width: 680px;
  margin: 0;

  color: #666;
  font-size: 18px;
  line-height: 1.6;
}


/* Сетка */

.protect-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}


/* Фото */

.protect-portfolio__item {
  border-radius: 10px;
  position: relative;
  display: block;
  overflow: hidden;

  aspect-ratio: 4 / 3;
  background: #eee;

  text-decoration: none;
}

.protect-portfolio__item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


/* Затемнение */

.protect-portfolio__item::after {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0);

  transition: background 0.35s ease;

  pointer-events: none;
}


/* Hover */

.protect-portfolio__item:hover img {
  transform: scale(1.05);
}

.protect-portfolio__item:hover::after {
  background: rgba(0, 0, 0, 0.08);
}


/* Планшеты */

@media (max-width: 1000px) {

  .protect-portfolio {
    padding: 65px 20px;
  }

  .protect-portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Мобильные */

@media (max-width: 650px) {

  .protect-portfolio {
    padding: 45px 15px;
  }

  .protect-portfolio__head {
    margin-bottom: 28px;
  }

  .protect-portfolio__label {
    margin-bottom: 12px;

    padding: 7px 11px;

    font-size: 11px;
  }

  .protect-portfolio__title {
    margin-bottom: 14px;

    font-size: 34px;
  }

  .protect-portfolio__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .protect-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .protect-portfolio__item {
    aspect-ratio: 1 / 1;
  }
}


/* Очень маленькие экраны */

@media (max-width: 380px) {

  .protect-portfolio__grid {
    grid-template-columns: 1fr;
  }

  .protect-portfolio__item {
    aspect-ratio: 4 / 3;
  }
}


/* =========================================================
   ULTRANIT DRONE
   ========================================================= */

.ultranit {
  --u-bg: #f0f2c880;
  --u-dark: #101820;
  --u-muted: #434b42;
  --u-line: rgba(16, 24, 32, .14);
  --u-accent: #9cff00;

  background: var(--u-bg);
  color: var(--u-dark);
  padding: 110px 0;
  overflow: hidden;
}

.ultranit *,
.ultranit *::before,
.ultranit *::after {
  box-sizing: border-box;
}

.ultranit__container {
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto;
}

/* Header */

.ultranit__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.ultranit__eyebrow,
.ultranit__section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #2a2e18 !important;
  margin-bottom: 16px !important;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ultranit__eyebrow::before,
.ultranit__section-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #2a2e18;
  flex-shrink: 0;
}



.ultranit__title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.ultranit__title span {
  color: #687078;
}

.ultranit__intro {}

.ultranit__intro p {
  max-width: 520px;

  color: var(--u-muted);
  font-size: 17px;
  line-height: 1.25;
}

.ultranit__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ultranit__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;

  border: 1px solid var(--u-line);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 600;
}


/* Gallery */

.ultranit__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 245px);
  gap: 8px;
  margin-bottom: 20px;
}

.ultranit__photo {
  border-radius: 10px;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d8dade;
}

.ultranit__photo--main {
  grid-row: 1 / 3;
}

.ultranit__photo:nth-child(1) {
  border-radius: 4px 0 0 4px;
}

.ultranit__photo:nth-child(3) {
  border-radius: 0 4px 0 0;
}

.ultranit__photo:nth-child(6) {
  border-radius: 0 0 4px 0;
}

.ultranit__photo img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform .55s ease;
}

.ultranit__photo:hover img {
  transform: scale(1.035);
}


/* Content */

.ultranit__content {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, .9fr) minmax(550px, 1.1fr);
  gap: 110px;
  padding-top: 20px;
}

.ultranit__benefits h3 {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #1a1e0e !important;

  text-shadow: none !important;
  transform: translateY(22px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.ultranit__text {
  max-width: 620px;
  margin: 0 0 10px;

  color: var(--u-muted);
  font-size: 16px;
  line-height: 1.65;
}


/* Features */

.ultranit__features {
  border-top: 1px solid var(--u-line);
}

.ultranit__feature {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  padding: 21px 0;

  border-bottom: 1px solid var(--u-line);
}

.ultranit__feature-num {
  padding-top: 3px;

  color: #8a9095;
  font-size: 11px;
  font-weight: 700;
}

.ultranit__feature strong {
  display: block;
  margin-bottom: 5px;

  font-size: 16px;
  line-height: 1.25;
}

.ultranit__feature div span {
  color: var(--u-muted);
  font-size: 13px;
  line-height: 1.4;
}


/* Product cards */

.ultranit__specs {
  display: flex;
  flex-direction: column;
}

.ultranit__product {
  padding: 26px 0;
  border-top: 1px solid var(--u-dark);
}

.ultranit__product:last-child {
  border-bottom: 1px solid var(--u-dark);
}

.ultranit__product-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 35px;
}

.ultranit__product-type {
  display: block;
  margin-bottom: 7px;

  color: var(--u-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
}

.ultranit__product h4 {
  margin: 0;

  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.ultranit__color {
  align-self: flex-start;
  padding: 7px 11px;

  border: 1px solid var(--u-line);
  border-radius: 50px;

  color: var(--u-muted);
  font-size: 11px;
}

.ultranit__params {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
}

.ultranit__params>div {
  min-width: 0;
  padding: 0 15px;

  border-left: 1px solid var(--u-line);
}

.ultranit__params>div:first-child {
  padding-left: 0;
  border-left: 0;
}

.ultranit__params dt {
  margin-bottom: 9px;

  color: var(--u-muted);
  font-size: 11px;
  line-height: 1.25;
}

.ultranit__params dd {
  margin: 0;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}


/* CTA */

.ultranit__cta {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;

  margin-top: 100px;
  padding: 52px 55px;

  background: var(--u-dark);
  color: #fff;
}

.ultranit__cta-text>span {
  display: block;
  margin-bottom: 18px;

  color: var(--u-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.ultranit__cta h3 {
  margin: 0;

  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

.ultranit__cta-side p {
  max-width: 410px;
  margin: 0 0 26px;

  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.55;
}

.ultranit__button {
  width: 100%;
  min-height: 64px;
  padding: 0 14px 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 0;
  border-radius: 0;
  background: var(--u-accent);
  color: var(--u-dark);

  font: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.ultranit__button:hover {
  transform: translateY(-2px);
}

.ultranit__arrow {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: var(--u-dark);
  color: #fff;

  font-size: 18px;
}



/* =========================================================
   PRODUCT PREVIEW
   ========================================================= */

.ultranit__product-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.ultranit__product-thumb {
  position: relative;
  width: 92px;
  height: 72px;
  flex: 0 0 92px;

  overflow: hidden;
  border-radius: 4px;
  background: #d8dade;
}

.ultranit__product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform .4s ease;
}

.ultranit__product:hover .ultranit__product-thumb img {
  transform: scale(1.06);
}

.ultranit__product-name {
  min-width: 0;
}

.ultranit__product-name .ultranit__product-type {
  margin-bottom: 7px;
}




/* =========================================================
     TABLET
     ========================================================= */

@media (max-width: 1100px) {

  .ultranit {
    padding: 80px 0;
  }

  .ultranit__container {
    width: min(100% - 48px, 1420px);
  }

  .ultranit__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ultranit__intro p {
    max-width: 700px;
  }

  .ultranit__gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 350px 200px;
  }

  .ultranit__photo--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .ultranit__content {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .ultranit__params {
    grid-template-columns: repeat(5, 1fr);
  }

  .ultranit__cta {
    grid-template-columns: 1fr 1fr;
    padding: 42px;
  }
}


/* =========================================================
     MOBILE
     ========================================================= */

@media (max-width: 700px) {

  .ultranit {
    padding: 60px 0;
  }

  .ultranit__container {
    width: calc(100% - 32px);
  }

  .ultranit__head {
    margin-bottom: 32px;
  }

  .ultranit__eyebrow,
  .ultranit__section-label {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .ultranit__title {
    font-size: clamp(39px, 12vw, 58px);
  }

  .ultranit__intro p {
    font-size: 15px;
  }


  /* На мобильном сохраняем ВСЕ 6 фото */
  .ultranit__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 250px 150px 150px;
    gap: 5px;
    margin-bottom: 60px;
  }

  .ultranit__photo--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .ultranit__photo:nth-child(6) {
    display: none;
  }

  /*
      6-е изображение выводим отдельной полосой.
      Если принципиально нужны все 6 одновременно —
      уберите display:none выше и используйте блок ниже.
    */

  .ultranit__content {
    gap: 55px;
  }

  .ultranit__benefits h3 {
    font-size: 38px;
  }

  .ultranit__text {
    margin-bottom: 38px;
    font-size: 15px;
  }

  .ultranit__feature {
    grid-template-columns: 38px 1fr;
  }

  .ultranit__product {
    padding: 26px 0;
  }

  .ultranit__product h4 {
    font-size: 23px;
  }

  .ultranit__params {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .ultranit__params>div {
    padding: 0 12px;
  }

  .ultranit__params>div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .ultranit__params dt {
    margin-bottom: 5px;
  }

  .ultranit__cta {
    grid-template-columns: 1fr;
    gap: 35px;

    margin-top: 65px;
    padding: 32px 24px;
  }

  .ultranit__cta h3 {
    font-size: 35px;
  }
}


/* Маленькие телефоны */

@media (max-width: 390px) {

  .ultranit__gallery {
    grid-template-rows: 220px 130px 130px;
  }

  .ultranit__params {
    grid-template-columns: 1fr;
  }

  .ultranit__params>div {
    padding: 12px 0;
    border-left: 0;
    border-bottom: 1px solid var(--u-line);
  }

  .ultranit__params>div:last-child {
    border-bottom: 0;
  }
}



.sol-label {}



/* Tablet */

@media (max-width: 1100px) {
  .ultranit__product-thumb {
    width: 86px;
    height: 68px;
    flex-basis: 86px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .ultranit__product-top {
    gap: 15px;
    align-items: flex-start;
  }

  .ultranit__product-heading {
    gap: 12px;
  }

  .ultranit__product-thumb {
    width: 72px;
    height: 60px;
    flex: 0 0 72px;
  }

  .ultranit__product-name h4 {
    font-size: 20px;
  }

  .ultranit__color {
    flex-shrink: 0;
  }
}


/* Маленькие телефоны */

@media (max-width: 390px) {

  .ultranit__product-top {
    position: relative;
  }

  .ultranit__product-heading {
    padding-right: 0;
  }

  .ultranit__product-thumb {
    width: 66px;
    height: 58px;
    flex-basis: 66px;
  }

  .ultranit__color {
    display: none;
  }

}

.image-duo {

  background: linear-gradient(150deg, #1e2112 0%, #2f3522 45%, #252b18 100%) !important;
    padding: 32px 0px;

}


.image-duo__cont {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 48px;
}

/* Текстовый блок */
.image-duo__intro {
  max-width: 900px;
  margin-bottom: 36px;
}

.image-duo__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #9cff00 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 10px rgba(156, 255, 0, 0.4);
}

.image-duo__label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #9cff00;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(156, 255, 0, 0.4);
}

.image-duo__title {
  font-size: clamp(24px, 3vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  text-shadow: none !important;
}

.image-duo__description {
  max-width: 720px;
  margin: 0 !important;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

/* Изображения */
.image-duo__images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.image-duo__image {
  position: relative;
  display: block;
/*   height: min(70vh, 650px); */
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  isolation: isolate;
}

.image-duo__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.18));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.image-duo__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), filter 0.5s ease;
}

.image-duo__image:hover img {
  transform: scale(1.03);
  filter: saturate(1.15) contrast(1.05);
}

.image-duo__image:hover::after {
  opacity: 1;
}

/* Планшет */
@media (max-width: 900px) {


  .image-duo__images {
    gap: 12px;
  }

  .image-duo__image {
    border-radius: 15px;
  }
}

/* Мобильные */
@media (max-width: 700px) {

  .image-duo__cont {
    padding: 0 12px !important;
}


  .image-duo__intro {
    margin-bottom: 24px;
  }

  .image-duo__label {
    margin-bottom: 12px !important;
  }

  .image-duo__title {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .image-duo__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .image-duo__images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-duo__image {

    border-radius: 10px;
  }
}

/* Без hover на телефонах */
@media (hover: none) {
  .image-duo__image img {
    transform: none;
    filter: none;
  }

  .image-duo__image::after {
    display: none;
  }
}