/* =========================================================
   MYFOLLOWERS SIMPLE LANDING
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #15171a;
    background: #ffffff;

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


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

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eceef1;

    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 76px;

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-weight: 800;
}

.logo-mark {
    width: 38px;
    height: 38px;

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

    color: #ffffff;
    background: #6257ff;

    border-radius: 11px;

    font-size: 18px;
    font-weight: 800;
}

.logo-text {
    color: #17191c;

    font-size: 20px;
    letter-spacing: -0.5px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 31px;
}

.navigation > a {
    color: #63666d;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.navigation > a:hover {
    color: #17191c;
}

.navigation .nav-button {
    padding: 11px 18px;

    color: #ffffff;
    background: #17191c;

    border-radius: 10px;
}

.navigation .nav-button:hover {
    color: #ffffff;
    background: #6257ff;
}

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;

    display: block;

    margin: 5px auto;

    background: #17191c;

    border-radius: 2px;

    transition: 0.2s ease;
}


/* =========================================================
   COMMON
   ========================================================= */

.eyebrow {
    display: inline-flex;

    margin-bottom: 19px;

    color: #6257ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #c8c3ff;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 23px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: #6257ff;
}

.button-primary:hover {
    background: #5046ec;
}

.button-secondary {
    color: #202226;

    border: 1px solid #dadde2;
    background: #ffffff;
}

.button-secondary:hover {
    border-color: #bfc3ca;
}

.button-white {
    flex-shrink: 0;

    color: #17191c;
    background: #ffffff;
}

.button-white:hover {
    background: #f4f3ff;
}


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

.hero {
    position: relative;

    overflow: hidden;

    padding: 102px 0 112px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(98, 87, 255, 0.11),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfbfd 100%
        );
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 90px;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    margin-bottom: 25px;

    color: #141518;

    font-size: clamp(46px, 5.4vw, 72px);
    line-height: 0.99;
    letter-spacing: -3.8px;
}

.hero h1 span {
    display: block;
    color: #6257ff;
}

.hero-description {
    max-width: 590px;

    margin-bottom: 32px;

    color: #65686f;

    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 33px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #565960;

    font-size: 13px;
    font-weight: 600;
}

.check {
    color: #6257ff;
    font-weight: 800;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

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

.hero-card {
    position: relative;

    width: min(100%, 480px);

    padding: 31px;

    background: #ffffff;

    border: 1px solid #e8e9ed;
    border-radius: 22px;

    box-shadow:
        0 40px 80px rgba(27, 29, 35, 0.09);
}

.hero-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.small-label {
    display: block;

    margin-bottom: 8px;

    color: #898c93;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-card h3 {
    margin-bottom: 0;

    color: #17191c;

    font-size: 25px;
    letter-spacing: -0.7px;
}

.status-dot {
    width: 11px;
    height: 11px;

    margin-top: 7px;

    background: #32c471;

    border-radius: 100%;

    box-shadow:
        0 0 0 6px rgba(50, 196, 113, 0.12);
}

.growth-chart {
    height: 190px;

    margin: 34px 0;

    padding: 20px 19px 0;

    display: flex;
    align-items: flex-end;

    border: 1px solid #eeeeF2;
    border-radius: 15px;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 44px,
            #f1f2f5 45px
        );
}

