/* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

ul {
    display: flex;
}

li {
    list-style: none;
}

.row {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    display: inline;
    text-decoration: none;
    color: #243e63;
}

p {
    line-height: 1.5;
    font-size: 18px;
}

h1 {
    font-size: 48px;
    color: #1a202c;
}

.container {
    padding: 96px 0;
}

button {
    cursor: pointer;
}

.btn {
    background-color: #6415ff;
    margin-top: 32px;
    padding: 12px 32px;
    border: none;
    border-radius: 500px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    transition: all 300ms;
}

section {
    padding: 0 32px;
}

/* BUTTON MENU */

.menu__backdrop {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
}

.menu--open .menu__backdrop {
    right: 0;
}

.btn__menu {
    display: none;
}

.menu__link {
    display: none;
}

.menu__link--primary {
    color: #f7fafc !important;
    padding: 12px 32px;
    background: #6415ff;
    border-radius: 500px;
    border: none;
}

/* NAVIGATION */

#landing {
    padding: 0 32px;
}

nav {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding-top: 32px;
    padding-bottom: 10px;
}

.nav__row {
    display: flex;
    justify-content: space-between;
    height: 60px;
}

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

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

.nav__logo--title {
    display: flex;
    margin-left: 8px;
    font-size: 24px;
    font-weight: 900;
    color: #243e63;
}

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

.nav__links a {
    transition: color 0.15s ease-in-out;
}

.nav__links a:hover {
    color: #855fd2;
}

.nav__link {
    margin: 0 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .35px;
}

.nav__link--login {
    margin-left: 48px;
}

.nav__link--primary {
    margin: 0;
    padding: 10px 32px;
    margin-top: 2px;
    border-radius: 500px;
    background: #6415ff;
    color: #fff;
}

/* HEADER */

.purple__text {
    color: #6415ff;
}

header {
    position: relative;
}

header .row {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__description {
    width: 100%;
}

.header__img {
    width: 100%;
    width: 700px;
}

.header__description--para {
    margin: 32px 0;
    color: #243e63;
}

.header__email {
    width: 100%;
    max-width: 448px;
    height: 68px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__email--input {
    width: 100%;
    border-radius: 500px;
    border: 2px solid rgb(229, 231, 235);
    padding: 20px 192px 20px 32px;
    color: rgb(36, 62, 99);
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: border-color 300ms;
}

.header__email--input:hover {
    border-color: #6415ff;
}

.header__email--btn {
    z-index: 2;
    margin: 8px;
    height: calc(100% - 16px);
    border-radius: 500px;
    width: 160px;
    border: none;
    background-color: #6415ff;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all 300ms;
}

.header__email--btn:hover {
    background-color: rgba(60, 13, 153);
}

.second__email--btn {
    z-index: 2;
    margin: 8px;
    width: 100%;
    padding: 24px;
    border-radius: 500px;
    border: none;
    background-color: #6415ff;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    visibility: hidden;
}

.header__customers--title {
    margin-top: 80px;
    color: #a0aec0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.header__customers--img {
    width: 100%;
    margin-top: 16px;
    padding-right: 12px;
    opacity: 0.5;
}

/* FEATURES */

#features .row__narrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#features .section__title {
    text-align: center;
}

.row__narrow {
    margin: 0 auto;
    max-width: 1024px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
}

.feature {
    width: calc(100% / 3);
}

.feature__row {
    display: flex;
    align-items: flex-start;
    padding: 32px 24px;
}

.feature__img--wrapper {
    display: flex;
    padding: 20px;
    border: 1px solid #68696b;
    border-radius: 500px;
}

.feature__img {
    width: 24px;
    height: 24px;
}

.feature__text {
    margin-top: 8px;
    margin-left: 16px;
}

.feature__title {
    color: #243e63;
}

.feature__para {
    margin-top: 16px;
    font-size: 16px;
    max-width: calc(634px / 3);
    color: rgb(124, 139, 161);
    line-height: 2;
    font-weight: 500;
}

.section__title {
    font-size: 48px;
    font-weight: 900;
    color: rgb(36, 62, 99);
    line-height: 1.5;
    margin: 16px 0;
    letter-spacing: 0.025em;
}

.section__tag {
    font-size: 16px;
    color: #6415ff;
    letter-spacing: 1.6px;
    font-weight: 700;
}

.section__para {
    font-size: 18px;
    font-weight: 500;
    color: #7c8ba1;
    line-height: 1.625;
    max-width: 100%;
}

/* QUALITY */

#quality .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quality__description {
    max-width: 576px;
    margin: 0 48px;
}

