/* ===== Tokens ===== */
:root{
  --green: #6FBE3E;
  --green-deep: #4E9A29;
  --green-light: #E9F6DC;
  --ink: #11150F;
  --ink-soft: #4B5346;
  --gray: #707a6c;
  --bg: #FBFDF7;
  --line: #E4EBDB;
  --radius: 22px;
  --shadow: 0 20px 50px -20px rgba(20,30,10,.25);
  --ff-display: 'Unbounded', 'Manrope', sans-serif;
  --ff-text: 'Manrope', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--ff-text);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

.noise{
  position:fixed;inset:0;pointer-events:none;z-index:9999;opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-text);
  font-weight:700;
  font-size:15px;
  padding:13px 22px;
  border-radius:100px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .25s cubic-bezier(.2,.9,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space:nowrap;
}
.btn--accent{
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color:#fff;
  box-shadow:0 12px 28px -8px rgba(78,154,41,.55);
}
.btn--accent:hover{transform:translateY(-2px) scale(1.015); box-shadow:0 16px 34px -8px rgba(78,154,41,.65);}
.btn--ghost{
  background:rgba(255,255,255,.07);
  color:#fff;
  border-color:rgba(255,255,255,.25);
}
.btn--ghost:hover{background:rgba(255,255,255,.15);}
.btn--outline{
  border-color:rgba(255,255,255,.35);
  color:#fff;
  background:rgba(255,255,255,.05);
}
.btn--outline:hover{background:rgba(255,255,255,.15); transform:translateY(-2px);}
.btn--lg{padding:17px 30px; font-size:16px;}

/* ===== Header ===== */
.header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 0;
  transition:background .35s, padding .35s, box-shadow .35s;
}
.header.scrolled{
  padding:12px 0;
  background:rgba(17,21,15,.72);
  backdrop-filter:blur(16px);
  box-shadow:0 8px 30px -10px rgba(0,0,0,.4);
}
.header__inner{display:flex; align-items:center; gap:24px;}
.logo{display:flex; align-items:center; gap:10px; color:#fff; flex-shrink:0;}
.logo__mark{
  width:38px;height:38px;color:var(--green);
  display:flex;align-items:center;justify-content:center;
}
.logo__text{font-family:var(--ff-display); font-weight:700; font-size:18px; letter-spacing:.2px;}
.nav{display:flex; gap:30px; margin-left:24px; flex:1;}
.nav a{
  color:rgba(255,255,255,.82);
  font-weight:600; font-size:14.5px;
  position:relative; padding:6px 0;
  transition:color .2s;
}
.nav a:hover{color:#fff;}
.nav a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--green);
  transition:width .25s;
}
.nav a:hover::after{width:100%;}
.header__phone{flex-shrink:0;}
.header__cta{flex-shrink:0;}
.burger{display:none;}

/* ===== Eyebrow ===== */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-weight:700; font-size:13.5px; letter-spacing:.04em; text-transform:uppercase;
  color:#fff;
  padding:8px 16px 8px 12px;
  border-radius:100px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  margin-bottom:26px;
}
.eyebrow--dark{
  color:var(--green-deep);
  background:var(--green-light);
  border-color:rgba(78,154,41,.18);
}
.eyebrow__dot{
  width:7px;height:7px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(111,190,62,.6);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(111,190,62,.55);}
  70%{box-shadow:0 0 0 7px rgba(111,190,62,0);}
  100%{box-shadow:0 0 0 0 rgba(111,190,62,0);}
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:flex-start;
  overflow:hidden;
  padding-top:140px;
  padding-bottom:64px;
}
.hero__bg{position:absolute; inset:0; z-index:0;}
.hero__bg img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05) brightness(.85);
  transform:scale(1.06);
}
.hero__bg-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(10,14,8,.94) 0%, rgba(10,14,8,.86) 32%, rgba(10,14,8,.55) 60%, rgba(10,14,8,.35) 100%),
    linear-gradient(0deg, rgba(7,10,5,.9) 0%, transparent 35%);
}
.hero__blob{
  position:absolute; border-radius:50%; filter:blur(70px); z-index:0; opacity:.55; pointer-events:none;
}
.hero__blob--1{
  width:520px;height:520px; background:radial-gradient(circle, rgba(111,190,62,.45), transparent 70%);
  top:-160px; right:-120px;
}
.hero__blob--2{
  width:420px;height:420px; background:radial-gradient(circle, rgba(111,190,62,.25), transparent 70%);
  bottom:-160px; left:8%;
}
.hero__inner{position:relative; z-index:1;}
.hero__content{max-width:760px;}
.hero__title{
  font-family:var(--ff-display);
  color:#fff;
  font-weight:700;
  font-size:clamp(34px, 4.6vw, 50px);
  line-height:1.14;
  white-space:nowrap;
  letter-spacing:-0.01em;
  margin:0 0 22px;
}
.accent-text{
  color:var(--green);
  position:relative;
}
.hero__subtitle{
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.6;
  max-width:520px;
  margin:0 0 36px;
}
.hero__actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px;}

