:root {
  --forest: #083b2d;
  --forest-2: #0f5a41;
  --green: #6ca832;
  --lime: #a7d84e;
  --gold: #f4c542;
  --gold-2: #ffe69a;
  --cream: #fff8e9;
  --sand: #f5e6c8;
  --white: #ffffff;
  --ink: #12221a;
  --muted: #65766d;
  --line: rgba(8, 59, 45, 0.14);
  --shadow: 0 24px 70px rgba(8, 59, 45, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.section-pad {
  padding: 78px 0;
}
.center {
  text-align: center;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 248, 220, .95) 0%, rgba(255, 255, 255, .98) 42%, rgba(234, 246, 220, .92) 100%);
  transition: opacity .8s ease, visibility .8s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  position: relative;
  z-index: 5;
  width: min(360px, 76vw);
  overflow: visible;
}

.logo-reveal {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,.95) 0%,
    rgba(255,232,130,.85) 22%,
    rgba(244,197,66,.48) 45%,
    rgba(244,197,66,.16) 65%,
    transparent 72%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(.2);
  animation: sunReveal 3.2s ease-in-out infinite;
  pointer-events: none;
}

.logo-shine {
  display: none;
}

@keyframes sunReveal {
  0% {
    transform: translate(-50%, -50%) scale(.15);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  60% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.logo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, .75) 50%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-130%);
  animation: shineSweep 3.2s ease-in-out infinite;
}

.birds {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.birds span {
  position: absolute;
  width: 28px;
  height: 14px;
  opacity: .65;
  animation: flyBird 5s ease-in-out infinite;
}

.birds span::before,
.birds span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  border-top: 3px solid var(--forest);
  border-radius: 50%;
}

.birds span::before {
  left: 0;
  transform: rotate(18deg);
}

.birds span::after {
  right: 0;
  transform: rotate(-18deg);
}

.birds span:nth-child(1) {
  top: 32%;
  left: 20%;
}

.birds span:nth-child(2) {
  top: 24%;
  right: 22%;
  animation-delay: .9s;
}

.birds span:nth-child(3) {
  top: 38%;
  left: 64%;
  animation-delay: 1.6s;
}

.loading-bar {
  position: relative;
  z-index: 7;
  width: min(280px, 70vw);
  height: 7px;
  border-radius: 999px;
  background: rgba(8, 59, 45, .13);
  overflow: hidden;
}

.loading-progress {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--lime));
  animation: loadingMove 2.4s ease-in-out infinite;
}

.preloader p {
  position: relative;
  z-index: 7;
  margin: 0;
  color: var(--forest);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  text-align: center;
}

@keyframes logoBase {
  0%, 100% {
    opacity: .22;
    filter: grayscale(100%) brightness(.85);
    transform: scale(.98);
  }

  50% {
    opacity: 1;
    filter: grayscale(0%) brightness(1.08);
    transform: scale(1.03);
  }
}

@keyframes revealLight {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  60% {
    transform: translateX(130%);
    opacity: 1;
  }

  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }

  35% {
    opacity: .9;
  }

  65% {
    transform: translateX(140%);
    opacity: .8;
  }

  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes flyBird {
  0% {
    transform: translateX(-60px) translateY(22px) scale(.75);
    opacity: 0;
  }

  25% {
    opacity: .75;
  }

  55% {
    transform: translateX(45px) translateY(-16px) scale(1);
  }

  100% {
    transform: translateX(130px) translateY(18px) scale(.75);
    opacity: 0;
  }
}

@keyframes loadingMove {
  0% {
    transform: translateX(-100%);
  }

  55%, 100% {
    transform: translateX(0);
  }
}

