* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff8fb;
    /* Pale pink background like FRND */
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* NAVBAR */

header {
    background: white;
    padding: 20px 0;
}

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

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    position: relative;
    font-weight: 500;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* BUTTONS */

.btn {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 46, 149, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    border: 2px solid #FF2E95;
    background: none;
    color: #FF2E95;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.2);
}

.btn-light {
    background: white;
    color: #ff6b00;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
}


/* HERO */

.hero {
    background: linear-gradient(135deg, #fff5f8 0%, #f3f0ff 100%);
    padding: 100px 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

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

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.hero-image img {
    width: 420px;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(236, 17, 135, 0.1);
    border: 8px solid white;
}


/* TRUSTED */

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

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    color: #777;
}


/* SERVICES */

.services {
    padding: 100px 0;
    text-align: center;
}

.services h2 span {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card h3 {
    color: #6B21A8;
    margin-bottom: 15px;
    font-size: 24px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 33, 168, 0.1);
}


/* DASHBOARD */

.dashboard {
    background: #ffffff;
    padding: 120px 0;
}

.dash-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dashboard img {
    width: 480px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard h2 span {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ANALYTICS */

.analytics {
    padding: 80px 0;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.analytics img {
    width: 100%;
    border-radius: 12px;
}


/* Removed Pricing Styles */


/* TESTIMONIALS */

.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* CTA */

.cta {
    background: linear-gradient(135deg, #FF2E95 0%, #6B21A8 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 80px;
}


/* FOOTER */

footer {
    background: #0a0f1a;
    /* FRND Dark Footer */
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

footer a {
    display: block;
    color: #cbd5e1;
    margin: 8px 0;
    text-decoration: none;
    font-size: 15px;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

/* ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    transform: translateY(30px);
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

/* RESPONSIVENESS */

#menuBtn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 992px) {

    .hero-wrapper,
    .dash-wrapper,
    .analytics-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image img,
    .dashboard img {
        width: 100%;
        max-width: 500px;
    }

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

    .service-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #menuBtn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
    }

    .header .btn-outline {
        display: none;
    }

    .service-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logos {
        flex-wrap: wrap;
        gap: 20px;
    }
}