@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --pink: #ff2d78;
    --purple: #8b5cf6;
    --violet: #6d28d9;
    --magenta: #e040fb;
    --dark-bg: #0a0a0f;
    --dark-card: #13131a;
    --dark-surface: #1a1a24;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --gradient-main: linear-gradient(135deg, var(--pink), var(--purple));
    --gradient-glow: linear-gradient(135deg, rgba(255, 45, 120, 0.4), rgba(139, 92, 246, 0.4));
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.bg-orb--1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
    background: var(--pink);
    animation: float-orb 12s ease-in-out infinite;
}

.bg-orb--2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: var(--purple);
    animation: float-orb 15s ease-in-out infinite reverse;
}

.bg-orb--3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 50%;
    background: var(--magenta);
    animation: float-orb 10s ease-in-out infinite 3s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(10, 10, 15, 0.92);
}

.navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.navbar__logo span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar__logo svg {
    width: 32px;
    height: 32px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar__links a:hover {
    color: var(--text-primary);
}

.navbar__cta {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 120, 0.35);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--magenta);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge::before {
    content: '🔥';
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero__title .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.45s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 120, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero__stat-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.hero__stat-value .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero__phone {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(255, 45, 120, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

/* ===== FEATURES ===== */
.features {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.features__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--magenta);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 3rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 45, 120, 0.3);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.feature-card__desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.how-it-works__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
}

.step-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
}

.step-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== SHOWCASE (MATCH + ADS) ===== */
.showcase {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.showcase__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase__inner.reverse {
    direction: rtl;
}

.showcase__inner.reverse>* {
    direction: ltr;
}

.showcase__image {
    display: flex;
    justify-content: center;
}

.showcase__phone {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15), 0 8px 25px rgba(0, 0, 0, 0.5);
}

.showcase__content {
    padding: 1rem 0;
}

.showcase__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--magenta);
    font-weight: 500;
    margin-bottom: 1rem;
}

.showcase__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.showcase__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.showcase__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.showcase__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.showcase__list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.testimonials__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 120, 0.2);
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card__handle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.cta__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.15;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta__disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__logo {
    font-size: 1.2rem;
    font-weight: 800;
}

.footer__logo span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HAMBURGER (MOBILE) ===== */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .hero__inner,
    .showcase__inner,
    .showcase__inner.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__buttons,
    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero__phone {
        max-width: 280px;
    }

    .showcase__inner.reverse {
        direction: ltr;
    }

    .showcase__image {
        order: -1;
    }

    .showcase__phone {
        max-width: 280px;
    }

    .showcase__content {
        text-align: center;
    }

    .showcase__list {
        align-items: center;
    }

    .navbar__links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        backdrop-filter: blur(20px);
    }

    .navbar__links.open {
        display: flex;
    }

    .navbar__hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .features,
    .how-it-works,
    .showcase,
    .testimonials,
    .cta {
        padding: 4rem 1rem;
    }
}