@media (max-width: 620px) {
  .loader-logo-wrap {
    width: min(300px, 80vw);
  }

  .preloader p {
    font-size: .68rem;
    padding: 0 20px;
  }
}
.loader-sun {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  position: absolute;
  top: 21%;
  background: linear-gradient(135deg, var(--gold), #fff3b7);
  box-shadow: 0 0 70px rgba(244, 197, 66, 0.55);
  animation: sunFloat 2.6s ease-in-out infinite;
}
.loader-house {
  position: absolute;
  top: 30%;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--lime), var(--gold));
  border-radius: 99px;
  opacity: 0.45;
}
@keyframes loaderPulse {
  50% {
    transform: scale(1.04);
  }
}
@keyframes sunFloat {
  50% {
    transform: translateY(-12px);
  }
}
.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  box-shadow: 0 16px 50px rgba(8, 59, 45, 0.08);
}
.top-line {
  height: 7px;
  background: linear-gradient(90deg, var(--forest), var(--green), var(--gold), var(--lime), var(--forest-2));
}
.header-panel {
  width: min(1220px, 94%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 300px;
  max-height: 128px;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.small-note {
  font-weight: 900;
  color: var(--forest);
  background: linear-gradient(135deg, #fff, var(--cream));
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  padding: 12px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.social-top,
.footer-social {
  display: flex;
  gap: 11px;
}
.social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 14px 30px rgba(8, 59, 45, 0.22);
  transition: 0.35s;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.social svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.social:hover {
  transform: translateY(-5px) scale(1.06);
  background: linear-gradient(135deg, var(--gold), var(--green));
  cursor: pointer;
}
.youtube:hover {
  background: linear-gradient(135deg, #ff2f2f, #ab0f0f);
}
.facebook:hover {
  background: linear-gradient(135deg, #2d77d8, #174ea6);
}
.tiktok:hover {
  background: linear-gradient(135deg, #111, #23f4ef);
}
.hero {
  height: 590px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.slider,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.055);
  transition:
    opacity 1.15s ease,
    transform 5.5s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.82) 37%,
    rgba(255, 255, 255, 0.35) 66%,
    rgba(8, 59, 45, 0.08) 100%
  );
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -100px -10%;
  height: 190px;
  background: linear-gradient(90deg, rgba(244, 197, 66, 0.75), rgba(167, 216, 78, 0.7), rgba(8, 59, 45, 0.45));
  filter: blur(50px);
  opacity: 0.42;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, 94%);
  margin: auto;
  padding-top: 82px;
}
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 0.76rem;
  color: var(--forest);
  background: linear-gradient(135deg, #fff, var(--gold-2));
  border-left: 6px solid var(--gold);
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(244, 197, 66, 0.22);
}
.hero h1 {
  margin: 22px 0 14px;
  font-size: clamp(3.2rem, 6.6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--forest);
}
.hero h1 strong {
  color: var(--green);
  text-shadow: 0 10px 28px rgba(167, 216, 78, 0.35);
}
.hero p {
  font-size: 1.12rem;
  max-width: 570px;
  line-height: 1.72;
  color: #26372f;
  font-weight: 600;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border: none;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--green) 60%, var(--gold));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 42px rgba(8, 59, 45, 0.24);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.btn-primary:after {
  content: "→";
  font-size: 1.2rem;
  transition: 0.35s;
}
.btn-primary:hover {
  transform: translateY(-5px);
  filter: saturate(1.15);
  cursor: pointer;
}
.btn-primary:hover:after {
  transform: translateX(5px);
}
.slider-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  width: 38px;
  background: var(--gold);
}
.section-head h2 {
  font-family: "Playfair Display", serif;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 18px auto 10px;
  max-width: 870px;
}
.section-head p {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}
.benefits {
  background: linear-gradient(135deg, #fff 0%, #fff9eb 46%, #eff9de 100%);
  position: relative;
}
.benefits:before {
  content: "";
  position: absolute;
  right: -140px;
  top: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.22);
  filter: blur(10px);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 22px;
  box-shadow: var(--shadow);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.benefit-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.26), rgba(167, 216, 78, 0.18));
  opacity: 0;
  transition: 0.35s;
}
.benefit-card:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.benefit-card:hover:before {
  opacity: 1;
}
.icon-box {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--green));
  box-shadow: 0 15px 30px rgba(8, 59, 45, 0.2);
  margin-bottom: 18px;
}
.icon-box svg {
  width: 33px;
  height: 33px;
  fill: #fff;
}
.benefit-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 1rem;
  text-transform: uppercase;
}
.benefit-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 500;
}
.projects {
  background: #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 45px;
}
.project-card {
  height: 430px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 80px rgba(8, 59, 45, 0.18);
  isolation: isolate;
  background: #ddd;
  border: 1px solid rgba(10, 84, 23, 0.7);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.75s;
}
.project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 59, 45, 0.02) 0%, rgba(91, 97, 94, 0.2) 45%, rgba(8, 59, 45, 0.86) 100%);
  z-index: 1;
  transition: 0.35s;
}
.project-info {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: #fff;
  transition: 0.35s;
}
.project-info span {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--forest);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.project-info h3 {
  font-size: 2.1rem;
  margin: 17px 0 8px;
  font-family: "Playfair Display", serif;
}
.project-info p {
  line-height: 1.6;
  max-width: 500px;
  font-weight: 600;
}
.project-info b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.project-info b:after {
  content: "→";
  transition: 0.35s;
}
.project-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.05);
}
.project-card:hover .project-shade {
  background: linear-gradient(180deg, rgba(219, 225, 212, 0.14) 0%, rgba(4, 4, 4, 0.9) 100%);
}
.project-card:hover .project-info {
  transform: translateY(-12px);
}
.project-card:hover b:after {
  transform: translateX(7px);
}
.project-card:hover {
  cursor: pointer;
}
.footer {
  background: #062519;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-top {
  height: 8px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--lime), var(--forest-2));
}
.footer:before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.18);
  filter: blur(8px);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0;
}
.footer-brand img {
  width: 225px;

  border-radius: 22px;
  padding: 12px;
}
.footer-brand p,
.footer-center p,
.footer-copy p {
  color: #dcebe3;
  line-height: 1.55;
}
.footer-center {
  text-align: center;
}
.footer-center h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 8px;
  color: #fff;
}
.footer-center p {
  font-weight: 800;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.footer-center .footer-social {
  justify-content: center;
}
.footer-copy {
  text-align: right;
}
.footer-copy p {
  margin: 5px 0;
}
.footer-copy strong {
  color: var(--gold);
}
@media (max-width: 980px) {
  .header-panel {
    flex-direction: column;
    gap: 13px;
  }
  .brand img {
    width: 260px;
  }
  .header-actions {
    flex-direction: column;
  }
  .hero {
    height: 620px;
  }
  .hero-content {
    padding-top: 75px;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-copy,
  .footer-center {
    text-align: left;
  }
  .footer-center .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 620px) {
  .section-pad {
    padding: 58px 0;
  }
  .brand img {
    width: 225px;
  }
  .small-note {
    font-size: 0.68rem;
    text-align: center;
  }
  .social {
    width: 42px;
    height: 42px;
  }
  .hero {
    height: 610px;
    min-height: 610px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.78) 55%,
      rgba(255, 255, 255, 0.44) 100%
    );
  }
  .hero-content {
    padding-top: 55px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero p {
    font-size: 0.98rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    height: 340px;
    border-radius: 25px;
  }
  .project-info {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .project-info h3 {
    font-size: 1.65rem;
  }
  .footer-brand img {
    width: 190px;
  }
  .preloader p {
    text-align: center;
    padding: 0 18px;
  }
}
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2e7d32, #d4af37);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.28);
  transition: all 0.3s ease;
}

.project-card:hover .project-btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(46, 125, 50, 0.38);
  background: linear-gradient(135deg, #f1efe7, #e5eee5);
}
.developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.netsemtec-link {
  display: inline-flex;
  align-items: center;
  transition: transform .35s ease;
}

.netsemtec-logo {
  height: 28px;
  opacity: .45;
  filter: grayscale(100%);
  transition: all .35s ease;
}

.netsemtec-link:hover .netsemtec-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

.netsemtec-link:active {
  transform: scale(1.18);
}
@media (max-width: 620px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    text-align: center;
    padding: 52px 0;
  }

  .footer-brand,
  .footer-center,
  .footer-copy {
    width: 100%;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-center .footer-social {
    justify-content: center;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .developer-credit {
    justify-content: center;
  }
}