/* =========================
   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{
  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;
}

/* =========================
   SERVICES HERO
========================= */

.services-hero{
  width:100%;
  min-height:100vh;

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

  padding:160px 20px 100px;

  text-align:center;

  background:#000;
}

/* CONTENT */

.services-content{
  max-width:1000px;
}

/* TITLE */

.services-content h1{
  font-size:5rem;

  line-height:1.15;

  font-weight:800;

  margin-bottom:30px;

  animation:fadeUp 1s ease;
}

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

/* TEXT */

.services-content p{
  font-size:1.2rem;

  line-height:1.9;

  color:#cfcfcf;

  max-width:850px;

  margin:auto;

  animation:fadeUp 1.2s ease;
}

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

@keyframes fadeUp{

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

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

}

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

@media(max-width:1024px){

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

}

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

@media(max-width:768px){

  .navbar{
    padding:16px 20px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-btn{
    display:none;
  }

  /* MOBILE NAV */

  .nav-links{
    position:absolute;

    top:100%;
    left:-100%;

    width:100%;

    background:#000;

    flex-direction:column;

    text-align:center;

    padding:30px 0;

    transition:0.4s;
  }

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

  /* HERO */

  .services-hero{
    padding:140px 20px 90px;
  }

  .services-content h1{
    font-size:2.8rem;

    line-height:1.3;
  }

  .services-content p{
    font-size:1rem;
  }

}

/* =========================
   WEBSITE SERVICE
========================= */

.service-details{
  width:100%;

  padding:120px 70px;

  background:#000;

  overflow:hidden;
}

.green{
  color: #18b24b;
}

/* CONTAINER */

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

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

.service-content{
  flex:1;

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

  transition:1s ease;
}

/* ICON */

.service-icon{
  font-size:2.5rem;

  color:#18b24b;

  margin-bottom:25px;
}

/* TITLE */

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

  line-height:1.1;

  margin-bottom:35px;

  font-weight:800;
}

/* DESCRIPTION */

.service-content p{
  color:#d2d2d2;

  font-size:1.2rem;

  line-height:1.9;

  max-width:500px;

  margin-bottom:35px;
}

/* FEATURES */

.service-list{
  margin-bottom:45px;
}

.service-list li{
  margin-bottom:22px;

  color:#f2f2f2;

  font-size:1.15rem;

  transition:0.3s ease;
}

.service-list li:hover{
  color:#18b24b;

  transform:translateX(8px);
}

/* BUTTON */

.service-btn{
  display:inline-block;

  background:#18b24b;

  color:#fff;

  padding:18px 40px;

  border-radius:14px;

  font-weight:600;

  transition:0.4s ease;
}

.service-btn:hover{
  transform:translateY(-5px);

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

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

.service-image{
  flex:1;

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

  transition:1s ease;
}

.service-image img{
  width:100%;

  border-radius:28px;

  display:block;

  transition:0.5s ease;
}

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

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

@media(max-width:1024px){

  .service-details{
    padding:100px 40px;
  }

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

  .service-content h2{
    font-size:4rem;
  }

}

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

@media(max-width:768px){

  .service-details{
    padding:90px 20px;
  }

  .service-content h2{
    font-size:2.8rem;
  }

  .service-content p{
    font-size:1rem;
  }

  .service-list li{
    font-size:1rem;
  }

  .service-btn{
    width:100%;
    text-align:center;
  }

}


/* =========================
   CUSTOM SOFTWARE
========================= */

.software-section{
  width:100%;

  padding:120px 70px;

  background:#000;

  overflow:hidden;
}

/* CONTAINER */

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

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

.software-image{
  flex:1;

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

  transition:1s ease;
}

.software-image img{
  width:100%;

  border-radius:28px;

  display:block;

  transition:0.5s ease;
}

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

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

.software-content{
  flex:1;

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

  transition:1s ease;
}

/* ICON */

.software-icon{
  font-size:3rem;

  font-weight:700;

  color:#18b24b;

  margin-bottom:25px;
}

/* TITLE */

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

  line-height:1.1;

  margin-bottom:30px;

  font-weight:800;
}

