/* =========================
   GLOBAL
========================= */

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

body{
  font-family:'Poppins', sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:#fff;
}

ul{
  list-style:none;
}

/* =========================
   HEADER
========================= */

.header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  background:rgba(0,0,0,0.92);

  backdrop-filter:blur(10px);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
  max-width:1350px;
  margin:auto;

  padding:16px 50px;

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

/* LOGO */

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

/* IMAGE */

.logo-img{
  width:42px;
  height:42px;
  object-fit:contain;
}

/* GREEN ICON */

.logo-icon{
  position:relative;
  width:28px;
  height:28px;
}

.logo-icon span{
  position:absolute;
  width:10px;
  background:#18b24b;
  border-radius:10px;
}

.logo-icon span:nth-child(1){
  height:26px;
  transform:rotate(30deg);
  left:2px;
}

.logo-icon span:nth-child(2){
  height:34px;
  transform:rotate(30deg);
  left:14px;
  top:-4px;
}

/* TEXT */

.logo h2{
  font-size:1.5rem;
  font-weight:700;
}

.logo h2 span{
  color:#18b24b;
}

/* NAVIGATION */

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  position:relative;
  transition:0.3s;
}

.nav-links a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  background:#18b24b;
  left:0;
  bottom:-6px;
  transition:0.4s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#18b24b;
}

/* BUTTON */

.nav-btn{
  background:#18b24b;

  padding:14px 28px;

  border-radius:14px;

  font-weight:600;

  transition:0.4s;
}

.nav-btn:hover{
  transform:translateY(-4px);

  box-shadow:0 10px 25px rgba(24,178,75,0.3);
}

/* MOBILE MENU */

.menu-toggle{
  display:none;
  font-size:2rem;
  cursor:pointer;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  width:100%;
  min-height:100vh;

  padding:170px 70px 120px;

  background:#000;
}

/* CONTENT */

.about-content{
  max-width:1200px;
  margin:auto;

  text-align:center;
}

/* TITLE */

.about-content h1{
  font-size:5rem;
  font-weight:800;

  line-height:1.15;

  margin-bottom:35px;

  animation:fadeUp 1s ease;
}

.about-content h1 span{
  color:#18b24b;
}

/* DESCRIPTION */

.about-text{
  max-width:950px;

  margin:auto auto 80px;

  font-size:1.2rem;
  line-height:1.9;

  color:#cfcfcf;

  animation:fadeUp 1.2s ease;
}

/* =========================
   BOXES
========================= */

.about-boxes{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:35px;
}

/* BOX */

.about-box{
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(255,255,255,0.06);

  border-radius:24px;

  padding:50px 40px;

  text-align:left;

  transition:0.5s ease;

  opacity:0;
  transform:translateY(50px);
}

