@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

*{
    font-family: 'Inter', sans-serif;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    overflow-x: hidden;
}

/* body {
    padding: 32px;
} */

p{
    line-height: 1.5;
}

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

/* Scroll reveal — alternate slide in from left / right */
.reveal{
    opacity: 0;
    /* Longer transform = slower slide; tweak ms to taste */
    transition: opacity 900ms ease, transform 1400ms cubic-bezier(0.26, 1, 0.36, 1);
}

/* Full off-screen start: one section-width left/right (dramatic edge-to-center slide). */
.reveal--left{
    transform: translateX(-100%);
}

.reveal--right{
    transform: translateX(100%);
}

.reveal.is-visible{
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce){
    .reveal,
    .reveal.reveal--left,
    .reveal.reveal--right{
        transition: none;
        opacity: 1;
        transform: none;
    }
}

nav{
    padding-top: 32px;
    padding-right: 32px;
    padding-left: 32px;
    }

/* img{
    width: 100%;
} */
.letter-space{
    letter-spacing: 0.5px;
}

.container{
    padding: 96px 32px;
}

.row {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.row--special{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

a{
    text-decoration: none;
    color: #263244;
    cursor: pointer;
}

li{
    list-style: none;
}

.transition__underline:after{
    content: '';
    position: absolute;
    background-color: rgb(100,21,255);
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -3px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}

.transition__underline:hover:after{
    visibility: visible;
    opacity: 1;
}

.purple{
    color: rgb(100,21,255);
}

.pre-heading {
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(100,21,255);
    
}

h2{
    font-weight: 900;
    font-size: 48px;
    color: rgba(36, 62, 99, 1);
}

.section-para{
    color: rgba(36, 62, 99, 0.6);
    font-size: 18px;
    font-weight: 500;

}

.center{
    text-align: center;
}

.grey{
    color: #A0AEC0;
}

.black{
    color: #242424;
}

.white{
    color: #F7FAFC;
}
/* NAV  */

.landing{
    padding-left: 32px;
    padding-right: 32px;
}

nav{
    letter-spacing: 0.5px;
}

.nav{
    display: flex;  
    justify-content: space-between;
    height: 40px;
}

.nav__logo--img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.nav__logo{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav__logo--text {
    font-weight: 900;
    color: #263244;
    font-size: 24px;
    display: flex;
    transition: color 300ms ease;
}

.nav__logo--text:hover{
    color: rgb(100,21,255);
}

.nav__links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;

}

.nav__link{
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.nav__link--hover{
    transition: all 300ms ease;
}

.nav__link--hover:hover{
    color: rgb(100,21,255);
}

.nav__link--primary {
    background-color: rgb(100,21,255);
    padding: 12px 32px;
    border-radius: 40px;
    color: white;
    transition: background-color 400ms ease;
}

.nav__link--primary:hover{
    background-color: rgb(62, 16, 154);
}

.nav__link--space{
    margin-right: 12px;
}

/* 
    NAV MENU 
 */

 .btn__open{
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: rgb(100,21,255);
    cursor: pointer;
    visibility: hidden;
 }

 .btn__close{
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: rgb(100,21,255);
    cursor: pointer;
 }

 .backdrop{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 500;
    background-color: #F7FAFC;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
 }

 .open--menu{
    max-height: 100vh;
    overflow-y: hidden;
 }

 .open--menu .backdrop{
    visibility: visible;
    opacity: 1;
 }

 .nav__link--burger__custom{
    font-size: 24px;
    margin-top: 22px;
 }





/*

 HEADER 

 */

header{
    height: auto;
}

.container--header{
    padding-top: 32px;
    padding-bottom: 32px;
}

.header{
    display: flex;
}

.header__logo{
    width: 60%;
    display: flex;
    justify-content: center;
}

.header__info{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__logo--img{
    width: 95%;
}

.testimonials__logo--img{
    width: 100%;
}

h1{
    font-size: 48px;
}

.header__info--para{
    color: rgba(36, 62, 99, 1);
    font-size: 18px;
    margin: 36px 0;
}

.testimonials__text{
    color: rgba(36, 62, 99, 0.5);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonials__logo--img{
    opacity: 0.6;
}

.testimonials__logo{
    width: 80%;
}

.header__info--testimonials{
    margin-top: 70px;
}

.header__info--email {
    width: 100%;
    max-width: 448px;
    border: 2px solid rgba(7, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.email__input{
    border: none;
    background: transparent;
    scroll-margin-right: 16px;
    font-size: 16px;
    outline: none;
    flex: 1;
    min-width: 0;
    /* Inset placeholder and typed text from the pill edge (fixes flush-left text) */
    padding: 14px 16px 14px 24px;
    box-sizing: border-box;
}

/* Chrome/Safari autofill can reset padding — keep inset */
.email__input:-webkit-autofill,
.email__input:-webkit-autofill:hover,
.email__input:-webkit-autofill:focus{
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
}

.email__input::placeholder{
    color: rgba(8, 0, 0, 0.3);
    font-size: 16px;
    font-weight: 500;
}

.header__info--email:focus-within{
    border-color: rgba(100,21,255,1);
}   

.email__button{
    border: none;
    margin: 6px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background-color: rgb(100,21,255);
    border-radius: 40px;
    color: rgb(247, 241, 241);
    transition: background-color 400ms ease;
}

.email__button:hover{
    background-color: rgb(71, 8, 197);

}

.email__button--mobile{
    border: none;
    height: 64px;
    width: 100%;
    max-width: 448px;
    margin-top: 8px;
    padding: 16px 0px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background-color: rgb(100,21,255);
    border-radius: 40px;
    color: white;
    transition: background-color 400ms ease;
    display: none;
}

.email__button--mobile:hover{
    background-color: rgb(60, 24, 133);

}

/*
 FEATURES 
 */

 .section__heading{
    margin: 24px 0 24px;
     font-size: 48px;
     color: rgba(36, 62, 99, 1);
     text-align: left;

 }

.features__wrapper{
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.features__text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features__text--para{
    margin: 0 auto;
    width: 60%;
    text-align: center;
}

.features__highlights{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 64px;
}

.features__highlight{
    display: flex;
    justify-content: space-between;
    width: calc(100%/3);
    margin-bottom: 64px;
}

.highlight__description{
    font-size: 16px;
    line-height: 2;
    width: 80%;
    margin-top: 16px;
}

.highlight__title{
    font-weight: 700;
    color: rgba(36, 62, 99, 1);
    font-size: 24px;
}

.highlight__img{
    border: 2px solid rgba(24, 24, 24, 0.1);
    padding: 20px;
    border-radius: 50px;
    margin-right: 16px;
}

/*
 QUALITY 
 */


 .quality--wrapper{
    display: flex;
    justify-content: space-between;
 }
 .quality--text{
    width: 45%;
    text-align: left;
}

 .quality--img{
    width:50%;
    display: flex;
    align-items: center;
 }

 .quality--para{
    text-align: left;
    margin: 0;
    line-height: 1.75;
 }

 .quality__img{
    width: 100%;
 }

 .quality__img--wrapper{
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    padding-top: 2px;
 }

 .learn-more{
    margin: 0;
    margin-top: 32px;
 }


 /*
  STEPS 
  */

  .steps--wrapper{
    display: flex;
    justify-content: space-between;
  }

  .steps--img{
    width: 50%;
    display: flex;
    align-items:end;
  }

  .steps--text{ 
    width: 50%;
    padding: 32px 0 32px 64px;
  }

  .steps__img{
    width: 100%;
  }

  .step--wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
  }

  .step{
    display: flex;
  }

  .step--para{
    font-size: 14px;
    width: 100%;
    max-width: 320px;
    line-height: 2;
  }

  .step--heading{
    font-weight: 600;
    font-size: 20px;
    color: #243E63;
    margin-bottom: 16px;
  }

  .step--number{
    color: #CBD5E0;
    font-size: 36px;
    font-weight: 600;
    margin-right: 24px;
  }


  /*
   VALUES 
   */

   .values--wrapper{
    display: flex;
    justify-content: space-between;
   }

   .values__img{
    width: 100%;
   }

   .values__text{
    width: 45%;
   }

   .values__image{
    width: 50%;
   }

   .values__text--para{
    line-height: 1.75;
   }

   .aspect__item{
    display: flex;
    margin-bottom: 16px;
    align-items: center;
   }

   .values__aspects{
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
   }

   .values__aspect{
    max-width: 260px;
   }

   .values__aspect:not(:last-child){
    margin-right: 8px;
   }

   .aspect--heading{
    padding-left: 16px;
    color: #243E63;
   }

   .aspect__para{
    font-weight: 400;
    font-size: 16px;
   }

   .item--general{
    border-radius: 100%;
    aspect-ratio: 1/1;
    /* height: 32px;
    width: 32px; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
   }

   .item--v1{
    background-color: rgba(0, 255, 0, 0.4);
    color: darkgreen;
    padding: 8px 12px;
   }
   .item--v2{
    background-color: rgba(255, 0, 0, 0.4);
    color: darkred;
    padding: 8px;
   }
   

/* 
    PRICING 
 */

 .pricing__header{
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 .pricing__header--para{
    width: 45%;
 }

 .pricing__labels{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 64px;
 }

 .pricing__label{
    width: calc((100% - 48px)/3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    background: rgb(100,21,255);
    background: radial-gradient(circle, rgba(100,21,255,1) 0%, rgba(72,12,187,1) 100%);
 }

 .label__sec{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    color: #F7FAFC;
 }

.label__sec--heading{
    font-size: 20px;
}

.button--basic{
    background-color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 40px;
    color:  rgb(100,21,255);
    cursor: pointer;
    transition: background-color 400ms ease;
    border: none;
    transition: all 300ms ease;
    white-space: nowrap;
}

.button--basic:hover{
    box-shadow: 1px 10px 5px rgba(0, 0, 0, 0.1);
}

.button--2:hover{
    background-color: #dbdbdb;
}

.button--2{
    transition: all 300ms ease
}

.label__sec--2{
    border-top: 2px solid rgba(102, 126, 234, 1);
    border-bottom: 2px solid rgba(102, 126, 234, 1);
}

.pricing__label--business{
    margin: 0;
}

.label__sec--features{
    margin-top: 24px;
    color: grey;
    font-weight: 500;
}

.label__sec--price{
    font-weight: 700;
    font-size: 48px;
    margin: 16px 0;
}

.pricing__label--alternate{
    background: none;
    background-color: rgb(241, 239, 239);
    border: 1px solid rgba(0, 0,0, 0.1);
    position: relative;
}

.label__sec--2__border{
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.button--1{
    background: linear-gradient(115deg, rgb(56, 178, 172) 0%, rgb(129, 230, 217) 100%);
    color: white;
}

.button--3{
    background: linear-gradient(115deg, rgb(245, 101, 101) 0%, rgb(254, 178, 178) 100%);
    color: rgb(250, 246, 246);
}

/* Pricing Section Styles */

.pricing__label--personal{
    position:relative;
}

.pricing__label--alternate::before{
    content: "";
    position: absolute;
    border-radius: 8px 8px 0 0;
    height: 8px;
    width: 100%;
    top: 0px;
    overflow-x: hidden;
}

.pricing__label--personal::before{
    background: linear-gradient(115deg, rgb(56, 178, 172) 0%, rgb(129, 230, 217) 100%);
}

.pricing__label--enterprise::before{
    background: linear-gradient(115deg, rgb(245, 101, 101) 0%, rgb(254, 178, 178) 100%);
}

.label__sec--features--light{
    color: rgba(228, 228, 228);
}


/*
 TESTIMONIALS 
 */

 .test--wrapper{
    display: flex;
    gap: 40px;
 }
 
 .test__image--img{
    width: 100%;
 }

 .test__image{
    width: 50%;
    display: flex;
    align-items: center;
 }

 .test__text{
    width: 50%;
    padding-left: 56px;
    min-width: 0;
 }

 .test__instance{
    margin-top: 40px;
 }
 .test__instance--rating{
    display: flex;
    justify-content: space-between;
    max-width: 100px;
 }

 .test__instance--heading{
    margin: 24px 0;
    padding-left: 0;
 }

 .test__instance--para{
    color: #4a5568;
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
 }

 .test__instance--panel{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
 }

 .profile__picture--wrapper{
    height: 80px;
    width: 80px;
    border-radius: 360px;
    overflow: hidden;
 }

 .profile__picture--img{
    width: 100%;
 }

 .panel__profile{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
 }

 .signature--heading{
    padding: 0;
 }

.panel__buttons{
    display: flex;
    justify-content: space-between;
    margin-right: 16px;
}

.panel__button{
    border: none;
    background-color: rgba(205, 205, 205, 0.2);
    border-radius: 400px;
    font-size: 16px;
    padding: 16px;
    color: rgb(100,21,255);
    font-weight: 900;
    cursor: pointer;
    transition: all 400ms ease;
}

.panel__button:hover{
    background-color: rgba(205, 205, 205, 0.5);
}

.panel__button:not(:last-child){
    margin-right: 32px;
}

.panel__button--special{
    position: relative;
}

.panel__button--special:after{
    content: '';
    position: absolute;
    height: 24px;
    width: 1px;
    background-color: #4a5568;
    right: -16px;
    top: 12px;
    opacity: 0.1;
    cursor: default;
}

/* Slick slider minor layout tweaks */
.test__slider{
    width: 100%;
}

.test__slide{
    outline: none;
}

.test__nav{
    margin: 8px 0 0;
    justify-content: flex-end;
}

/*
 GET STARTED 
 */

 .start__container{
    background-color: rgb(100,21,255);
    width: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 96px);
 }

 .start__heading{
    color: #F7FAFC;
    font-size: 30px;
    width: 100%;
    max-width: 640px;
    line-height: 1.5;
 }

 .start__buttons{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
 }

 .button__start{
    padding: 24px 48px;
    font-size: 16px;
    background-color: #eb5454;
    color: #F7FAFC;
    transition: all 400ms ease;
 }

 .button__start:hover{
    background-color: #cc2525;
 }
 .button__contact{
    padding: 24px 48px;
    font-size: 16px;
    border: 1px solid rgba(73, 71, 71, 0.4);
    background-color: rgb(100,21,255);
    color: #f4f5f7;
    transition: all 300ms ease;
    margin-left: 24px;
 }

 .button__contact:hover{
    background-color: #92adc9;
    color: rgb(100,21,255);
 }

/* FOOTER  */

footer{
    background-color: rgb(100,21,255);
}

.footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__links{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(125, 118, 118, 0.2);
}

.footer__links--section{
    display: flex;
    flex-direction: column;
    color: #F7FAFC;
}

.footer__link{
    color: #F7FAFC;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    width: fit-content;
}

.footer__link:after{
    background-color: #F7FAFC;
    height: 2px;
}

.footer__link:not(:last-child){
    margin-bottom: 16px;
}


.footer__link--heading{
    margin-bottom: 32px;
    font-size: 16px;
}

.footer__tail{
    padding-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__tail--logo{
    display: flex;
    align-items: center;
}

.footer__logo--img{
    width: 100%;
}

.footer__logo--wrapper{
    height: 32px;
    width: 32px;
}

.footer__logo--text{
    color: #F7FAFC;
    font-size: 20px;
    font-weight: 900;
    margin-left: 8px;
}

.footer__tail--copyright{
    color:#CBD5E0;
    font-weight: 500;
}

.footer__tail--socials{
    display: flex;
    justify-content: space-between;
}

.social__link:not(:last-child){
    margin-right: 16px;
}

.social__logo{
    background-color: #F7FAFC;
    /* height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center; */
    border-radius: 100%;
    transition: all 300ms ease;
}

.social__logo--fb{
    padding: 8px 12px;
}
.social__logo--x{
    padding: 8px;
}
.social__logo--yt{
    padding: 8px;
}


.social__logo:hover{
    background-color: #7e94a1;

}


/*
 MEDIA QUERIES 
 */

 @media (max-width: 1400px){
    .header__logo--img{
        max-width: 512px;
    }
 }

 @media (max-width: 1024px){
    .header{
        flex-direction: column;
    }

    .header__info{
        display: flex;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }

    h1{
        font-size: 30px;
        text-align: center;
        width: 100%;
    }

    .header__info--para{
        text-align: center;
        font-size: 16px;
        width: 100%;
        max-width: 512px;
    }

    .header__info--email{
        width: 100%;
        max-width: 448px;
    }

    .header__info--testimonials{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .testimonials__text{
        font-size: 14px;
    }

    .testimonials__logo{
        width: 100%;
        max-width: 512px;
    }

    .header__logo{
        margin: 0 auto;
        margin-top: 32px;
        display: flex;
        justify-content: center;
    }

    .header__logo--img{
        width: 512px;
    }

    .container--header{
        height: auto;
    }

    .nav__links{
        display: none;
    }

   .btn__open{
    visibility: visible;
   }

   .features__highlight{
    width: 50%;
   }

   .features__highlights{
    margin-left: 16px;
    margin-right: 16px;
   }

   .section__heading{
    font-size: 34px;
   }

   .steps--img{
    align-items: center;
   }

   .values__aspects{
    flex-direction: column;
   }

   .values__aspect:not(:last-child){
    margin-bottom: 40px;
   }

   .values__image{
    display: flex;
    align-items: center;
   }

   .pricing__labels{
    flex-direction: column;
    align-items: center;
    gap: 32px;
   }

   .pricing__label{
    width: 100%;
    max-width: 520px;
   }

   .pricing__label:not(:last-child){
    margin-bottom: 0;
   }

   .panel__profile{
    width: 100%;
   }

   .test__text{
    padding-left: 0;
    width: 60%;
   }

   .test__image{
    width: 40%;
   }

   .start__container{
    flex-direction: column;
    padding: 64px 32px;
   }

   .start__heading{
    width: 80%;
    text-align: center;
    margin-bottom: 24px;
   }

   .footer__links{
    flex-wrap: wrap;
    justify-content: center;
   }

   .footer__links--section{
    width: calc(100% / 3);
    min-width: 160px;
   }

}

 @media (max-width: 768px){

    .container{
        padding: 72px 24px;
    }

    .container--header{
        padding-top: 36px;
        padding-bottom: 36px;

    }
        
    header{
        height: auto;
    }

    .email__button--mobile{
        display: block;
    }

    .email__button{
        display: none;
    }

    .header__info--email{
        height: 64px;
        justify-content: center;
    }

    .email__input{
        margin: 0;
    }

    .header__info--testimonials{
        margin-top: 48px;
    }

    .header__logo--img{
        width: 100%;
        max-width: 512px;
        min-width: 0;
    }

    .features__highlight{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .highlight__img{
        margin: 0;
    }

    .highlight__text--wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .highlight__description{
        text-align: center;
    }

    .features__highlights{
        justify-content: center;
        align-items: center;
    }

    .features__wrapper{
        margin-bottom: 0;
    }

    .features__text--para{
        font-size: 14px;
    }

    .quality--wrapper{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
    }

    .quality--img{
        width: 100%;
    }

    .quality--text{
        width: 100%;
        margin-top: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quality__heading{
        text-align: center;
        font-size: 30px;
    }

    .quality--para{
        text-align: center;
    }

    .section-para{
        font-size: 14px;
    }

    .steps--wrapper{
        flex-direction: column;
        align-items: center;
    }

    .steps--img{
        width: 100%;
    }

    .steps--text{
        padding-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 48px 0;
    }

    .step{
        flex-direction: column;
        align-items: center;
    }

    .step--heading{
        margin-top: 8px;
    }

    .step:not(:first-child){
        margin-top: 32px;
    }

    .step--text{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step--number{
        margin: 0;
    }

    .step--para{
        text-align: center;
    }

    .steps__heading{
        text-align: center;
    }

    .values--wrapper{
        flex-direction: column-reverse;
    }

    .values__image{
        width: 100%;
        margin: auto;
    }

    .values__text{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        margin-top: 64px;
        width: 100%;

    }

    .values__text--para{
        text-align: center;
    }

    .values__aspect{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .aspect__para{
        text-align: center;
    }

    .learn-more{
        display: block;
    }   

    .pricing__header--para{
        width: 100%;
    }

    .pricing__label{
        width: 100%;
    }

    .test--wrapper{
        flex-direction: column;
        align-items: center;
    }

    .test__image{
        width: 100%;
    }

    .test__text{
        margin-top: 64px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .test__instance{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .test__instance--para{
        text-align: center;
    }

    .test__instance--panel{
        flex-direction: column;
    }

    .test__instance--heading{
        text-align: center;
    }

    .panel__profile{
        flex-direction: column;
        align-items: center;
    }

    .panel__buttons{
        margin-top: 16px;
        margin-right: 0;
    }

    .start__buttons{
        flex-direction: column;
    }

    .button__contact{
        margin-left: 0;
        margin-top: 16px;
    }

    .start__heading{
        font-size: 24px;
    }

    .footer__links--section{
        width: calc(100% / 2);
        align-items: center;
        padding-top: 40px;
    }

    .footer__links{
        flex-wrap: wrap;
        justify-content: center;
    
    }

    .footer__tail{
        flex-direction: column;
    }

    .footer__tail--copyright{
        margin: 32px 0;
        text-align: center;
    }
 }

 @media (max-width: 480px){
    nav{
        padding-top: 20px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .container{
        padding: 56px 16px;
    }

    h1{
        font-size: 34px;
    }

    .section__heading{
        margin: 56px 0 16px;
        font-size: 28px;
    }

    .button--basic{
        width: 100%;
        max-width: 260px;
        padding: 16px 20px;
    }

    .start__buttons{
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .button__contact{
        margin-left: 0;
        margin-top: 12px;
    }

    .footer__links--section{
        width: 100%;
        align-items: flex-start;
    }

    .footer__tail--logo{
        flex-wrap: wrap;
        justify-content: center;
    }
 }

/* FAQ — single column, card accordion */
.faq__shell {
    position: relative;
    overflow: hidden;
}

.faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3rem);
    width: 100%;
}

.faq__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    max-width: 36rem;
    margin-inline: auto;
}

.faq__header .section__heading,
.faq__header .pre-heading {
    text-align: center;
}

.faq__title {
    max-width: 22ch;
    margin-inline: auto;
}

.faq__intro {
    margin-top: 1rem;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.faq__item {
    margin: 0;
    padding: 1.125rem 1.25rem;
    background: #f7fafc;
    border-radius: 0.5rem;
    border: 1px solid rgba(100, 21, 255, 0.06);
}

.faq__question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.45;
    color: rgba(36, 62, 99, 1);
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker,
.faq__question::marker {
    display: none;
}

.faq__question-text {
    min-width: 0;
    text-align: left;
}

.faq__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: rgba(36, 62, 99, 0.45);
    transition: transform 200ms ease;
}

.faq__item:not([open]) .faq__toggle {
    transform: none;
}

.faq__item[open] .faq__toggle {
    transform: rotate(-180deg);
}

.faq__answer {
    margin: 0;
    padding-top: 0.875rem;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.65;
    text-align: left;
}

.faq__blob {
    position: absolute;
    z-index: -1;
    color: rgba(100, 21, 255, 0.2);
    pointer-events: none;
}

.faq__blob--1 {
    top: 10%;
    right: -15%;
    width: min(50vw, 28rem);
    height: auto;
}

.faq__blob--2 {
    bottom: 5%;
    left: -20%;
    width: min(45vw, 24rem);
    height: auto;
}

 /* DONE  */