:root {
    --primary: #ff6b2c;
    --dark: #0b1220;
    --light: #fff6f2;
    --muted: #6b7280;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

section {
    padding: 90px 0;
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-align: center;
}
.section-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: var(--dark);
}

.logo img{
    width: 120px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
}

/* HERO */
.hero {
    background: var(--light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
}

.hero p {
    margin: 20px 0;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-points {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.hero-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.035);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}



/* AUDIENCE */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.audience-card {
    padding: 28px;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.audience-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}


.audience-card:hover {
 transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    cursor:pointer;
}

.blue { background: #eff6ff; }
.green { background: #ecfdf5; }
.purple { background: #f5f3ff; }
.pink { background: #fdf2f8; }

/* VALUE */
.value {
    background: var(--dark);
    color: white;
    text-align: center;
}

.value p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 16px auto 0;
}

/* STEPS */
.how-it-works {
    padding: 100px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6c5ce7;
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-cta {
    display: inline-block;
    margin-top: 10px;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

/* PRICING */
.pricing {
    background: var(--light);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pricing-toggle button {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600;
}

.pricing-toggle button.active {
    background: var(--primary);
    color: white;
}

.pricing-group {
    display: none;
}

.pricing-group.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.price-card {
    padding: 40px;
    border-radius: 22px;
    background: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

/* CTA */
.cta {
    background: var(--dark);
    color: white;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* BUTTONS */
.btn {
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--dark);
}

.btn-ghost {
    color: var(--dark);
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav {
    display: none;
}


.before-after-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}

.before-after-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-box:hover img {
    transform: scale(1.06);
}

.label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
}

.before-label {
    background: rgba(0, 0, 0, 0.7);
}

.after-label {
    background: rgba(34, 197, 94, 0.9);
}
.arrow-box {
    font-size: 2.5rem;
    font-weight: bold;
    color: #aaa;
    user-select: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .nav, .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
        display: flex;
    }

    .before-after-wrapper {
        flex-direction: column;
    }

    .arrow-box {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}