:root{
  --color-black:#000000;
  --color-white:#ffffff;
  --color-bg:#050505;
  --page-x:clamp(28px, 10vw, 128px);
  --container-max:1180px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  font-family:'Montserrat', Arial, sans-serif;
  background:var(--color-bg);
  color:var(--color-white);
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(calc(100% - (var(--page-x) * 2)), var(--container-max));
  margin-left:auto;
  margin-right:auto;
}

/* HERO */
.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  min-height:100svh;
  overflow:hidden;
  background-image:url('../img/hero-bg.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.hero__content{
  position:relative;
  z-index:1;
  min-height:100vh;
  min-height:100svh;
  padding-top:clamp(72px, 8vw, 118px);
  padding-bottom:clamp(72px, 10vh, 104px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
}

.hero__logo{
  width:clamp(250px, 31vw, 430px);
  height:auto;
}

.hero__copy{
  width:min(620px, 100%);
}

.hero__copy h1{
  margin-bottom:28px;
  font-size:clamp(30px, 3.1vw, 45px);
  line-height:1.12;
  font-weight:400;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.hero__copy p{
  width:min(360px, 100%);
  font-size:clamp(16px, 1.35vw, 18px);
  line-height:1.75;
  font-weight:400;
  letter-spacing:.01em;
}

/* SECTION CHAT */
.section-chat{
  width:100%;
  min-height:100vh;
  background:#050505;
  padding-top:clamp(72px, 8vw, 120px);
  padding-bottom:clamp(72px, 8vw, 120px);
}

.section-chat__inner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 420px;
  gap:clamp(48px, 7vw, 96px);
  align-items:center;
}

.section-chat__left{
  max-width:620px;
}

.section-chat__eyebrow{
  display:block;
  margin-bottom:22px;
  font-size:12px;
  line-height:1;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
}

.section-chat__left h2{
  max-width:760px;
  margin-bottom:38px;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.05;
  font-weight:300;
  letter-spacing:-.04em;
  color:#ffffff;
}

.section-chat__list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:42px;
}

.section-chat__list p{
  position:relative;
  padding-left:34px;
  font-size:clamp(15px, 1.25vw, 22px);
  line-height:1.2;
  font-weight:400;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#ffffff;
}

.section-chat__list p::before{
  content:'✦';
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:#25D366;
}

.section-chat__note{
  max-width:600px;
  font-size:clamp(16px, 1.4vw, 19px);
  line-height:1.7;
  font-weight:400;
  color:rgba(255,255,255,.72);
}

.section-chat__right{
  display:flex;
  justify-content:flex-end;
}

.hero-chat{
  width:100%;
  max-width:420px;
}

@media (max-width:1024px){
  :root{
    --page-x:56px;
  }

  .hero{
    background-position:center center;
  }
}

@media (max-width:980px){
  .section-chat__inner{
    grid-template-columns:1fr;
    gap:52px;
  }

  .section-chat__left{
    max-width:100%;
  }

  .section-chat__right{
    justify-content:center;
  }
}

@media (max-width:768px){
  :root{
    --page-x:30px;
  }

  .hero{
    background-position:center center;
  }

  .hero__content{
    padding-top:54px;
    padding-bottom:58px;
  }

  .hero__logo{
    width:min(310px, 76vw);
  }

  .hero__copy h1{
    margin-bottom:22px;
  }
}

@media (max-width:520px){
  .section-chat__left h2{
    margin-bottom:30px;
  }

  .section-chat__list{
    margin-bottom:28px;
  }
}

@media (max-width:480px){
  :root{
    --page-x:24px;
  }

  .hero{
    background-position:58% center;
  }

  .hero__content{
    padding-top:44px;
    padding-bottom:48px;
  }

  .hero__logo{
    width:min(270px, 78vw);
  }

  .hero__copy p{
    width:min(310px, 100%);
    line-height:1.65;
  }
}

