:root {
  --green-1: #0f6a37;
  --green-2: #1e8b4b;
  --green-3: #34c86e;
  --green-4: #dff5e6;
  --green-5: #edf9f0;
  --dark: #17221b;
  --text: #304137;
  --muted: #617065;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 45, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6fbf7 0%, #eef7f0 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(52, 200, 110, 0.06), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(15, 106, 55, 0.06), transparent 22%),
    radial-gradient(circle at 80% 60%, rgba(52, 200, 110, 0.05), transparent 22%);
  z-index: -2;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, 950px);
}

.section {
  padding: 110px 0;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(52, 200, 110, 0.12);
  color: var(--green-1);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.14);
  color: #dfffe9;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--dark);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;

  padding: 18px 0;

  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.topbar .container{

display:flex;
align-items:center;
justify-content:space-between;

}


.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mini{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #1b2b20;
  line-height: 1.1;
}

.brand-mini img{

  height: 72px;
  width: auto;
  display: block;

}

.brand-mini span{

white-space:nowrap;

}


.nav{

display:flex;
align-items:center;
gap:28px;

font-size:16px;
font-weight:500;

}

.nav a{
  position: relative;
  text-decoration: none;
  color: #24332a;
  transition: 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green-3);
  transition: width 0.3s ease;
}

.nav a:hover {
  color:#2fb463;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(12, 26, 15, 0.48), rgba(12, 26, 15, 0.52)),
    url("images/workshop.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 255, 123, 0.16), transparent 18%),
    radial-gradient(circle at 80% 35%, rgba(124, 255, 173, 0.11), transparent 18%),
    linear-gradient(180deg, rgba(7, 20, 10, 0.15), rgba(7, 20, 10, 0.28));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 70px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.hero-logo{
  width: 190px;
  height: auto;
  margin: 0 auto 22px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.hero h1{

font-size:clamp(48px,7vw,75px);

font-weight:800;
line-height:1.05;

letter-spacing:-1px;

margin-bottom:24px;

}

.hero p{

font-size:20px;

max-width:720px;
margin:0 auto 34px;

line-height:1.6;

opacity:0.95;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;

}


.hero-title {
  margin: 0 auto 20px;
  max-width: 980px;
  font-size:clamp(48px,7vw,75px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.hero-title .highlight{
  color: #7df3a8;
  text-shadow:
    0 0 18px rgba(125, 243, 168, 0.18),
    0 0 34px rgba(125, 243, 168, 0.12);
}


.hero-subtitle {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green-3));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(32, 173, 86, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 40px rgba(32, 173, 86, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.eco {
  text-align: center;
}

.eco-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
}

.eco-text p {
  margin: 0;
  padding: 28px 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 106, 55, 0.08);
  border-radius: var(--radius-md);
  font-size: 1.08rem;
  line-height: 1.9;
  box-shadow: var(--shadow);
}

.eco-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.eco-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f4fbf6);
  border: 1px solid rgba(15, 106, 55, 0.08);
  box-shadow: var(--shadow);
  text-align: left;
}

.eco-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--dark);
}

.eco-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 106, 55, 0.08);
  box-shadow: 0 18px 45px rgba(15, 45, 25, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(52, 200, 110, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green-3), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover::after{
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 30px 60px rgba(15, 45, 25, 0.18);
  border-color: rgba(52, 200, 110, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-content {
  padding: 24px 24px 28px;
}

.service-content h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: var(--dark);
}

.service-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.stats {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  padding: 34px 22px;
  text-align: center;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f4fbf5);
  border: 1px solid rgba(15, 106, 55, 0.08);
  box-shadow: var(--shadow);
}

.stat span {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-1);
}

.stat p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 40px rgba(15, 45, 25, 0.10);
  transform: translateZ(0);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0.5;
  transition: opacity 0.35s ease;
}

.gallery-item:hover::after {
  opacity: 0.2;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;

filter: blur(12px);
transform: scale(1.08);
transition: filter 0.6s ease, transform 0.6s ease, opacity 0.4s ease;

opacity:0.7;
}

.gallery-item img.loaded{
filter: blur(0);
transform: scale(1);
opacity:1;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.1) contrast(1.02);
}

