* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #09090f;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: .04;
    pointer-events: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 16, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.brand {
    font-size: 30px;
    font-weight: 800;
}

.brand span {
    color: #ff4ecd;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

nav a:hover {
    color: #ff4ecd;
}

.download-btn,
.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.download-btn,
.primary-btn {
    background: linear-gradient(135deg, #ff4ecd, #7b61ff);
    color: #fff;
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.primary-btn:hover,
.download-btn:hover,
.secondary-btn:hover {
    transform: translateY(-4px);
}

.hero {
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 70px;
    align-items: center;
}

.mini-badge {
    display: inline-block;
    background: rgba(255, 78, 205, .12);
    color: #ff7bde;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.left-side h1 {
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.left-side p {
    color: #c4c4cf;
    margin-bottom: 30px;
    font-size: 18px;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-users {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #09090f;
    margin-left: -10px;
    background: linear-gradient(135deg, #ff4ecd, #7b61ff);
}

.phone-frame {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 20px;
    border-radius: 40px;
    position: relative;
}

.phone-frame img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.floating-card {
    position: absolute;
    background: #13131d;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.top-card {
    top: 0;
    left: -50px;
}

.bottom-card {
    bottom: 0;
    right: -50px;
}

.services,
.guide,
.platforms,
.steps,
.newsletter {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header span,
.guide-content span {
    color: #ff7bde;
    font-weight: 600;
}

.section-header h2,
.guide-content h2 {
    font-size: 48px;
    margin-top: 10px;
}

.service-grid,
.step-grid,
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box,
.step-box,
.platform-card,
.info-card {
    background: #11111a;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    padding: 35px;
    transition: .4s;
}

.service-box:hover,
.step-box:hover,
.platform-card:hover,
.info-card:hover {
    transform: translateY(-8px);
    border-color: #ff4ecd;
}

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-box p,
.step-box p,
.platform-card p,
.info-card p,
.guide-content p,
.guide-content li {
    color: #bdbdcc;
}

.guide-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 70px;
    align-items: center;
}

.guide-image img {
    width: 100%;
    border-radius: 35px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.sub-heading {
    margin-bottom: 20px;
}

.guide-content ul {
    padding-left: 18px;
}

.guide-content li {
    margin-bottom: 12px;
}

.platform-card {
    text-decoration: none;
    color: #fff;
}

.step-box span {
    font-size: 42px;
    font-weight: 800;
    color: #ff4ecd;
    display: block;
    margin-bottom: 18px;
}

.newsletter-box {
    background: linear-gradient(135deg, #ff4ecd, #7b61ff);
    border-radius: 35px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-box h2 {
    font-size: 42px;
    margin-top: 10px;
}

footer {
    background: #06060b;
    padding-top: 80px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

footer h4,
footer h3 {
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    text-decoration: none;
    color: #bdbdcc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    padding: 22px;
    color: #8d8da3;
}

@media(max-width:768px) {

    .left-side h1 {
        font-size: 46px;
    }

    .section-header h2,
    .guide-content h2,
    .newsletter-box h2 {
        font-size: 34px;
    }

    nav {
        display: none;
    }

    .top-card,
    .bottom-card {
        position: relative;
        inset: auto;
        width: 100%;
        margin: 20px 0;
    }

    .newsletter-box {
        padding: 40px 25px;
    }
}