/* SECTION STEPS */
.section-steps{
  width:100%;
  background:
    radial-gradient(circle at top left, rgba(47,143,87,.12), transparent 32%),
    linear-gradient(180deg, #f7f8f5 0%, #ffffff 100%);
  color:#111811;
  padding-top:clamp(82px, 9vw, 132px);
  padding-bottom:clamp(82px, 9vw, 132px);
}

.section-steps__inner{
  display:flex;
  flex-direction:column;
  gap:clamp(48px, 6vw, 76px);
}

.section-steps__intro{
  max-width:720px;
}

.section-steps__eyebrow{
  display:block;
  margin-bottom:20px;
  font-size:12px;
  line-height:1;
  font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#2f8f57;
}

.section-steps__intro h2{
  max-width:680px;
  margin-bottom:22px;
  font-size:clamp(38px, 5vw, 72px);
  line-height:.98;
  font-weight:300;
  letter-spacing:-.055em;
  color:#101510;
}

.section-steps__intro p{
  max-width:520px;
  font-size:clamp(17px, 1.45vw, 21px);
  line-height:1.65;
  font-weight:400;
  color:rgba(16,21,16,.68);
}

.section-steps__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.section-steps__card{
  position:relative;
  min-height:360px;
  padding:42px 34px 38px;
  overflow:hidden;
  border-radius:30px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(16,21,16,.08);
  box-shadow:0 24px 70px rgba(0,0,0,.07);
}

.section-steps__card::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.36));
}

.section-steps__number{
  position:relative;
  z-index:1;
  display:block;
  margin-bottom:72px;
  font-size:clamp(52px, 6vw, 92px);
  line-height:.8;
  font-weight:300;
  letter-spacing:-.08em;
  color:#25D366;
}

.section-steps__card h3{
  position:relative;
  z-index:1;
  margin-bottom:22px;
  font-size:clamp(20px, 1.9vw, 28px);
  line-height:1.12;
  font-weight:500;
  letter-spacing:-.035em;
  color:#101510;
}

.section-steps__card p{
  position:relative;
  z-index:1;
  margin-top:14px;
  font-size:15px;
  line-height:1.65;
  font-weight:400;
  color:rgba(16,21,16,.68);
}

@media (max-width:980px){
  .section-steps__grid{
    grid-template-columns:1fr;
  }

  .section-steps__card{
    min-height:auto;
  }

  .section-steps__number{
    margin-bottom:48px;
  }
}

@media (max-width:520px){
  .section-steps{
    padding-top:68px;
    padding-bottom:68px;
  }

  .section-steps__card{
    padding:34px 26px 32px;
    border-radius:24px;
  }
}

/* SECTION PLANTS */
.section-plants{
  width:100%;
  background:#C697F4;
  color:#ffffff;
  padding:clamp(90px, 10vw, 150px) 0;
}

.section-plants__inner{
  display:flex;
  flex-direction:column;
  gap:clamp(52px, 7vw, 96px);
}

.section-plants__top{
  max-width:980px;
}

.section-plants__eyebrow{
  display:block;
  margin-bottom:22px;
  font-size:12px;
  line-height:1;
  font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.section-plants__top h2{
  max-width:980px;
  font-size:clamp(48px, 7vw, 108px);
  line-height:.92;
  font-weight:300;
  letter-spacing:-.07em;
  color:#ffffff;
}

.section-plants__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(48px, 7vw, 110px);
  align-items:start;
}

.section-plants__left p{
  max-width:520px;
  font-size:clamp(28px, 2.6vw, 46px);
  line-height:1.08;
  font-weight:300;
  letter-spacing:-.05em;
  color:rebeccapurple;
}

.section-plants__right{
  display:flex;
  flex-direction:column;
  gap:42px;
}

.section-plants__topics{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.section-plants__topics span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  background:#ffffff;
  font-size:13px;
  line-height:1;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rebeccapurple;

  box-shadow:
    0 0 0 1px rgba(125,255,176,.15),
    0 0 18px rgba(125,255,176,.28);
}

.section-plants__closing{
  max-width:520px;
  font-size:clamp(20px, 1.3vw, 30px);
  line-height:1.3;
  font-weight:400;
  letter-spacing:-.03em;
  color:#ffffff;
}

@media (max-width:980px){

  .section-plants__grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .section-plants__left p{
    max-width:100%;
  }
}