.about-box:hover{
  transform:translateY(-10px);

  border-color:rgba(24,178,75,0.35);

  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* BOX TITLE */

.about-box h2{
  font-size:2rem;
  margin-bottom:22px;

  color:#18b24b;
}

/* BOX TEXT */

.about-box p{
  font-size:1.05rem;
  line-height:1.9;

  color:#d2d2d2;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

  .about-section{
    padding:160px 40px 100px;
  }

  .about-content h1{
    font-size:4rem;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

   body{
    overflow-x:hidden;
  }

  .navbar{
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
  }

  .menu-toggle{
    display:block;
    font-size:28px;
    cursor:pointer;
    z-index:1001;
  }

  .nav-btn{
    display:none;
  }

  /* MOBILE NAV */

 .nav-links{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    background:#000;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:15px;
    padding:30px 0;
    transition:0.4s ease;
    overflow:hidden;
  }

  .nav-links.active{
    left:0;
  }

  /* ABOUT */

  .about-section{
    padding:140px 20px 90px;
  }

  .about-content h1{
    font-size:2.8rem;
    line-height:1.3;
  }

  .about-text{
    font-size:1rem;
    margin-bottom:50px;
  }

  .about-boxes{
    grid-template-columns:1fr;
  }

  .about-box{
    padding:35px 25px;
  }

  .about-box h2{
    font-size:1.6rem;
  }

  .about-box p{
    font-size:0.98rem;
  }

}

/* =========================
   STORY SECTION
========================= */

.story-section{
  width:100%;

  padding:120px 70px;

  background:#000;
}

/* CONTAINER */

.story-container{
  display:flex;
  align-items:center;
  gap:70px;
}

/* =========================
   IMAGE
========================= */

.story-image{
  flex:1;

  opacity:0;
  transform:translateX(-60px);

  transition:1s ease;
}

.story-image img{
  width:100%;

  border-radius:24px;

  display:block;

  transition:0.5s ease;
}

.story-image img:hover{
  transform:scale(1.03);
}

/* =========================
   CONTENT
========================= */

.story-content{
  flex:1;

  opacity:0;
  transform:translateX(60px);

  transition:1s ease;
}

/* SMALL TITLE */

.story-tag{
  color:#18b24b;

  font-size:0.95rem;
  font-weight:600;

  letter-spacing:2px;
}

/* MAIN TITLE */

.story-content h2{
  font-size:4rem;

  line-height:1.2;

  margin:20px 0 30px;
}

/* TEXT */

.story-content p{
  color:#cfcfcf;

  line-height:1.9;

  font-size:1.05rem;

  margin-bottom:25px;
}

/* =========================
   STATS
========================= */

.story-stats{
  display:flex;
  gap:50px;

  margin-top:40px;
}

/* BOX */

.stat-box h3{
  font-size:3rem;

  color:#18b24b;

  margin-bottom:10px;
}

.stat-box span{
  color:#d2d2d2;

  font-size:1rem;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

  .story-section{
    padding:100px 40px;
  }

  .story-container{
    flex-direction:column;
  }

  .story-content h2{
    font-size:3rem;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .story-section{
    padding:90px 20px;
  }

  .story-content h2{
    font-size:2.4rem;
  }

  .story-content p{
    font-size:0.98rem;
  }

  .story-stats{
    gap:30px;
  }

  .stat-box h3{
    font-size:2.3rem;
  }

}


/* =========================
   TEAM SECTION
========================= */

.team-section{
  width:100%;

  padding:120px 70px;

  background:#000;

  text-align:center;
}

/* HEADING */

.team-heading{
  margin-bottom:70px;
}

.team-heading h2{
  font-size:4rem;

  margin-bottom:20px;

  font-weight:800;
}

.team-heading p{
  max-width:700px;

  margin:auto;

  color:#cfcfcf;

  line-height:1.8;

  font-size:1.1rem;
}

/* =========================
   TEAM CONTAINER
========================= */

.team-container{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:35px;
}

/* CARD */

.team-card{
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(255,255,255,0.06);

  border-radius:24px;

  padding:50px 30px;

  transition:0.5s ease;

  opacity:0;
  transform:translateY(50px);
}

/* HOVER */

.team-card:hover{
  transform:translateY(-10px);

  border-color:rgba(24,178,75,0.35);

  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* ICON */

.team-icon{
  width:100px;
  height:100px;

  margin:auto auto 25px;

  background:#18b24b;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:3rem;

  animation:floatIcon 4s ease-in-out infinite;
}

/* NAME */

.team-card h3{
  font-size:1.8rem;

  margin-bottom:12px;
}

/* ROLE */

.team-card span{
  color:#18b24b;

  font-size:1rem;

  font-weight:500;
}

/* ICON ANIMATION */

@keyframes floatIcon{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

  .team-section{
    padding:100px 40px;
  }

  .team-container{
    grid-template-columns:repeat(2,1fr);
  }

  .team-heading h2{
    font-size:3rem;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .team-section{
    padding:90px 20px;
  }

  .team-heading h2{
    font-size:2.5rem;
  }

  .team-heading p{
    font-size:1rem;
  }

  .team-container{
    grid-template-columns:1fr;
  }

  .team-card{
    padding:40px 25px;
  }

}

/* =========================
   FOOTER
========================= */

.footer{
  background: #050505;
  padding: 80px 70px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* CONTAINER */

.footer-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

  margin-bottom: 50px;
}

/* FOOTER TITLE */

.footer-box h2{
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-box h2 span{
  color: #18b24b;
}

.footer-box h3{
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

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

/* IMAGE */

.logo-img{
  width:45px;
  height:45px;
  object-fit:contain;
}

/* TEXT */

.footer-logo h2{
  font-size:1.5rem;
  margin:0;
}

.footer-logo h2 span{
  color:#18b24b;
}

/* TEXT */

.footer-box p{
  color: #cfcfcf;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* LINKS */

.footer-links li{
  margin-bottom: 14px;
}

.footer-links a,
.footer-policy a{
  color: #cfcfcf;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-policy a:hover{
  color: #18b24b;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  display: inline-block;

  margin-top: 10px;

  padding: 14px 24px;

  background: #18b24b;
  color: #fff;

  border-radius: 12px;

  transition: 0.4s ease;
}

.whatsapp-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(24,178,75,0.3);
}

/* BOTTOM */

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);

  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p,
.footer-policy{
  color: #cfcfcf;
  font-size: 0.95rem;
}

.footer-policy{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* MOBILE */

@media(max-width:768px){

  .footer{
    padding: 70px 20px 25px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }

}


/* =========================
   CODEC FONT
========================= */

@font-face{
    font-family:"Codec";

    src:url("../assets/fonts/CodecPro-Regular.ttf")
    format("truetype");
}

/* FULL WEBSITE */

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

    font-family:"Codec", sans-serif;
}

/* =========================
   REFINED ABOUT PAGE
========================= */

.about-page{
  background:#000;
}

.about-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.about-page .about-section{
  min-height:0;
  padding:100px 40px;
  background:#000;
}

.about-hero{
  padding-top:220px !important;
  padding-bottom:150px !important;
  text-align:center;
}

.about-hero .about-content{
  max-width:920px;
}

.eyebrow{
  margin-bottom:22px;
  color:#18b24b;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:2.5px;
  line-height:1.4;
}

.about-page h1,
.about-page h2,
.about-page h3{
  color:#fff;
  font-weight:700;
  letter-spacing:-.04em;
}

.about-page h1{
  max-width:850px;
  margin:0 auto 30px;
  font-size:clamp(3.3rem, 7vw, 6.5rem);
  line-height:1.02;
}

.about-page .about-text,
.about-copy-block > p:last-child,
.existence-copy p,
.future-card > p:last-child,
.about-cta > p:not(.eyebrow){
  color:#bdbdbd;
  font-size:1.08rem;
  line-height:1.85;
}

.future-card h2 span{
  color:#18b24b;
}

.about-section about-container cta-section about-cta section p h2 span{
  color:#18b24b;
}

.about-hero .about-text{
  max-width:720px;
  margin:0 auto;
}

.about-story-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
  padding-top:0 !important;
}

.about-copy-block,
.future-card{
  padding:48px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  background:#050505;
}

.about-copy-block h2,
.section-heading h2,
.future-card h2,
.about-cta h2{
  max-width:620px;
  margin-bottom:22px;
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.1;
}

.section-heading h2 span{
  color:#18b24b;
}

.section-heading h2 span{
  color:#18b24b;
}

.section-heading centered-heading h2 span{
  color:#18b24b;
}

.about-copy-block > p:last-child{
  max-width:520px;
}

.vision-block{
  border-color:rgba(24,178,75,.28);
}

.existence-section{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(280px, .8fr);
  gap:100px;
  align-items:start;
}

.existence-copy{
  padding-top:10px;
}

.existence-copy p + p{
  margin-top:24px;
}

.values-section{
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.centered-heading{
  text-align:center;
  margin:0 auto 55px;
}

.centered-heading h2{
  margin:0 auto;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.about-page .value-card{
  min-height:270px;
  padding:30px;
  opacity:1;
  transform:none;
  background:#050505;
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.value-card:hover{
  transform:translateY(-6px);
  border-color:rgba(24,178,75,.55);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.value-number{
  display:block;
  margin-bottom:56px;
  color:#18b24b;
  font-size:.8rem;
  letter-spacing:1px;
}

.value-card h3{
  margin-bottom:14px;
  font-size:1.45rem;
  letter-spacing:-.02em;
}

.value-card p{
  color:#aaa;
  font-size:.96rem;
  line-height:1.7;
}

.journey-section{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:start;
}

.timeline{
  border-top:1px solid rgba(255,255,255,.16);
}

.timeline-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:24px;
  align-items:center;
  min-height:78px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.timeline-item span{
  color:#18b24b;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:1px;
}

.timeline-item p{
  color:#d5d5d5;
  line-height:1.5;
}

.future-section{
  padding-top:20px !important;
}

.future-card{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  column-gap:60px;
  align-items:center;
}

.future-card .eyebrow{
  grid-row:span 2;
  align-self:start;
}

.future-card h2{
  margin-bottom:18px;
}

.about-cta{
  padding-top:160px !important;
  padding-bottom:160px !important;
  text-align:center;
}

.about-cta h2,
.about-cta > p:not(.eyebrow){
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.about-cta > p:not(.eyebrow){
  margin-bottom:34px;
}

.about-cta-button{
  display:inline-block;
  padding:14px 26px;
  border:1px solid #18b24b;
  border-radius:12px;
  background:#18b24b;
  color:#fff;
  font-weight:600;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.about-cta-button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(24,178,75,.25);
  background:#159b41;
}

@media(max-width:1024px){
  .values-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .existence-section,
  .journey-section{
    gap:50px;
  }
}

@media(max-width:768px){
  .about-page .about-section{
    padding:78px 20px;
  }

  .about-hero{
    padding-top:165px !important;
    padding-bottom:100px !important;
  }

  .about-page h1{
    font-size:clamp(2.8rem, 13vw, 4.5rem);
  }

  .about-page .about-text,
  .about-copy-block > p:last-child,
  .existence-copy p,
  .future-card > p:last-child,
  .about-cta > p:not(.eyebrow){
    font-size:1rem;
  }

  .about-story-grid,
  .existence-section,
  .journey-section,
  .future-card{
    grid-template-columns:1fr;
    gap:24px;
  }

  .about-copy-block,
  .future-card{
    padding:30px 25px;
  }

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

  .about-page .value-card{
    min-height:0;
  }

  .value-number{
    margin-bottom:34px;
  }

  .future-section{
    padding-top:0 !important;
  }

  .about-cta{
    padding-top:105px !important;
    padding-bottom:110px !important;
  }
}