.hero__trust{
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.trust-card{
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  padding:12px 18px;
  border-radius:16px;
  color:#fff;
}
.trust-card__icon{color:var(--green); flex-shrink:0;}
.trust-card__rating{display:flex; align-items:baseline; gap:6px;}
.trust-card__score{font-family:var(--ff-display); font-weight:700; font-size:20px;}
.trust-card__stars{color:var(--green); font-size:13px; letter-spacing:1px;}
.trust-card__label{font-size:13.5px; font-weight:600; color:rgba(255,255,255,.85); line-height:1.3;}
.trust-divider{width:1px; height:32px; background:rgba(255,255,255,.18);}

.hero__scroll{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  width:30px; height:48px; border:2px solid rgba(255,255,255,.4); border-radius:20px;
  z-index:2;
}
.hero__scroll span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:3px; background:var(--green);
  animation:scrollDown 1.8s infinite;
}
@keyframes scrollDown{
  0%{opacity:1; top:8px;}
  70%{opacity:0; top:26px;}
  100%{opacity:0; top:8px;}
}

/* ===== Section shared ===== */
.section-head{max-width:680px; margin-bottom:56px;}
.section-title{
  font-family:var(--ff-display);
  font-weight:700;
  font-size:clamp(28px, 3.6vw, 42px);
  line-height:1.15;
  letter-spacing:-0.01em;
  margin:0 0 18px;
  color:var(--ink);
}
.section-subtitle{
  font-size:17px; line-height:1.65; color:var(--gray); margin:0; max-width:520px;
}

/* ===== Why us ===== */
.why{
  position:relative;
  padding:110px 0 120px;
  background:var(--bg);
}
.why__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}
.why__gallery{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap:18px;
}
.why__photo{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
  background:var(--line);
}
.why__photo img{width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.2,.8,.2,1);}
.why__photo:hover img{transform:scale(1.06);}
.why__photo--main{grid-row:1 / 3; aspect-ratio: 3/4;}
.why__photo--sm{aspect-ratio: 4/3;}
.why__photo--sign{aspect-ratio: 4/3.3;}
.why__photo-badge{
  position:absolute; left:14px; bottom:14px;
  display:flex; align-items:center; gap:8px;
  background:rgba(17,21,15,.78);
  backdrop-filter:blur(8px);
  color:#fff;
  padding:9px 14px;
  border-radius:100px;
  font-size:12.5px; font-weight:600;
}
.why__photo-badge-score{
  font-family:var(--ff-display); font-weight:700; color:var(--green); font-size:14px;
}

.why__features{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px 24px;
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 36px -16px rgba(20,30,10,.18);
  border-color:transparent;
}
.feature-card__icon{
  width:50px; height:50px;
  border-radius:14px;
  background:var(--green-light);
  color:var(--green-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature-card h3{
  font-family:var(--ff-display);
  font-size:17px; font-weight:600; margin:0 0 10px; color:var(--ink);
}
.feature-card p{
  font-size:14.5px; line-height:1.6; color:var(--gray); margin:0;
}

/* ===== Floating WhatsApp ===== */
.float-wa{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg, var(--green), var(--green-deep));
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(78,154,41,.6);
  animation:float 3s ease-in-out infinite;
}
.float-wa:hover{transform:scale(1.08);}
@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

/* ===== Reveal animation ===== */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{opacity:1; transform:translateY(0);}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .nav{display:none;}
  .hero__title{white-space:normal;}
  .why__grid{grid-template-columns:1fr; gap:48px;}
  .why__gallery{max-width:520px; margin:0 auto;}
}
@media (max-width: 640px){
  .header__phone{display:none;}
  .header__cta{display:none;}
  .hero{padding-top:100px;}
  .hero__title{font-size:32px;}
  .hero__subtitle{font-size:16px;}
  .hero__actions .btn{flex:1; justify-content:center;}
  .trust-divider{display:none;}
  .hero__scroll{display:none;}
  .why{padding:80px 0;}
  .why__features{grid-template-columns:1fr;}
  .why__photo--main{aspect-ratio:4/3;}
  .why__photo-badge{
    bottom:8px; left:8px;
    padding:6px 11px; gap:6px;
    font-size:11px;
  }
  .why__photo-badge-score{font-size:12.5px;}
  .float-wa{width:54px; height:54px; bottom:18px; right:18px;}
}