.cta-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  padding: 140px 0 120px;
  margin-top: 30px;
  background:
    linear-gradient(rgba(10, 26, 14, 0.54), rgba(10, 26, 14, 0.58)),
    url("images/office1.jpg") center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(76, 255, 136, 0.12), transparent 18%),
    radial-gradient(circle at 75% 65%, rgba(76, 255, 136, 0.1), transparent 16%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cta-banner p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-arrow{
  margin-top:32px;
  font-size:28px;
  color:rgba(255,255,255,0.85);
  animation:arrowBounce 1.6s ease-in-out infinite;
  opacity:0.9;
}

@keyframes arrowBounce{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(10px);
}

}



.footer {
  background: linear-gradient(180deg, #102b18 0%, #0b2012 100%);
  color: #e8f4eb;
  padding: 78px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

.footer-block h3,
.footer-block h4 {
  margin: 0 0 18px;
  font-size:20px;
  font-weight:700;
  letter-spacing:0.4px;
  color: #ffffff;
}

.footer-block p,
.footer-block li {
  margin: 0 0 12px;
  font-size:15px;
  line-height: 1.7;
  color: rgba(232, 244, 235, 0.86);
}

.footer-block ul {
  margin: 0;
  padding-left: 18px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(232, 244, 235, 0.7);
}

.footer-block h3::after,
.footer-block h4::after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  margin-top:10px;
  background:rgba(255,255,255,0.35);
}

.floating-leaves {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.leaf{
  position:absolute;
  width:38px;
  height:24px;
  background:linear-gradient(135deg,#8df8a8,#34c86e);
  border-radius:100% 0 100% 0;
  opacity:0.55;
  mix-blend-mode:screen;
  box-shadow:
  0 0 12px rgba(96,255,152,0.35),
  0 0 30px rgba(96,255,152,0.15);
  filter:blur(0.8px);
}

.leaf-1 { top: 16%; left: 10%; animation: floatLeaf1 14s ease-in-out infinite; }
.leaf-2 { top: 28%; right: 12%; animation: floatLeaf2 16s ease-in-out infinite; }
.leaf-3 { bottom: 20%; left: 14%; animation: floatLeaf3 13s ease-in-out infinite; }
.leaf-4 { top: 18%; right: 28%; animation: floatLeaf4 15s ease-in-out infinite; }
.leaf-5 { bottom: 16%; right: 18%; animation: floatLeaf2 17s ease-in-out infinite; }
.leaf-6 { top: 48%; left: 7%; animation: floatLeaf1 18s ease-in-out infinite; }

@keyframes floatLeaf1 {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg) scale(1); }
  50% { transform: translate3d(25px,-40px,0) rotate(18deg) scale(1.1); }
}

@keyframes floatLeaf2 {
  0%,100% { transform: translate3d(0,0,0) rotate(12deg) scale(0.9); }
  50% { transform: translate3d(-30px,35px,0) rotate(-18deg) scale(1); }
}

@keyframes floatLeaf3 {
  0%,100% { transform: translate3d(0,0,0) rotate(-8deg) scale(1.2); }
  50% { transform: translate3d(38px,-20px,0) rotate(20deg) scale(1.3); }
}

@keyframes floatLeaf4 {
  0%,100% { transform: translate3d(0,0,0) rotate(4deg) scale(0.95); }
  50% { transform: translate3d(-26px,-32px,0) rotate(-16deg) scale(1); }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid,
  .eco-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .topbar-inner{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  }

  .brand-mini span{
  display:none;
  }

  .brand-mini img{
  height:46px;
  }

  .menu-toggle{
  display:block;
  font-size:28px;
  cursor:pointer;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content {
    padding-top: 160px;
  }

  .eco-text {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .eco-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){

.nav{
display:none;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;

background:white;

padding:30px 0;
gap:20px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.nav a{
font-size:18px;
padding:8px 0;
transition:0.25s;
}

.nav.active{
display:flex;
}
.nav a:hover{
color:#34c86e;
}

.hero-content{
padding-top:180px;
}

.topbar-inner{
display:flex;
align-items:center;
justify-content:space-between;
}

.brand-mini{
display:flex;
align-items:center;
gap:10px;
}

.brand-mini span{
display:none;
}

.brand-mini img{
height:44px;
}

.menu-toggle{
display:block;
font-size:28px;
cursor:pointer;
}

}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    line-height: 1.02;
  }

  .hero-subtitle {
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-mini img{
  height: 56px;
}

  .brand-mini span {
    font-size: 13px;
  }

  .topbar {
    padding: 14px 0;
  }

  .service-content {
    padding: 22px 20px 24px;
  }

  .cta-banner {
    min-height: 440px;
  }

  .cta-banner h2 {
    line-height: 1.08;
  }
}
