/* Mobland Clean Styles - FIXED MOBILE */
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500|Muli:300,400,700');

:root {
    --purple-start: #321575;
    --purple-end: #8D0B93;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Muli', sans-serif;
    --text-color: #8b95a5;
    --heading-color: #000;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 300;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    transition: .3s all ease;
    text-decoration: none;
}

/* Hero with Wave */
.hero-section {
    position: relative;
    background: linear-gradient(45deg, var(--purple-start) 0%, var(--purple-end) 100%);
    padding: 8rem 0 16rem 0;
    color: #fff;
    margin-bottom: 50px;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="1" d="M0,256L48,229.3C96,203,192,149,288,154.7C384,160,480,224,576,218.7C672,213,768,139,864,128C960,117,1056,171,1152,197.3C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.site-navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 99;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Phone Mockup */
.phone_mockup {
    width: 280px;
    margin: 0 auto;
    background: #111;
    border-radius: 40px;
    border: 10px solid #111;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.phone_mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.play-badge {
    height: 70px;
    width: auto;
    transition: transform 0.2s;
}

.play-badge:hover {
    transform: translateY(-3px);
}

/* Sections */
.site-section {
    padding: 4rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--purple-start);
}

/* Feature Cards (with clean boxes on mobile) */
.unit-4 {
    margin-bottom: 30px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    transition: .3s all ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.unit-4:hover {
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

.unit-4 h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.unit-4-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.unit-4-icon svg {
    width: 60px;
    height: 60px;
}

/* Zig Zag Rows */
.feature-item-row {
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-item-row.reversed {
    flex-direction: row-reverse;
}

.feature-imgbox {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-txtbox {
    flex: 1;
}

.feature-txtbox h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-txtbox small {
    display: block;
    margin-bottom: 10px;
}

.feature-txtbox ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-txtbox ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Pricing */
.pricing-section {
    padding: 6rem 0;
    text-align: center;
    background: #f8f9fa;
}

.pricing-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    display: inline-block;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* MOBILE FIXES */
@media (max-width: 900px) {

    /* Fix horizontal overflow */
    body {
        overflow-x: hidden !important;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Hero */
    .hero-section {
        padding: 6rem 0 10rem 0;
        text-align: center;
    }

    .hero-section::after {
        height: 80px;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }

    /* Phone smaller on mobile */
    .phone_mockup {
        width: 220px;
        border: 8px solid #111;
    }

    /* Stack zig-zag sections */
    .feature-item-row {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
        text-align: center;
    }

    .feature-txtbox {
        padding: 0 !important;
    }

    .feature-txtbox h2 {
        font-size: 1.8rem;
    }

    /* Play button */
    .play-badge {
        height: 60px;
    }

    /* Pricing card */
    .pricing-card {
        padding: 2rem;
    }

    /* Feature grid */
    .unit-4 {
        padding: 30px 20px;
    }
}