.chart-line {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.chart-line span {
    flex: 1;

    min-width: 10px;

    background: linear-gradient(
        180deg,
        #8c83ff,
        #6257ff
    );

    border-radius: 6px 6px 2px 2px;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-stat {
    padding: 15px;

    background: #f7f7fa;

    border-radius: 12px;
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    margin-bottom: 5px;

    color: #1a1c1f;

    font-size: 16px;
}

.hero-stat span {
    color: #85888f;

    font-size: 11px;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 15px;

    background: #ffffff;

    border: 1px solid #e7e8ec;
    border-radius: 13px;

    box-shadow:
        0 18px 45px rgba(27, 29, 35, 0.1);
}

.floating-card strong,
.floating-card > div > span {
    display: block;
}

.floating-card strong {
    margin-bottom: 3px;

    font-size: 12px;
}

.floating-card > div > span {
    color: #8c8f95;

    font-size: 10px;
}

.floating-card-one {
    top: 62px;
    right: -15px;
}

.floating-card-two {
    bottom: -18px;
    left: 18px;
}

.floating-icon {
    width: 34px;
    height: 34px;

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

    color: #ffffff;
    background: #6257ff;

    border-radius: 9px;

    font-weight: 800;
}

.audience-icon {
    position: relative;

    width: 56px;
    height: 42px;

    flex: 0 0 56px;
}

.audience-head,
.audience-body {
    position: absolute;
    display: block;
}

.audience-head {
    top: 2px;

    width: 15px;
    height: 15px;

    background: #6257ff;
    border-radius: 50%;
}

.audience-head-main {
    left: 20px;

    width: 17px;
    height: 17px;

    z-index: 3;
}

.audience-head-left {
    left: 4px;

    opacity: 0.55;
}

.audience-head-right {
    right: 4px;

    opacity: 0.55;
}

.audience-body {
    bottom: 2px;

    height: 20px;

    background: #6257ff;

    border-radius: 14px 14px 7px 7px;
}

.audience-body-main {
    left: 14px;

    width: 29px;

    z-index: 3;
}

.audience-body-left {
    left: 0;

    width: 24px;

    opacity: 0.3;
}

.audience-body-right {
    right: 0;

    width: 24px;

    opacity: 0.3;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-soft {
    background: #f7f7fa;
}

.section-heading {
    max-width: 670px;

    margin-bottom: 52px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-heading h2,
.about-content h2 {
    margin-bottom: 20px;

    color: #17191c;

    font-size: clamp(37px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.section-heading h2 span,
.about-content h2 span {
    color: #6257ff;
}

.section-heading p,
.about-content > p {
    color: #6d7077;

    font-size: 16px;
    line-height: 1.75;
}


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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 30px;

    border: 1px solid #e7e8ec;
    border-radius: 16px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #d7d4ff;

    box-shadow:
        0 25px 50px rgba(28, 30, 36, 0.08);
}

.service-icon {
    width: 44px;
    height: 44px;

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

    margin-bottom: 55px;

    color: #6257ff;
    background: #f0efff;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 14px;

    color: #1b1d20;

    font-size: 21px;
    letter-spacing: -0.6px;
}

.service-card p {
    min-height: 92px;

    margin-bottom: 25px;

    color: #73767d;

    font-size: 14px;
    line-height: 1.7;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 19px;

    color: #292b2f;

    border-top: 1px solid #eeeeF1;

    font-size: 13px;
    font-weight: 700;
}

.service-link span {
    color: #6257ff;

    font-size: 17px;
}


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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.84fr;
    align-items: center;
    gap: 90px;
}

.about-content > p {
    max-width: 620px;

    margin-bottom: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;

    margin-top: 31px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #4e5157;

    font-size: 13px;
    font-weight: 600;
}

.about-points span {
    color: #6257ff;
}

.about-card {
    padding: 42px;

    color: #ffffff;
    background: #191a1e;

    border-radius: 20px;
}

.about-card-label {
    color: #94969d;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-number {
    margin: 47px 0 19px;

    color: #8178ff;

    font-size: 55px;
    font-weight: 800;
    letter-spacing: -3px;
}

.about-card h3 {
    margin-bottom: 16px;

    font-size: 29px;
    letter-spacing: -1px;
}

.about-card > p {
    color: #a9abb1;

    font-size: 14px;
    line-height: 1.75;
}

.about-divider {
    height: 1px;

    margin: 30px 0;

    background: #32343a;
}

.about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-mini-stats strong,
.about-mini-stats span {
    display: block;
}

.about-mini-stats strong {
    margin-bottom: 5px;

    font-size: 15px;
}

.about-mini-stats span {
    color: #8d9096;

    font-size: 11px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;

    margin-top: 65px;
}

.process-item {
    position: relative;

    padding-top: 24px;

    border-top: 1px solid #dfe1e5;
}

.process-number {
    display: inline-block;

    margin-bottom: 42px;

    color: #6257ff;

    font-size: 12px;
    font-weight: 800;
}

.process-item h3 {
    margin-bottom: 13px;

    font-size: 20px;
    letter-spacing: -0.5px;
}

.process-item p {
    margin-bottom: 0;

    color: #72757b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 30px 0 100px;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    padding: 66px 70px;

    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(126, 116, 255, 0.5),
            transparent 36%
        ),
        #6257ff;

    border-radius: 23px;
}

.contact-content {
    max-width: 660px;
}

.contact-content h2 {
    margin-bottom: 17px;

    font-size: clamp(35px, 4vw, 51px);
    line-height: 1.07;
    letter-spacing: -2px;
}

.contact-content p {
    max-width: 560px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
    line-height: 1.7;
}


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

.footer {
    padding: 24px 0 32px;
}

.footer-top {
    min-height: 110px;

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

    border-bottom: 1px solid #e8e9ec;
}

.footer-top p {
    max-width: 390px;

    margin-bottom: 0;

    color: #82858b;

    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding-top: 27px;

    color: #96999f;

    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: #6257ff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .hero-inner {
        gap: 45px;
    }

    .about-grid {
        gap: 50px;
    }

    .floating-card-one {
        right: 0;
    }

    .floating-card-two {
        left: 0;
    }

}


@media (max-width: 900px) {

    .mobile-menu-button {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 77px;
        right: 0;
        left: 0;

        min-height: calc(100vh - 77px);

        padding: 40px 24px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        background: #ffffff;

        border-top: 1px solid #eceef1;
    }

    .navigation.active {
        display: flex;
    }

    .navigation > a {
        padding: 16px 10px;

        font-size: 17px;
    }

    .navigation .nav-button {
        margin-top: 15px;

        text-align: center;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-inner,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        max-width: 600px;
        width: 100%;

        margin: 0 auto;
    }

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

    .service-card:last-child {
        grid-column: span 2;
    }

    .about-content {
        max-width: 700px;
    }

    .about-card {
        max-width: 650px;
    }

    .contact-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 55px;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .hero {
        padding: 65px 0 85px;
    }

    .hero h1 {
        letter-spacing: -2.3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .hero-visual {
        min-height: auto;

        padding: 20px 0 45px;
    }

    .hero-card {
        padding: 22px;
    }

    .floating-card {
        display: none;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .about-content h2 {
        letter-spacing: -1.5px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-icon {
        margin-bottom: 34px;
    }

    .service-card p {
        min-height: auto;
    }

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

    .about-card {
        padding: 31px 25px;
    }

    .process-grid {
        gap: 33px;
    }

    .process-number {
        margin-bottom: 24px;
    }

    .contact-section {
        padding-bottom: 70px;
    }

    .contact-box {
        padding: 42px 26px;

        border-radius: 17px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top {
        padding: 25px 0 33px;
    }

    .footer-top p {
        text-align: left;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero-card h3 {
        font-size: 21px;
    }

    .growth-chart {
        height: 160px;

        padding-right: 12px;
        padding-left: 12px;
    }

}