*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
      padding-top: 30px;
}
.site-header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
    background: #fff;
    padding: 10px 5%;
    border-bottom: 1px solid #eee;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:8px;
    flex-shrink:0;
}

.logo-icon{
    font-size:34px;
    color:#011F7B;
}

.logo-name{
    height:36px;
    width:auto;
    display:block;
}




/* ===========================
   NAVIGATION
=========================== */
.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    flex:1;
}

.main-nav a{
    text-decoration:none;
    color:#000;
    font-family:general;
    font-size:15px;
    font-weight:600;
    padding:10px 14px;
    border-radius:10px;
    transition:.3s;
}

.main-nav a:hover{
    background:#f5a623;
}

/* ===========================
   RIGHT SIDE
=========================== */

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-shrink:0;
}

.login-icon{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#000;
    border-radius:50%;
    transition:.3s;
}

.login-icon:hover{
    background:#f3f3f3;
}

.login-icon i{
    font-size:28px;
}

/* Hide menu button on desktop */
.menu-toggle{
    display:none;
}
@media (max-width:768px){

.menu-toggle{
    display:block;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    z-index:1001;
}
.login-icon{
    margin-right: -70px;
}


.main-nav{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.main-nav.active{
    display:flex;
}

}


@font-face {
    font-family: "clash";
    src: url("fonts/clash.otf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-size: medium;
}

@font-face {
    font-family: "aurora";
    src: url("fonts/aurora.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "general";
    src: url("fonts/general.otf") format("truetype");
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "neue";
    src: url("fonts/neue.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

html{
    scroll-behavior:smooth;
}


/*=========================
   LEARN MORE HERO
=========================*/

.builder-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    padding:90px 6%;
    background:#09090b;
    overflow:hidden;
}

.builder-left{
    flex:1;
}

.builder-tag{
     display:inline-block;
font-family: general;
    color:#f56b16;
    font-size:13px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.builder-left h1{
font-family: general;
    font-size:40px;
    line-height:1.05;
    font-weight:600;
    color:#fff;
    margin-bottom:24px;
}

.builder-left p{
font-family: general;
    max-width:620px;

    color:#c7c7c7;
    font-size:15px;
    line-height:1.8;

    margin-bottom:40px;

}

.builder-buttons{
font-family: general;
    display:flex;
    gap:18px;
    margin-bottom:40px;

}

.btn-orange{
max-height: 50px;
    padding:14px 24px;

    background:#0034ff;
    color:#fff;
    text-decoration:none;
font-family: general;

    border-radius:20px;
    font-weight:600;

    transition:.2s;

}

.btn-orange:hover{

    background:#fff;
    color: black;

}

.btn-outline{
max-height: 50px;
    padding:14px 26px;

    background:#25d366;
    color:#fff;
    text-decoration:none;
font-family: general;

    border-radius:20px;
    font-weight:600;

    transition:.2s;

}


.btn-outline:hover{

    background:#25d366;
    color:#090909;

}

.builder-features{

    display:flex;
    gap:55px;

}

.builder-features h3{
font-family: general;
    color:#fff;
    font-size:30px;
    margin-bottom:8px;

}

.builder-features span{
font-family: general;
    color:#9b9b9b;
    font-size:15px;

}

.builder-right{

    flex:1;

    display:flex;
    justify-content:flex-end;

}

.builder-right img{

    width:100%;
    max-width:700px;
    max-height: 500px;
transform: translateY(-60px);

    border-radius:24px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.45);

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}

/*=========================
   TABLET
=========================*/

@media(max-width:1200px){

.builder-left h1{

    font-size:50px;

}

.builder-left p{

    font-size:18px;

}

.builder-right img{

    max-width:560px;

}

.builder-features{

    gap:35px;

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}
}

/*=========================
   MOBILE
=========================*/

@media(max-width:768px){

.builder-hero{

    display:none;

}
/* Hide on desktop & tablet */
.mobile-hero{
    display:none;
}

/* MOBILE ONLY */
@media (max-width:768px){

.mobile-hero{
    display:block;
    background:linear-gradient(150deg,#080808,#09090b);
    padding:42px 22px 55px;
    overflow:hidden;
}

.mobile-hero-content{
    max-width:420px;
    margin:auto;
}

.mobile-hero h1{

    font-family:general;
    font-size:46px;
    line-height:1.03;
    font-weight:800;
    color:#fff;
    margin:0 0 28px;
    letter-spacing:-1.5px;
}


.mobile-hero h1 span{

    color: #f56b16;
}

.mobile-hero p{
    font-family: general;
    font-size:16px;
    line-height:1.65;
    color:rgba(255,255,255,.88);
    margin-bottom:34px;
    font-weight:400;
}

.mobile-buttons{
    font-family: general;
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:38px;
}

.btn-primary,
.btn-outline{
    width:100%;
    height:62px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    border-radius:10px;
    font-size:1.2rem;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#f56512;
    color:#fff;
}

.btn-primary:active{
    transform:scale(.98);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.9);
    color:#fff;
    background:transparent;
}

.btn-outline:active{
    background:rgba(255,255,255,.08);
}

.mobile-hero-image{
    border-radius:24px;
    overflow:hidden;
    margin-top:8px;
}

.mobile-hero-image img{
    width:100%;
    display:block;
    border-radius:24px;
    object-fit:cover;
}

}
}



@font-face {
    font-family: "clash";
    src: url("fonts/clash.otf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-size: medium;
}

@font-face {
    font-family: "aurora";
    src: url("fonts/aurora.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "general";
    src: url("fonts/general.otf") format("truetype");
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "neue";
    src: url("fonts/neue.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

html{
    scroll-behavior:smooth;
}

.comparison{
    width:100%;
    padding:90px 2%;
    background:#fff;
}

.comparison-box{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
}

.comparison-column h2{
    font-family:general;
    font-size:28px;
    font-weight:700;
    color:#0d2c66;
    margin-bottom:45px;
    line-height:1.1;
}

.challenge-list,
.solution-list{
    list-style:none;
    padding:0;
    margin:0;
}

.challenge-list li,
.solution-list li{

    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:32px;

    font-size:16px;
    line-height:1.6;
    color:#000;
    font-family:general,sans-serif;
    font-weight:400;
}

.cross{
    color:#ff3d3d;
    font-size:26px;
    font-weight:700;
    flex-shrink:0;
    margin-top:3px;
}

.tick{
    color:#17c95c;
    font-size:26px;
    font-weight:700;
    flex-shrink:0;
    margin-top:3px;
}

/* ---------------- MOBILE ---------------- */

@media(max-width:768px){

.comparison{

    padding:60px 20px;
}

.comparison-box{

    grid-template-columns:1fr;
    gap:50px;
}

.comparison-column h2{

    font-size:26px;
    margin-bottom:28px;
}

.challenge-list li,
.solution-list li{
color: #000;
    font-size:16px;
    line-height:1.7;
    gap:12px;
    margin-bottom:20px;
}

.cross,
.tick{

    font-size:20px;
}

}

/* ================= FAQ ================= */

.faq-section{
    max-width:1200px;
    margin:120px auto;
    padding:0 10px;
}

.faq-header{
    text-align:center;
    margin-bottom:30px;
}

.faq-badge{
    font-family: general;
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    background:#171717;
    color:white;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom: 10px;
}

.faq-header h2{
    margin:22px 0 16px;
    font-size:3rem;
    font-weight:600px;
    color:black;
    font-family: general;
}

.faq-header p{

    max-width:620px;
    margin:auto;
    color:black;
    font-size:1.05rem;
    font-weight: 700px;
    line-height:1.8;
    font-family: general;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    font-family: general;
    background:#0b1220;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:rgba(255,255,255,.18);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:10px 18px;
    color:#fff;
    font-size:1.1rem;
    font-weight:400;
    letter-spacing: 1px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family: general;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    font-size:1.7rem;
    color:white;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
    color:#fff;
}

.faq-item p{
    font-family: general;
    padding:0 30px 20px;
    color:white;
    line-height:1.8;
    font-size:.98rem;

}

@media(max-width:768px){

.faq-section{
    padding:0 20px;
}

.faq-header h2{
    font-size:2.2rem;
}

.faq-item summary{
    font-size:1rem;
    padding:20px;
}

.faq-item p{
    padding:0 20px 20px;
}
}


/*==============================
      AMC SECTION
==============================*/

.amc-section{
    max-height: 300px;
    width:100%;
    background:#fff;
    padding:90px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
   
}

.amc-container{
  

 

  box-sizing: border-box;

  font-family: general;
  color: #111111;
margin-bottom: 70px;
  overflow: hidden;
}

.amc-tag{
    font-family: general;
    color: #fff;
    display:block;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.9;
    margin-bottom:20px;
    font-weight:600;
}

.amc-container h2{
    color: #fff;
    font-family: general;
    font-size:32px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.amc-container h2 i{
    margin-right:10px;
    font-size:34px;
    vertical-align:middle;
    text-align: center;
    color:#fff;

}

.amc-container p{
    color: #fff;
    font-family: general;
    font-size:18px;
    line-height:1.2;
    opacity:.95;
    max-width:800px;
    margin:0 auto 40px;
}

.amc-btn{
   
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:210px;
    height:45px;
    border:2px solid #000;
    border-radius:30px;
    text-decoration:none;
    background:#fff;
    color:#000;
    font-size:18px;
    font-weight:600;
    transition:.35s;
    font-family: general;
}

.amc-btn:hover{
    background:#000;
    color:#fff;
}

/*==============================
      TABLET
==============================*/

@media(max-width:991px){

    .amc-section{
        padding:70px 25px;
    }

    .amc-container h2{
        font-size:42px;
    }

    .amc-container p{
        font-size:21px;
    }

    .amc-btn{
        width:300px;
        height:78px;
        font-size:28px;
    }

    
.amc-btn:hover{
    background:#000;
    color:#fff;
}


}


/*==============================
      MOBILE
==============================*/

@media(max-width:768px){

.amc-section{
    max-height: 300px;
    width:100%;
    background:#f5a623;
    padding:90px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
}


    .amc-tag{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size:12px;
        letter-spacing:2px;
    }

    .amc-container h2{
        display:flex;
        font-size:22px;
        line-height:1.3;
        align-items: center;
        justify-content: center;
    }

  .amc-container h2 i{
    margin-right:6px;
    font-size:26px;
    vertical-align:middle;
    transform: translateY(-13px);

}


    .amc-container p{
        font-family: general;
        font-size:16px;
        line-height:1.4;
        margin-bottom:30px;
    }

   
.amc-btn{
   
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:150px;
    height:40px;
    border:2px solid #000;
    border-radius:12px;
    text-decoration:none;
    color:#000;
    font-size:12px;
    font-weight:600;
    transition:.35s;
    font-family: general;
}





}
/* =========================
   FOOTER
========================= */

.footer {
  width: calc(100% - 56px);
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 0px;
  background: #000;

  border: 1px solid #eeeeee;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;

  padding: 48px 56px 0;

  box-sizing: border-box;

  font-family: general;
  color: #111111;

  overflow: hidden;
}


@font-face {
    font-family: "clash";
    src: url("fonts/clash.otf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-size: medium;
}

@font-face {
    font-family: "aurora";
    src: url("fonts/aurora.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "general";
    src: url("fonts/general.otf") format("truetype");
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "neue";
    src: url("fonts/neue.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(420px, 1.8fr)
    1fr
    1fr
    1fr;

  gap: 60px;

  padding-bottom: 42px;
}


/* =========================
   BRAND
========================= */

.footer-brand {
  max-width: 480px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 30px;
}

.logo-mark {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111111;
  color: #ffffff;

  border-radius: 7px;

  font-size: 15px;
  font-weight: 700;
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color:#fff;
}


/* =========================
   DESCRIPTION
========================= */

.footer-description {
  max-width: 430px;

  margin: 0;

  color: #fff;

  font-size: 14px;
  line-height: 1.55;

  letter-spacing: -0.15px;
}


/* =========================
   SOCIAL
========================= */

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 22px;
}

.social-links a {
  color: #fff;
  text-decoration: none;

  font-size: 19px;
  font-weight: 500;

  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.55;
}


/* =========================
   COLUMNS
========================= */

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.footer-column h3 {
  margin: 6px 0 20px;

  font-size: 14px;
  font-weight: 600;

  color: #fff;
}

.footer-column a {
  margin-bottom: 13px;

  color: #fff;

  text-decoration: none;

  font-size: 13px;
  line-height: 1.2;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #f56512;
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
  min-height: 74px;

  border-top: 1px solid #eeeeee;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-bottom p {
  margin: 0;

  color: #fff;

  font-size: 12px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.legal-links a {
  color: #fff;

  font-size: 12px;

  text-decoration: underline;
  text-underline-offset: 2px;

  white-space: nowrap;
}

.legal-links a:hover {
  color: #f56512;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .footer {
    width: calc(100% - 32px);
    padding: 40px 35px 0;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 3;
    max-width: 600px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .footer {
    width: calc(100% - 20px);

    padding: 35px 25px 0;

    border-radius: 24px;
  }

  .footer-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px 25px;

    padding-bottom: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .brand-logo {
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-column h3 {
    margin-top: 0;
    margin-bottom: 17px;
  }

  .footer-column a {
    font-size: 12px;
    margin-bottom: 11px;
  }

  .footer-bottom {
    min-height: auto;

    padding: 22px 0;

    align-items: flex-start;
    flex-direction: column;

    gap: 18px;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:50px;
    height:50px;

    background:#25D366;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:25px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 18px 40px rgba(37,211,102,.45);
}

.whatsapp-float i{
    line-height:1;
}

@media(max-width:768px){

.whatsapp-float{
    width: 45px;
    height:45px;

    right:18px;
    bottom:18px;

    font-size:30px;
}

}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
        box-shadow:0 0 0 16px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float{
    animation:whatsappPulse 2s infinite;
}