* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #374af5;
    --secondary-color: #a02dfe;
    --orange-color: #F25922;
    --yellow-color: #F2911B;
    --text-color: #232444;
}

body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 2.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
}

.theme-btn {
    color: #000000;
    font-size: 18px;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    background-color: #ffffff;
    background-image: -webkit-linear-gradient(top, rgb(108 108 108 / 50%), #e6e6e6 25%, #f8f8f8 48%, rgb(163 163 163 / 25%) 63%, #d3d3d3 87%, rgba(38, 38, 38, 0.35));
    box-shadow: inset 0px 1px 0px rgb(248 248 248), 0px 1px 3px rgb(0 0 0 / 25%);
    border: 1px solid #a6a6a6;
    border-radius: 30px;
    padding: 6px 7px 6px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    max-width: max-content;
    gap: 16px;
}

.theme-btn img {
    max-height: 40px;
}

.autoAlpha {
    visibility: hidden;
}

section {
    overflow-x: clip;
}

.desktop-only {
    display: none;
}

/* =================================================
                    Header Style
==================================================== */

header {
    padding: 14px 0;
    background-color: #ffffff00;
    backdrop-filter: blur(30px);
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    height: 44px;
}

.logo span {
    color: var(--text-color);
    font-size: 1.35rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    display: inline-block;
}

.menu-toggle {
    color: var(--text-color);
    height: 44px;
    width: 44px;
    background: none;
    line-height: 0;
    padding: 14px 12.54px;
    border: 1px solid #dadada;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullpage-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, #0d0a22, #1a172f);
    clip-path: inset(0% 0% 100% 0%);
    z-index: 9999;
}

.fullpage-menu::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bg-shape.svg") no-repeat;
    background-size: cover;
    opacity: 0.75;
    z-index: -1;
}

.fullpage-menu nav {
    padding: 100px 34px 34px;
}

.fullpage-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fullpage-menu ul li a {
    color: #f1f1f1;
    font-family: 'Clash Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.75px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.fullpage-menu ul li a:hover {
    transform: translateX(10px);
    transition: all 0.3s;
}

.fullpage-menu .close-menu {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: 1px solid #484357;
    color: #eeeeee;
    height: 44px;
    width: 44px;
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

/* =================================================
                    Hero Style
==================================================== */

.hero {
    padding: 140px 0 60px;
    position: relative;
    min-height: 100vh;
    background: #fafbff;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 0;
    overflow: hidden;
}

.hero canvas {
    z-index: -2 !important;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, #e4e9f2 40%, rgba(227, 233, 255, 0.7));
    z-index: -1;
}

.hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, transparent 60%, #ffffff);
    z-index: -1;
}

.hero h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    text-wrap: balance;
    margin-bottom: 1.25rem;
}


h1 .highlight {
    background: linear-gradient(0deg, #ba60ff, #5b6bfe, #009bd5);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100%;
    color: transparent;
    font-weight: inherit;
}

h1 .highlight .word {
    margin-left: 5px;
}

h1 .highlight span {
    display: inline-block;
    background: inherit;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: inherit;
    color: transparent;
}

.hero p {
    color: #444444;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 2rem;
}

.hero-elements {
    width: 260px;
    margin: 60px auto 0;
    z-index: 1;
    visibility: hidden;
}

.hero-elements .hero-img {
    max-width: 100%;
}

/* Knob Card */
.knob-card {
    background: linear-gradient(0deg, #a438ff, #5048fc, #02aefd);
    position: absolute;
    height: auto;
    width: 310px;
    left: 50%;
    top: 13%;
    transform: translateX(-50%);
    padding: 30px 30px 44px;
    border-radius: 24px;
}

.knob-card::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(45deg, #191a1f, #08090c);
    border-radius: 21px;
}

.knob-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 20px auto 4px;
    border-radius: 50%;
}

.knob {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-sizing: border-box;
    background: conic-gradient(#a4a4a4, #cecece, #ababab 115deg, #d0d0d0, #b1b1b1, #d5d5d5, #ababab 280deg, #d5d5d5, #a4a4a4) content-box, linear-gradient(90deg, #b3b3b3, #777777) padding-box, conic-gradient(#c7c7c7, #b3b3b3, #959595, #b0b0b0, #aeaeae, #dcdcdc, #e2e2e2, #f9f9f9, #dddddd) border-box;
    border: 5px solid #eeeeee;
    box-shadow: 4px 4px 20px 0px #151515;
    transform: scale(0.95);
    overflow: hidden;
}

.indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.indicator::after {
    position: absolute;
    content: "";
    height: 4px;
    width: 14px;
    background: #ffffff;
    border-radius: 5px;
    top: 50%;
    Left: 14px;
    transform: translate(12px, 25px) rotate(310deg);
    transform-origin: center;
    z-index: -1;
}

.lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-0.5px, -10px)
}