/* DESCRIPTION */

.software-content p{
  color:#d2d2d2;

  font-size:1.15rem;

  line-height:1.9;

  max-width:550px;

  margin-bottom:35px;
}

/* LIST */

.software-list{
  margin-bottom:45px;
}

.software-list li{
  margin-bottom:20px;

  color:#f2f2f2;

  font-size:1.1rem;

  transition:0.3s ease;
}

.software-list li:hover{
  color:#18b24b;

  transform:translateX(8px);
}

/* BUTTON */

.software-btn{
  display:inline-block;

  background:#18b24b;

  color:#fff;

  padding:18px 40px;

  border-radius:14px;

  font-weight:600;

  transition:0.4s ease;
}

.software-btn:hover{
  transform:translateY(-5px);

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

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

@media(max-width:1024px){

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

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

  .software-content h2{
    font-size:3.5rem;
  }

}

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

@media(max-width:768px){

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

  .software-content h2{
    font-size:2.6rem;
  }

  .software-content p{
    font-size:1rem;
  }

  .software-list li{
    font-size:1rem;
  }

  .software-btn{
    width:100%;
    text-align:center;
  }

}

/* =========================
   AI AUTOMATION
========================= */

.ai-section{
  width:100%;

  padding:120px 70px;

  background:#000;

  overflow:hidden;
}

/* CONTAINER */

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

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

.ai-content{
  flex:1;

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

  transition:1s ease;
}

/* ICON */

.ai-icon{
  font-size:3rem;

  color:#18b24b;

  margin-bottom:25px;

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

/* TITLE */

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

  line-height:1.1;

  margin-bottom:30px;

  font-weight:800;
}

/* DESCRIPTION */

.ai-content p{
  color:#d2d2d2;

  font-size:1.15rem;

  line-height:1.9;

  max-width:550px;

  margin-bottom:35px;
}

/* LIST */

.ai-list{
  margin-bottom:45px;
}

.ai-list li{
  margin-bottom:20px;

  color:#f2f2f2;

  font-size:1.1rem;

  transition:0.3s ease;
}

.ai-list li:hover{
  color:#18b24b;

  transform:translateX(8px);
}

/* BUTTON */

.ai-btn{
  display:inline-block;

  background:#18b24b;

  color:#fff;

  padding:18px 40px;

  border-radius:14px;

  font-weight:600;

  transition:0.4s ease;
}

.ai-btn:hover{
  transform:translateY(-5px);

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

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

.ai-image{
  flex:1;

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

  transition:1s ease;
}

.ai-image img{
  width:100%;

  border-radius:28px;

  display:block;

  transition:0.5s ease;
}

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

/* BOT FLOAT */

@keyframes floatBot{

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

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

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

}

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

@media(max-width:1024px){

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

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

  .ai-content h2{
    font-size:3.5rem;
  }

}

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

@media(max-width:768px){

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

  .ai-content h2{
    font-size:2.6rem;
  }

  .ai-content p{
    font-size:1rem;
  }

  .ai-list li{
    font-size:1rem;
  }

  .ai-btn{
    width:100%;
    text-align:center;
  }

}


/* =========================
   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 PLATFORM PAGE
========================= */

.platform-page{
  background:#000;
}
.platform-page h2 span{
  color:#18b24b;
}


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

.platform-page .services-hero,
.platform-page .platform-section{
  min-height:0;
  padding:100px 40px;
  background:#000;
}

.platform-page .services-hero{
  min-height:calc(100vh - 30px);
  padding-top:190px;
  padding-bottom:145px;
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(220px, .75fr);
  gap:70px;
  align-items:center;
  text-align:left;
}

.services-content{
  max-width:800px;
}

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

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

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

.platform-page h1{
  max-width:850px;
  margin-bottom:30px;
  font-size:clamp(3.2rem, 6.5vw, 6.2rem);
  line-height:1.02;
}

.platform-page h1 span{
  color:#18b24b;
}

.platform-page .services-content > p:last-child,
.platform-lead,
.platform-card p{
  color:#bdbdbd;
  line-height:1.8;
}

.platform-page .services-content > p:last-child{
  max-width:700px;
  font-size:1.08rem;
}

.platform-orbit{
  position:relative;
  width:min(300px, 100%);
  aspect-ratio:1;
  margin:auto;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
}

.platform-orbit::before{
  content:'';
  position:absolute;
  inset:16%;
  border:1px solid rgba(24,178,75,.35);
  border-radius:50%;
}

.orbit-line{
  position:absolute;
  top:50%;
  left:8%;
  width:84%;
  height:1px;
  background:rgba(255,255,255,.2);
}

.orbit-line-two{
  transform:rotate(60deg);
}

.orbit-node{
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#18b24b;
  box-shadow:0 0 0 8px rgba(24,178,75,.08);
}

.orbit-node-one{top:19%;left:25%;}
.orbit-node-two{right:14%;bottom:25%;}

.orbit-core{
  position:absolute;
  top:50%;
  left:50%;
  display:grid;
  width:68px;
  height:68px;
  place-items:center;
  transform:translate(-50%, -50%);
  border:1px solid #18b24b;
  border-radius:50%;
  color:#18b24b;
  font-size:1.6rem;
  font-weight:700;
}

.platform-overview{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:end;
}

.platform-section-heading h2,
.principles-copy h2,
.platform-future h2,
.platform-cta h2{
  max-width:650px;
  margin-bottom:22px;
  font-size:clamp(2.2rem, 4.5vw, 4rem);
  line-height:1.08;
}

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

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

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

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

.principles-copy h2 span{
  color: #18b24b;
}

.platform-lead{
  max-width:600px;
  font-size:1.08rem;
}

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

.centered-platform-heading h2{
  margin-right:auto;
  margin-left:auto;
}

.platform-card-grid{
  display:grid;
  gap:24px;
}

.audience-grid,
.trust-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.enable-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.platform-card{
  min-height:190px;
  padding:30px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  background:#050505;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

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

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

.platform-card p{
  font-size:.98rem;
}

.platform-icon{
  display:grid;
  width:34px;
  height:34px;
  margin-bottom:42px;
  place-items:center;
  border:1px solid #18b24b;
  border-radius:50%;
  color:#18b24b;
  font-size:.8rem;
  font-weight:600;
}

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

.platform-band .platform-card{
  min-height:155px;
}

.platform-principles{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:100px;
  align-items:start;
}

.platform-future{
  padding-top:50px !important;
  padding-bottom:50px !important;
}

.platform-future .platform-lead{
  max-width:700px;
}

.platform-cta{
  padding-top:155px !important;
  padding-bottom:165px !important;
  text-align:center;
}

.platform-cta h2,
.platform-cta .platform-lead{
  margin-right:auto;
  margin-left:auto;
}

.platform-cta .platform-lead{
  margin-bottom:34px;
}

.platform-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;
}

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

@media(max-width:1024px){
  .platform-page .services-hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .services-content,
  .platform-page .services-content > p:last-child{
    margin-right:auto;
    margin-left:auto;
  }

  .platform-orbit{
    width:230px;
  }

  .audience-grid,
  .enable-grid,
  .trust-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .platform-overview,
  .platform-principles{
    gap:50px;
  }
}

@media(max-width:768px){
  .platform-page .services-hero,
  .platform-page .platform-section{
    padding:78px 20px;
  }

  .platform-page .services-hero{
    min-height:0;
    padding-top:165px;
    padding-bottom:105px;
  }

  .platform-page h1{
    font-size:clamp(2.75rem, 12vw, 4.5rem);
  }

  .platform-page .services-content > p:last-child,
  .platform-lead,
  .platform-card p{
    font-size:1rem;
  }

  .platform-overview,
  .platform-principles{
    grid-template-columns:1fr;
    gap:24px;
  }

  .audience-grid,
  .enable-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }

  .platform-card{
    min-height:0;
  }

  .platform-icon{
    margin-bottom:28px;
  }

  .platform-cta{
    padding-top:110px !important;
    padding-bottom:120px !important;
  }
}