.quality__description,
.quality__img--wrapper {
    width: 50%;
}

.quality__img--wrapper {
    border-radius: 4px;
    border: 3px solid rgb(159, 159, 160);
    position: relative;
    z-index: 2;
    display: flex;
}

.quality__img {
    z-index: 1;
    width: 100%;
}

/* STEPS */

#steps .row {
    display: flex;
    align-items: center;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
}

.step__number {
    color: #cbd5e0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.step__description {
    display: flex;
    flex-direction: column;
    margin-left: 24px;
    max-width: 320px;
}

.step__title {
    font-weight: 600;
    font-size: 20px;
    color: #243e63;
    line-height: 1;
}

.step__para {
    font-size: 14px;
    color: #718096;
    margin-top: 12px;
    font-weight: 500;
    line-height: 2;
}

.steps__img--wrapper {
    margin-right: 24px;
    display: flex;
    align-items: center;
}

/* VALUES */

.values__list {
    display: flex;
}

.value {
    margin-top: 32px;
    margin-right: 32px;
}

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

.value__img--wrapper {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    font-size: 30px;
}

.value__name {
    margin-left: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #243e63;
}

.value__para {
    margin-top: 16px;
    line-height: 1.625;
    color: #718096;
}

.values__img {
    width: 50%;
}

/* PRICING */

#pricing .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pricing .section__tag {
    display: flex;
    justify-content: center;
}

#pricing .section__title {
    display: flex;
    justify-content: center;
}

.plans {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    z-index: 3;
}

.plan {
    flex: 1;
    max-width: 384px;
    margin: 64px 0 0;
    padding-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    position: relative;
    z-index: 100;
    background: #fff;
}

.plan__stripe {
    height: 8px;
    border-radius: 8px 8px 0 0;
    color: #f7fafc;
    background: linear-gradient(115deg, 
    rgb(56, 178, 172) 0%, 
    rgb(129, 230, 217) 100%);
}

.plan__top {
    padding: 32px;
    text-align: center;
}

.plan:nth-child(2) .plan__top,
.plan:nth-child(2) .plan__middle,
.plan:nth-child(2) .plan__bottom {
    background: linear-gradient(
    135deg,
    rgb(76, 81, 191) 0%,
    rgb(102, 126, 234) 100%
  );
    color: white;
}


.plan:nth-child(2) .plan__stripe {
    height: 8px;
    border-radius: 8px 8px 0 0;
    color: #f7fafc;
    background: linear-gradient(135deg,
    rgb(76, 81, 191) 0%, 
    rgb(102, 126, 234) 100%);
}