.line {
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: #404145;
    transform-origin: 50% 100%;
}

.line:nth-child(5n + 1) {
    width: 2px;
    opacity: 0.9;
    border-radius: 2px;
}

.knob-card .label {
    font-size: 1rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    color: #a0a6c6;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 14px;
    left: 20px;
}

.counter {
    font-size: 1.25rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    color: #a0a6c6;
    text-align: center;
    position: absolute;
    bottom: 14px;
    right: 20px;
}

/* =================================================
                    Features Style
==================================================== */

.features {
    padding: 70px 0 80px;
}

.features h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 30px;
    text-wrap: balance;
}

.feature-card {
    padding: 30px 24px;
    background: linear-gradient(0deg, #a438ff, #615af7 50%, #0072ec);
    border-radius: 24px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card .icon {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    color: #0078e0;
    background: #ffffff;
    padding: 14px;
    margin-bottom: 1.4rem;
    overflow: hidden;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    display: inline-block;
}

.feature-card h3 span {
    background: inherit;
    color: inherit;
}

.feature-card p {
    color: #fafafa;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

/* =================================================
                Any-device Style
==================================================== */
.any-device {
    padding: 70px 0 80px;
    background: #ebefff;
}

.any-device h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.any-device p {
    color: #444444;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.any-device-visual {
    height: auto;
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.device-visual {
    height: auto;
    width: 85%;
    aspect-ratio: 1/1;
    background: linear-gradient(45deg, #a438ff, #615af7 50%, #0072ec);
    position: relative;
    border-radius: 50%;
    margin: auto;
}

.device-visual::before {
    position: absolute;
    content: "";
    top: 20%;
    left: 20%;
    bottom: 20%;
    right: 20%;
    background: #ebefff;
    border-radius: 50%;
}

.device-visual .device {
    position: absolute;
    height: auto;
    width: 30%;
    max-width: 120px;
    padding: 4px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #ebefff;
    border: 4px solid #ffffff;
    overflow: hidden;
}

.device-visual .device img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.device-visual .device:nth-child(1) {
    top: 0;
    left: 0;
}

.device-visual .device:nth-child(2) {
    top: 0;
    right: 0;
}

.device-visual .device:nth-child(3) {
    bottom: 0;
    right: 0;
}

.device-visual .device:nth-child(4) {
    bottom: 0;
    left: 0;
}

.vbooster {
    height: auto;
    width: 22%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =================================================
                Easy to Use Style
==================================================== */
.easy-to-use {
    padding: 70px 0 80px;
}

.easy-to-use h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.easy-to-use p {
    color: #444444;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 0;
}

.easy-to-use .theme-btn {
    margin-top: 1.5rem;
}

.easy-to-use .easy-interface {
    margin-top: 50px;
    background: linear-gradient(0deg, #a438ff, #615af7 50%, #0072ec);
    border-radius: 40px;
    height: auto;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1.08;
    padding: 13% 13% 0px;
    overflow: hidden;
    perspective: 200px;
    transform-style: preserve-3d;
}

/* =================================================
                Perfect For Style
==================================================== */
.perfect-for {
    padding: 80px 0;
    background: #ebefff;
}

.perfect-for .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 2rem;
}

.perfect-for .nav .nav-link {
    background: #ffffff;
    display: block;
    width: 100%;
    text-align: left;
    padding: 24px;
    border-radius: 14px;
    transition: all 1s;
    position: relative;
    overflow: hidden;
}

.perfect-for .nav .nav-link::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    height: 40px;
    width: 40px;
    transform: translateY(-50%);
    background: url("../img/long-arrow.svg") no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.3s;
}

.perfect-for .nav .nav-link.active::after {
    transform: translate(150%, -200%);
    transition: all 0.3s;
}

.perfect-for .nav .nav-link.active {
    color: #ffffff;
    background: linear-gradient(0deg, #a438ff, #615af7 50%, #0072ec);
    transition: all 1s;
}

.perfect-for h4 {
    background: linear-gradient(0deg, #ad4cff, #7e77ff 50%, #0b7af0);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100%;
    color: transparent;
    font-size: 1rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.perfect-for .active h4 {
    color: #ffffff;
}

.perfect-for h3 {
    color: #232444;
    font-size: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.perfect-for .active h3 {
    color: #ffffff;
}

.perfect-for hr {
    border-top: 1px solid rgba(235, 239, 255, 0.5);
    margin: 0.75rem 0;
    opacity: 0;
    display: none;
}

.perfect-for .active hr {
    display: block;
    opacity: 1;
}

.perfect-for p {
    font-size: 17px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.5s;
    text-wrap: pretty;
    margin: 0;
    display: none;
}

.perfect-for .nav-link.active p {
    color: #ffffff;
    opacity: 1;
    display: block;
    transition: opacity 0.5s;
}

.perfect-for .tab-content,
.perfect-for .tab-pane,
.perfect-for .image {
    height: 100%;
    width: 100%;
}

.perfect-for .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
}

/* =================================================
                    CTA Style
==================================================== */
.cta {
    padding: 70px 0;
    background: #ebefff;
    position: relative;
    z-index: 0;
}

.cta::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #0d0e2a, #131430);
    z-index: -1;
}

.cta-card {
    background: linear-gradient(0deg, #a438ff, #615af7 50%, #0072ec);
    padding: 40px 30px;
    border-radius: 24px;
    overflow-x: clip;
}

.cta h3 {
    display: inline-block;
    color: #f5f5f5;
    background: rgba(12, 14, 54, 0.3);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 20px 12px;
    border-radius: 30px;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.cta h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    text-wrap: balance;
    margin-bottom: 1rem;
    overflow: clip;
}

.cta p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta .theme-btn {
    background-image: -webkit-linear-gradient(top, rgb(178 178 178 / 50%), #f2f2f2 25%, #ffffff 48%, rgb(192 192 192 / 25%) 63%, #d9d9d9 87%, rgb(89 89 89 / 35%));
    box-shadow: inset 0px 1px 0px rgb(248 248 248), 2px 2px 8px rgb(0 0 0 / 25%);
}

.cta-img {
    display: none;
}

/* =================================================
                    Footer Style
==================================================== */
footer {
    background: #0d0e2a;
    border-top: 1px solid #2a2b44;
}

footer img {
    max-height: 54px;
}

footer .nav-link {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    color: #9f9f9f;
    transition: all 0.3s;
}

footer .nav-link:hover {
    color: #885aff;
    transition: all 0.3s;
}

footer p {
    color: #9f9f9f;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

/* =================================================
                    Responsive Style
=================================================== */
@media screen and (min-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-card p {
        font-size: 17px;
    }
}

@media screen and (min-width: 412px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 18px;
    }

    .features h2 {
        font-size: 1.8rem;
        text-wrap: balance;
    }

    .feature-card .icon {
        height: 60px;
        width: 60px;
        padding: 15px;
    }

    .feature-card h3 {
        font-size: 1.75rem;
    }

    .any-device h2,
    .easy-to-use h2 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 430px) {
    header {
        padding: 16px 0;
    }

    .logo img {
        height: 48px;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .menu-toggle {
        height: 48px;
        width: 48px;
    }

    .fullpage-menu ul li a {
        font-size: 2.2rem;
    }

    .hero {
        padding: 160px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2,
    .cta h2 {
        font-size: 2rem;
    }

    .features,
    .any-device,
    .easy-to-use {
        padding: 80px 0 90px;
    }

    .perfect-for {
        padding: 90px 0;
    }

    .perfect-for h3 {
        font-size: 1.6rem;
    }

    .cta {
        padding: 80px 0;
    }
}

@media screen and (min-width: 480px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 4rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        text-wrap: pretty;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2,
    .cta h2 {
        font-size: 2.2rem;
    }

    .cta h3 {
        font-size: 16px;
    }

    .cta p {
        font-size: 18px;
    }
}

@media screen and (min-width: 575.98px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 1.5rem;
    }

    .menu-toggle {
        padding: 14px;
    }

    .hero {
        text-align: center;
        padding: 170px 0 60px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    h1 .highlight .word {
        margin-left: 8px;
    }

    .features,
    .any-device,
    .easy-to-use {
        padding: 90px 0 100px;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2 {
        font-size: 2.4rem;
    }

    .features h2 {
        margin-bottom: 2.75rem;
    }

    .feature-card {
        max-width: 460px;
        margin: auto;
    }

    .any-device-visual {
        margin-top: 80px;
    }

    .perfect-for {
        padding: 100px 0;
    }

    .easy-to-use .easy-interface {
        margin-top: 60px;
    }

    .cta {
        padding: 90px 0;
    }

    .cta h2 {
        font-size: 2.25rem;
    }

    .cta-card {
        padding: 48px 40px;
        border-radius: 24px;
    }
}

@media screen and (min-width: 767.98px) {

    .hero {
        padding: 180px 0 80px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        text-wrap: balance;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2 {
        font-size: 2.6rem;
    }

    .any-device p,
    .easy-to-use p {
        font-size: 18px;
    }

    .cta h2 {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 991.98px) {
    .desktop-only {
        display: flex;
    }

    .hero {
        padding: 80px 0;
        text-align: left;
        min-height: auto;
    }

    .features h2 {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card {
        height: 100%;
    }

    .easy-to-use .easy-interface {
        max-width: 400px;
        aspect-ratio: 1 / 1.06;
    }

    .perfect-for .nav {
        margin-top: 0;
    }

    .cta-card {
        padding: 70px 70px;
        border-radius: 30px;
    }
}

@media screen and (min-width: 1199.98px) {
    .theme-btn {
        font-size: 18px;
        padding: 7px 8px 7px 26px;
    }

    .theme-btn img {
        max-height: 44px;
    }

    header {
        padding: 22px 0;
    }

    .logo {
        gap: 18px;
    }

    .logo img {
        height: 54px;
    }

    .logo span {
        font-size: 1.6rem;
    }

    .menu-toggle {
        height: 50px;
        width: 50px;
        padding: 15px;
    }

    .fullpage-menu::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 60%;
        background: #0b081d;
        box-shadow: 50px 0 0 #19162c;
        transform: skewX(10deg) translateX(-14%);
    }

    .fullpage-menu nav {
        padding: 100px;
    }

    .fullpage-menu ul li a {
        font-size: 2.8rem;
        position: relative;
        transition: all 0.4s;
    }

    .fullpage-menu ul li a:hover {
        transform: translateX(24px);
        transition: all 0.4s;
    }

    .fullpage-menu ul li a::before {
        position: absolute;
        content: '';
        top: 50%;
        left: -20px;
        height: 14px;
        width: 14px;
        border-radius: 50%;
        background: linear-gradient(45deg, #a438ff, #615af7);
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all 0.4s;
    }

    .fullpage-menu ul li a:hover:before {
        opacity: 1;
        transition: all 0.4s;
    }

    .fullpage-menu .close-menu {
        top: 30px;
        right: 34px;
        height: 50px;
        width: 50px;
    }

    .hero {
        padding: 100px 0 70px;
    }

    .hero::before {
        background: linear-gradient(180deg, #e4e9f2 60%, rgba(227, 233, 255, 0.7));
    }

    .hero::after {
        background: linear-gradient(0deg, transparent 20%, #ffffff);
    }

    .hero,
    .hero canvas {
        border-bottom-left-radius: 70px;
        border-bottom-right-radius: 70px;
    }

    .hero .text {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    h1 .highlight .word {
        margin-left: 10px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-elements {
        width: 280px;
        margin: 50px auto 0;
    }

    .knob-card {
        width: 340px;
        top: 13%;
        padding: 34px 40px 54px;
    }

    .hero .label {
        font-size: 1.25rem;
    }

    .hero .counter {
        font-size: 1.5rem;
    }

    .features,
    .any-device,
    .easy-to-use {
        padding: 110px 0 120px;
    }

    .features h2 {
        margin-bottom: 3.5rem;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2 {
        font-size: 3.2rem;
        line-height: 1.1;
        text-wrap: balance;
    }

    .feature-card {
        padding: 34px 30px;
    }

    .feature-card p {
        font-size: 18px;
        font-weight: 600;
    }

    .any-device-visual {
        margin: 0;
    }

    .any-device p,
    .easy-to-use p {
        font-size: 20px;
        text-wrap: pretty;
    }

    .any-device h2,
    .easy-to-use h2 {
        margin-bottom: 1.5rem;
    }

    .any-device p {
        margin-bottom: 2.2rem;
    }

    .easy-to-use .theme-btn {
        margin-top: 2.2rem;
    }

    .easy-to-use .easy-interface {
        margin-top: 0px;
        max-width: 470px;
        aspect-ratio: 1 / 1.05;
    }

    .perfect-for {
        padding: 120px 0 0;
    }

    .perfect-for .nav .nav-link {
        padding: 30px;
    }

    .perfect-for h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .perfect-for h3 {
        font-size: 1.6rem;
    }

    .perfect-for p {
        font-size: 18px;
        font-weight: 600;
    }

    .perfect-for .nav .nav-link::after {
        right: 24px;
        height: 42px;
        width: 42px;
    }

    .cta {
        padding-top: 120px;
        overflow: hidden;
    }

    .cta::before {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        height: 60%;
        width: 100%;
        background: linear-gradient(0deg, #0d0e2a, #131430);
        z-index: -1;
        transform: skewY(4deg) translateY(20%);
    }

    .cta-card {
        position: relative;
        border-radius: 44px;
    }

    .cta-card .text {
        width: 60%;
    }

    .cta-card .cta-img {
        position: absolute;
        display: block;
        bottom: 0;
        right: 5%;
        width: 35%;
    }

    .cta h3 {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 3rem;
    }

    .cta p {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1399.98px) {
    .theme-btn {
        font-size: 20px;
        padding: 8px 9px 8px 26px;
    }

    .theme-btn img {
        max-height: 44px;
    }

    .fullpage-menu nav {
        padding: 140px 100px 140px;
    }

    .fullpage-menu .close-menu {
        top: 30px;
        right: 34px;
        height: 54px;
        width: 54px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 22px;
    }

    .hero-elements {
        width: 300px;
        margin: 50px auto 0;
    }

    .knob-card {
        width: 360px;
        top: 14%;
        /* top: 22%; */
        padding: 40px 40px 60px;
    }

    .hero .label {
        font-size: 1.3rem;
    }

    .hero .counter {
        font-size: 1.6rem;
    }

    .features h2 {
        margin-bottom: 3.5rem;
    }

    .features h2,
    .any-device h2,
    .easy-to-use h2 {
        font-size: 3.4rem;
        line-height: 1.1;
        text-wrap: balance;
    }

    .feature-card {
        padding: 34px 30px;
    }

    .feature-card p {
        font-size: 18px;
        font-weight: 600;
    }

    .any-device-visual {
        margin: 0;
    }

    .any-device p,
    .easy-to-use p {
        font-size: 22px;
        text-wrap: pretty;
    }

    .any-device h2,
    .easy-to-use h2 {
        margin-bottom: 1.5rem;
    }

    .any-device p {
        margin-bottom: 2.2rem;
    }

    .easy-to-use .theme-btn {
        margin-top: 2.2rem;
    }

    .easy-to-use .easy-interface {
        margin-top: 0px;
        max-width: 540px;
        aspect-ratio: 1 / 1.05;
    }

    .perfect-for .nav .nav-link {
        padding: 30px;
    }

    .perfect-for h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .perfect-for h3 {
        font-size: 2rem;
    }

    .perfect-for p {
        font-size: 20px;
        font-weight: 600;
    }

    .perfect-for .nav .nav-link::after {
        right: 24px;
        height: 44px;
        width: 44px;
    }

    .cta::before {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        height: 60%;
        width: 100%;
        background: linear-gradient(0deg, #0d0e2a, #131430);
        z-index: -1;
        transform: skewY(4deg) translateY(20%);
    }

    .cta-card .cta-img {
        right: 5%;
        width: 32%;
    }

    .cta h3 {
        font-size: 20px;
    }

    .cta h2 {
        font-size: 3.2rem;
    }

    .cta p {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 2rem;
    }
}