*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Manrope',sans-serif;
  color:#172033;

  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* затемнение фона для читаемости */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(247,250,247,0.15);
  z-index:-1;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header{
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding:20px 0;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo h2{
  font-size:24px;
}

.logo p{
  font-size:14px;
  color:#667085;
}

.leaf{
  font-size:32px;
}

/* NAV */
nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#172033;
  font-weight:600;
}

/* BUTTONS */
.btn,
.btn-outline{
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn{
  background:#6db54a;
  color:white;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-outline{
  border:2px solid #dbe8d3;
  color:#172033;
}

/* HERO */
.hero{
  padding:120px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:#edf7e8;
  color:#6db54a;
  font-weight:700;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:24px;
}

.hero-content p{
  font-size:20px;
  line-height:1.7;
  color:#617084;
  margin-bottom:36px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

/* FEATURES */
.features{
  padding:80px 0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.card{
  background:rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding:40px;
  border-radius:24px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.icon{
  font-size:40px;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:14px;
}

.card p{
  color:#667085;
  line-height:1.6;
}

/* SERVICES */
.services{
  padding:100px 0;
  background:rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:16px;
}

.section-title p{
  color:#667085;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  padding:40px;
  border-radius:24px;
  background:rgba(245,250,242,0.9);
}

/* FOOTER */
footer{
  background:#101828;
  color:white;
  padding:50px 0;
}

.footer{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

/* RESPONSIVE */
@media(max-width:980px){

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

.hero-content h1{
  font-size:42px;
}

.nav{
  flex-direction:column;
  gap:20px;
}

nav{
  flex-wrap:wrap;
  justify-content:center;
}

.hero-buttons{
  flex-direction:column;
}

}