@media (max-width:520px){

  .section-plants__right{
    gap:30px;
  }

  .section-plants__topics{
    gap:10px;
  }

  .section-plants__topics span{
    font-size:11px;
    padding:12px 14px;
  }
}

/* SECTION MAINTENANCE */
.section-maintenance{
  width:100%;
  background:white;
  color:#18241B;
  padding:clamp(82px, 9vw, 132px) 0;
}

.section-maintenance__inner{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:clamp(48px, 7vw, 96px);
  align-items:center;
}

.section-maintenance__image{
  width:100%;
  min-height:560px;
  overflow:hidden;
  border-radius:34px;
}

.section-maintenance__image img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
}

.section-maintenance__content{
  max-width:620px;
}

.section-maintenance__eyebrow{
  display:block;
  margin-bottom:22px;
  font-size:12px;
  line-height:1;
  font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:rgba(24,36,27,.56);
}

.section-maintenance__content h2{
  max-width:640px;
  margin-bottom:42px;
  font-size:clamp(38px, 5vw, 72px);
  line-height:.98;
  font-weight:300;
  letter-spacing:-.055em;
  color:#18241B;
}

.section-maintenance__list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:42px;
}

.section-maintenance__list p{
  position:relative;
  padding-left:34px;
  font-size:clamp(15px, 1.25vw, 22px);
  line-height:1.2;
  font-weight:400;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#18241B;
}

.section-maintenance__list p::before{
  content:'✦';
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:#25D366;
}

.section-maintenance__note{
  max-width:600px;
  font-size:clamp(17px, 1.45vw, 21px);
  line-height:1.65;
  font-weight:400;
  color:rgba(24,36,27,.68);
}

@media (max-width:980px){
  .section-maintenance__inner{
    grid-template-columns:1fr;
    gap:52px;
  }

  .section-maintenance__image{
    min-height:420px;
  }

  .section-maintenance__image img{
    min-height:420px;
  }

  .section-maintenance__content{
    max-width:100%;
  }
}

@media (max-width:520px){
  .section-maintenance{
    padding:68px 0;
  }

  .section-maintenance__image{
    min-height:320px;
    border-radius:24px;
  }

  .section-maintenance__image img{
    min-height:320px;
  }

  .section-maintenance__content h2{
    margin-bottom:34px;
  }

  .section-maintenance__list{
    margin-bottom:30px;
  }
}

/* SECTION CTA */
.section-cta{
  width:100%;
  background:#25D366;
  color:#07110b;
  padding:clamp(110px, 12vw, 180px) 0;
}

.section-cta__inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.section-cta__eyebrow{
  display:block;
  margin-bottom:26px;
  font-size:12px;
  line-height:1;
  font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:white;
}

.section-cta__inner h2{
  max-width:900px;
  margin-bottom:28px;
  font-size:clamp(48px, 7vw, 104px);
  line-height:.92;
  font-weight:300;
  letter-spacing:-.07em;
  color:#07110b;
}

.section-cta__inner p{
  margin-bottom:42px;
  font-size:clamp(18px, 1.6vw, 26px);
  line-height:1.45;
  font-weight:400;
  color:rgba(7,17,11,.72);
}

.section-cta__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:58px;
  padding:0 34px;
  border-radius:999px;

  background:#ffffff;
  color:#07110b;

  font-size:13px;
  line-height:1;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-decoration:none;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.section-cta__button:hover{
   background: #BFFDD6;
}

@media (max-width:520px){

  .section-cta__inner p{
    margin-bottom:34px;
  }

  .section-cta__button{
    width:100%;
  }
}

/* FOOTER */
.footer{
  width:100%;
  background:#160f0b;
  color:rgba(255,255,255,.68);
  padding:26px 0;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.footer__brand{
  display:inline-flex;
  align-items:center;
  width:250px;
}

.footer__brand img{
  width:100%;
  height:auto;
}

.footer__info{
  text-align:right;
  font-size:11px;
  line-height:1.7;
  font-weight:400;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footer__info p{
  margin:0;
}

@media (max-width:640px){
  .footer{
    padding:28px 0;
  }

  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .footer__info{
    text-align:left;
  }
}