.plan:nth-child(2) .plan__feature {
    margin-top: 20px;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.plan:nth-child(2) .plan__name,
.plan:nth-child(2) .plan__price,
.plan:nth-child(2) .plan__duration {
    color: #fff;
}

.plan:nth-child(2) .plan__button {
    color: rgb(100, 21, 255);
    background: #fff;
}

.plan:nth-child(3) .plan__stripe {
    background: linear-gradient(115deg,
    rgb(245, 101, 101) 0%,
    rgb(254, 178, 178) 100%);
}

.plan:nth-child(3) .plan__button {
    background: linear-gradient(115deg,
    rgb(245, 101, 101) 0%, 
    rgb(254, 178, 178) 100%);
}

.plan__name {
    font-size: 20px;
    color: #1a202c;
    font-weight: bold;
    line-height: 1.625;
}

.plan__price {
    color: #1a202c;
    font-size: 48px;
    margin: 4px 0;
    font-weight: bold;
    line-height: 1.625;
    padding-right: 30px;
}

.plan__duration {
    color: #a0aec0;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1.625;
}

.plan__middle {
    border-top: 2px solid rgb(229, 231, 235);
    border-bottom: 2px solid rgb(229, 231, 235);
    padding: 32px;
    text-align: center;
}

.plan:nth-child(2) .plan__middle {
  border-top: 2px solid rgb(102, 126, 234);
  border-bottom: 2px solid rgb(102, 126, 234);
}

.plan__target {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.plan__feature {
    margin-top: 20px;
    font-weight: 500;
    color: #718096;
    font-size: 16px;
    line-height: 1.5;
}

.plan__bottom {
    padding: 32px 96px;
    z-index: 10;
    position: relative;
    text-align: center;
}

.plan__button {
    color: #f7fafc;
    background: linear-gradient(115deg,
    rgb(56, 178, 172) 0%,
    rgb(129, 230, 217) 100%);
    text-transform: uppercase;
    text-align: center;
    padding: 16px 32px;
    border-radius: 500px;
    border: none;
    font-size: 14px;
    width: 100%;
    max-width: 192px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.5;
    transition: all 300ms;
}

.plan__button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* TESTIMONIALS */

.testimonials__img {
    width: 50%;
}

.testimonials__description {
    display: flex;
    flex-direction: column;
    padding-left: 64px;
    width: 50%;
}

.testimonial__rating {
    padding-top: 32px;
    padding-bottom: 20px;
}

.testimonial__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testimonial__para {
    margin: 16px 0px 40px 0;
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
}

.testimonial__title {
    font-weight: 700;
    color: #243e63;
    font-size: 20px;
    line-height: 1.5;
}

.testimonial__name {
    font-weight: 700;
    color: #243e63;
    font-size: 20px;
    line-height: 1.5;
}

.testimonial__role {
    color: #7c8ba1;
    font-weight: 500;
    line-height: 1.5;
}

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

.testimonial__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #edf2f7;
    border-radius: 50%;
    border: none;
    margin: 0 12px;
    transition: all 0.4s ease-in-out;
}

.testimonial__button:hover {
    background: #a4b8d9;
}

.fa-arrow-left-long {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

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

.divider {
    width: 1px;
    height: 24px;
    background: rgb(229, 231, 235);
}

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

/* START */

#start .row {
    position: relative;
    overflow: hidden;
}

.start__container {
    padding: 96px 0;
    width: 100%;
    background-color: rgb(100, 21, 255);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start__row {
    width: 100%;
    margin: 0 auto;
    max-width: 1024px;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start__title {
    color: #f7fafc;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    z-index: 2;
}

.start__buttons {
    display: flex;
    justify-content: flex-end;
    padding: 0 40px;
    width: 800px;
}

.start__button {
    padding: 20px 40px;
    border-radius: 500px;
    font-weight: 700;
    font-size: 16px;
    color: #f7fafc;
    line-height: 1.5;
    letter-spacing: 0.025em;
    margin: 1px;
    z-index: 2;
    transition: all 0.3s ease;
}

.start__button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.start__button:nth-child(1) {
    background: #f56565;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    margin-right: 32px;
    transition: all 300ms;
}

.start__button:nth-child(2) {
    border: 1px solid rgb(160, 174, 192);
    transition: all 300ms;
}

/* FOOTER */

footer {
    padding: 96px 32px;
    background-color: rgb(100, 21, 255);
    margin-bottom: -32px;
    position: relative;
    overflow: hidden;
}

.footer__row {
    display: flex;
    flex-direction: column;
}

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

.footer__column {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.footer__column--title {
    font-weight: 700;
    color: #f7fafc;
    line-height: 1.5;
}

.footer__column--link {
    color: #f7fafc;
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.footer__column--link:nth-child(2) {
    margin-top: 24px;
}

.footer__divider {
    width: 100%;
    height: 2px;
    margin: 64px 0;
    background: rgb(116, 44, 255);
}

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

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

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

.footer__logo--text {
    font-size: 20px;
    color: #f7fafc;
    font-weight: 900;
    margin-left: 8px;
    letter-spacing: 0.05em;
}

.footer__copyright {
    color: #cbd5e0;
    font-weight: 500;
}

.footer__socials {
    display: flex;
    align-items: center;
    margin-left: -16px;
}

.footer__social--link {
    margin-left: 16px;
    padding: 8px;
    background: #f7fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    transition: all 300ms;
    width: 32px;
}

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

    .header__email--input {
        text-align: center;
    }

    .plan__price {
        padding-right: 24px;
    }

    .header__description {
        padding: 0 120px;
    }

    .header__description--para {
        margin-top: 0;
    }

    h1 {
        font-size: 32px;
    }

    .section__title {
        font-size: 36px;
    }

    .testimonial__rating,
    .testimonial__title,
    .testimonial__para,
    .section__para,
    .section__tag,
    .section__title,
    .header__description,
    .start__title {
        text-align: center;
    }

    .testimonials__description {
        padding: 0;
    }

    .header__img {
        max-width: 300px;
    }

    .steps__img {
        max-width: 100%;
        padding-bottom: 32px;
        padding-left: 20px;
    }

    .quality__img--wrapper {
        width: 100%;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .step__description {
        margin: 0;
    }

    .values__img {
        padding-top: 32px;
    }

    #steps .row {
        display: flex;
        flex-direction: column;
    }

    #values .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #quality .row {
        display: flex;
        flex-direction: column;
    }

    .start__row {
        display: flex;
        flex-direction: column;
    }

    .start__buttons {
        display: flex;
        justify-content: center;
        padding-top: 24px;
    }

    .values__description,
    .quality__description {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quality__description {
        width: 100%;
    }

    .testimonials__description {
        width: 100%;
    }

    .testimonial__profile {
        display: flex;
        flex-direction: column;
    }

    .value {
        margin: 0;
        margin-top: 16px;
        max-width: 300px;
    }

    .value__btn,
    .quality__btn {
        margin-top: 24px;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

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

    #testimonials .row {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .values__list {
        display: flex;
        flex-direction: column;
        max-width: 300px;
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }

    .value__title {
        display: flex;
        justify-content: center;
    }

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

    .feature {
        width: 100%;
        max-width: 300px;
    }

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

    .feature__text {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }

    .feature__para {
        max-width: 100%;
    }

    .nav__links {
        display: none;
    }

    .btn__menu {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        color: #6415ff;
        cursor: pointer;
    }

    .menu__links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        margin-top: 64px;
    }

    .menu__link {
        font-size: 20px;
        font-weight: bold;
        color: #243e63;
        display: block;
        display: flex;
        justify-content: center;
    }

    .btn__menu--close {
        align-self: flex-end;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}

@media (max-width: 480px) {

    .header__description {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 28px;
    }

    .header__email {
        display: flex;
        flex-direction: column;
    }

    .second__email--btn {
        visibility: visible;
    }

    .header__email--input {
        padding: 16px 0;
        padding-left: 0;
        line-height: 1.5;
    }

    .header__email--btn {
        visibility: hidden;
    }
    
    .testimonial__bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .testimonial__buttons {
        display: flex;
        justify-content: center;
    }

    .testimonials__img {
        width: 100%;
    }

    .footer__column {
        gap: 24px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__copyright {
        font-size: 14px;
        text-align: center;
    }

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

    #pricing .section__title {
        display: flex;
        flex-direction: column;
    }

    .start__container {
        height: 380px;
    }

    .start__buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 300px;
        gap: 12px;
    }

    .start__button:nth-child(1) {
        margin: 0;
    }

    .footer__columns {
        display: flex;
        justify-content: center;
        gap: 32px;
    }
}