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

:root {
    --bg-deep: #06060e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --gradient: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    --gradient-r: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    --text-primary: #f1f5f9;
    --text-secondary: rgba(241, 245, 249, 0.6);
    --text-muted: rgba(241, 245, 249, 0.35);
    --border: rgba(255, 255, 255, 0.06);
    --glow-purple: rgba(139, 92, 246, 0.3);
    --glow-blue: rgba(59, 130, 246, 0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-deep)
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 3px
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbFloat 20s ease-in-out infinite
}

.bg-orbs .orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: #8b5cf6;
    top: -10%;
    left: -5%;
    animation-delay: 0s
}

.bg-orbs .orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -10%;
    right: -5%;
    animation-delay: -7s
}

.bg-orbs .orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s
}

@keyframes orbFloat {

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

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

    50% {
        transform: translate(-20px, 30px) scale(0.95)
    }

    75% {
        transform: translate(40px, 20px) scale(1.05)
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(6, 6, 14, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(6, 6, 14, 0.92)
}

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

.nav-logo {
    height: 40px;
    transition: transform 0.3s
}

.nav-logo:hover {
    transform: scale(1.05)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

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

.nav-links a:hover {
    color: var(--text-primary)
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--glow-purple);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-purple)
}

.nav-cta svg {
    width: 16px;
    height: 16px
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }
}



/* FOOTER SOCIALS */

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: opacity 0.3s
}

.footer-logo:hover {
    opacity: 1
}


/* FOOTER CONTACT */
.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 16px;
}

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

.footer-contact a:hover {
    color: var(--purple)
}

.footer-contact span {
    color: var(--text-muted);
    font-size: 0.7rem
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--purple);
    transform: translateY(-3px);
}


.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
    color: #ef4444
}

/* HAMBURGER MENU */
.nav-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s;
    z-index: 200;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.1)
}

.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 14, 0.97);
    backdrop-filter: blur(20px);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all
}

.mobile-menu a {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--purple)
}

.mobile-menu .mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-top: 16px;
}

@media(max-width:768px) {
    .nav-links {
        display: none !important
    }

    .nav-hamburger {
        display: flex
    }

    .nav-cta {
        display: none
    }
}


/* MOCKUP PREVIEW */
.mockup-section {
    padding: 80px 0
}

.mockup-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mockup-device {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s;
}

.mockup-device:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1)
}

.mockup-desktop {
    width: 580px;
    height: 360px;
    border-radius: 16px
}

.mockup-mobile {
    width: 180px;
    height: 360px;
    border-radius: 24px;
    border-width: 3px
}

.mockup-bar {
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.mockup-bar .dot-r {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4)
}

.mockup-bar .dot-y {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.4)
}

.mockup-bar .dot-g {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.4)
}

.mockup-bar .url {
    margin-left: 12px;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    flex: 1;
}

.mockup-body {
    padding: 20px;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mockup-mobile .mockup-body {
    padding: 16px;
    height: calc(100% - 32px)
}

.mock-hero-block {
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1))
}

.mock-text {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06)
}

.mock-text.w80 {
    width: 80%
}

.mock-text.w60 {
    width: 60%
}

.mock-text.w40 {
    width: 40%
}

.mock-btn {
    height: 28px;
    width: 140px;
    border-radius: 14px;
    background: var(--gradient);
    opacity: 0.5;
    margin-top: 4px;
}

.mock-cards {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.mock-card {
    flex: 1;
    height: 60px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border)
}

.mockup-mobile .mock-hero-block {
    height: 30px
}

.mockup-mobile .mock-btn {
    width: 100px;
    height: 22px;
    border-radius: 11px
}

.mockup-mobile .mock-cards {
    flex-direction: column
}

.mockup-mobile .mock-card {
    height: 36px
}

.mockup-mobile .mock-text {
    height: 6px
}

.mockup-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--bg-deep);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple);
    white-space: nowrap;
}

@media(max-width:768px) {
    .mockup-desktop {
        width: 100%;
        max-width: 400px;
        height: 280px
    }

    .mockup-mobile {
        display: none
    }
}


.testimonials-grid {
    grid-template-columns: repeat(3, 1fr) !important
}

@media(max-width:1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr !important
    }
}

@media(max-width:768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important
    }
}


/* COMPARISON */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px
}

.compare-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.compare-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1)
}

.compare-card.winner {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.04)
}

.compare-card.winner:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1)
}

.compare-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.compare-icon {
    font-size: 2.6rem;
    margin-bottom: 16px
}

.compare-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px
}

.compare-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.9rem;
    font-weight: 500
}

.compare-row.bad {
    color: #ef4444
}

.compare-row.warn {
    color: #f59e0b
}

.compare-row.good {
    color: #22c55e;
    font-weight: 600
}

.compare-row svg {
    flex-shrink: 0
}

.compare-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
    flex: 1
}

.compare-note {
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.compare-note strong {
    color: var(--text-primary)
}

.compare-quote {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.compare-quote strong {
    color: var(--text-primary);
    font-style: normal
}

@media(max-width:1024px) {
    .compare-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

@media(max-width:768px) {
    .compare-grid {
        grid-template-columns: 1fr
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-deep), transparent);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

/* ═══ HERO ANIMATED BG EFFECTS ═══ */
.hero-rings {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.hero-rings .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 6s ease-in-out infinite;
}

.hero-rings .ring:nth-child(1) {
    width: 300px;
    height: 300px;
    animation-delay: 0s
}

.hero-rings .ring:nth-child(2) {
    width: 500px;
    height: 500px;
    animation-delay: 1s
}

.hero-rings .ring:nth-child(3) {
    width: 700px;
    height: 700px;
    animation-delay: 2s
}

.hero-rings .ring:nth-child(4) {
    width: 900px;
    height: 900px;
    animation-delay: 3s
}

.hero-rings .ring:nth-child(5) {
    width: 1100px;
    height: 1100px;
    animation-delay: 4s
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.08)
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0;
    animation: particleFly linear infinite;
}

.hero-particles .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s
}

.hero-particles .particle:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 25%;
    animation-duration: 15s;
    animation-delay: 2s
}

.hero-particles .particle:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-duration: 10s;
    animation-delay: 4s
}

.hero-particles .particle:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 55%;
    animation-duration: 14s;
    animation-delay: 1s
}

.hero-particles .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 70%;
    animation-duration: 11s;
    animation-delay: 3s
}

.hero-particles .particle:nth-child(6) {
    width: 3px;
    height: 3px;
    left: 85%;
    animation-duration: 13s;
    animation-delay: 5s
}

.hero-particles .particle:nth-child(7) {
    width: 5px;
    height: 5px;
    left: 15%;
    animation-duration: 16s;
    animation-delay: 6s
}

.hero-particles .particle:nth-child(8) {
    width: 4px;
    height: 4px;
    left: 60%;
    animation-duration: 9s;
    animation-delay: 2.5s
}

.hero-particles .particle:nth-child(9) {
    width: 3px;
    height: 3px;
    left: 90%;
    animation-duration: 12s;
    animation-delay: 4.5s
}

.hero-particles .particle:nth-child(10) {
    width: 5px;
    height: 5px;
    left: 35%;
    animation-duration: 14s;
    animation-delay: 7s
}

@keyframes particleFly {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 0.6
    }

    90% {
        opacity: 0.6
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6
    }

    33% {
        transform: translate(-48%, -52%) scale(1.15);
        opacity: 1
    }

    66% {
        transform: translate(-52%, -48%) scale(0.95);
        opacity: 0.7
    }
}

.hero-streak {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    animation: streak 8s linear infinite;
    opacity: 0;
}

.hero-streak:nth-child(1) {
    top: 20%;
    animation-delay: 0s
}

.hero-streak:nth-child(2) {
    top: 40%;
    animation-delay: 2.5s;
    width: 150px
}

.hero-streak:nth-child(3) {
    top: 65%;
    animation-delay: 5s;
    width: 250px
}

@keyframes streak {
    0% {
        left: -200px;
        opacity: 0
    }

    5% {
        opacity: 0.8
    }

    95% {
        opacity: 0.8
    }

    100% {
        left: calc(100% + 200px);
        opacity: 0
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
}

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

.hero .subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s ease 0.2s both
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.3s both;
    justify-content: center
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 8px 40px var(--glow-purple);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 50px var(--glow-purple)
}

.btn-primary:hover::before {
    opacity: 1
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px)
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s ease 0.5s both;
    justify-content: center
}

.hero-stat .number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-stat .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px
}

.hero-grid {
    position: absolute;
    top: 0;
    right: -200px;
    width: 700px;
    height: 700px;
    opacity: 0.04;
    background-image: linear-gradient(rgba(139, 92, 246, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(600px) rotateY(-15deg) rotateX(5deg);
    animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 60px 60px
    }
}

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

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

/* SECTIONS */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 16px;
    justify-content: center;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gradient)
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

/* PAIN */
.pain {
    background: linear-gradient(180deg, var(--bg-deep), rgba(139, 92, 246, 0.03), var(--bg-deep))
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center
}

.pain-visual {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden
}

.pain-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent 60%)
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: relative
}

.pain-item:last-child {
    border-bottom: none
}

.pain-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    font-size: 1rem
}

.pain-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px
}

.pain-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s;
}

.check-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(6px)
}

.check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
}

.check-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.check-item p {
    font-size: 0.9rem;
    color: var(--text-secondary)
}

/* SOLUTIONS */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px
}

.sol-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.175, .885, .32, 1.275);
}

.sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s
}

.sol-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1)
}

.sol-card:hover::before {
    opacity: 1
}

.sol-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.sol-card:nth-child(1) .sol-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.15)
}

.sol-card:nth-child(2) .sol-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.15)
}

.sol-card:nth-child(3) .sol-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.15)
}

.sol-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px
}

.sol-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7
}

/* LOCAL */
.local {
    background: linear-gradient(180deg, var(--bg-deep), rgba(59, 130, 246, 0.04), var(--bg-deep))
}

.local-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px
}

.local-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px
}

.local-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px
}

.local-map {
    position: relative;
    padding: 3px;
    background: var(--gradient);
    border-radius: var(--radius-xl)
}

.local-map-inner {
    background: var(--bg-deep);
    border-radius: calc(var(--radius-xl) - 3px);
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.local-map-inner .pin {
    font-size: 3rem;
    animation: bounce 2s ease infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.local-map-inner h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700
}

.local-map-inner p {
    color: var(--text-muted);
    font-size: 0.9rem
}

/* PROOF */
.proof {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(139, 92, 246, 0.03)
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    flex-wrap: wrap
}

.proof-inner .fire {
    font-size: 1.4rem;
    animation: pulse 1.5s ease infinite
}

.proof-inner p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary)
}

.proof-inner strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700
}

/* PRICING */
.pricing {
    background: linear-gradient(180deg, var(--bg-deep), rgba(139, 92, 246, 0.04), var(--bg-deep))
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05)
}

.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient)
}

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

.price-badge {
    display: inline-flex;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
}

.price-card:nth-child(1) .price-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2)
}

.price-card:nth-child(2) .price-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2)
}

.price-card:nth-child(3) .price-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2)
}

.price-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 40px
}

.price-value {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4px
}

.price-value span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted)
}

.price-value .currency {
    font-size: 1.4rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 32px
}

.price-delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 24px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1
}

.price-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary)
}

.price-feat::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.price-feat.included-all {
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.85rem
}

.price-feat.included-all::before {
    content: '↗';
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6
}

.price-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.price-card:nth-child(1) .price-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12)
}

.price-card:nth-child(1) .price-btn:hover {
    background: rgba(255, 255, 255, 0.14)
}

.price-card:nth-child(2) .price-btn {
    background: var(--gradient);
    box-shadow: 0 6px 30px var(--glow-purple)
}

.price-card:nth-child(2) .price-btn:hover {
    box-shadow: 0 10px 40px var(--glow-purple);
    transform: translateY(-2px)
}

.price-card:nth-child(3) .price-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12)
}

.price-card:nth-child(3) .price-btn:hover {
    background: rgba(255, 255, 255, 0.14)
}

.price-fine-print {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* STEPS */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: var(--gradient);
    opacity: 0.2;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--bg-deep);
    border: 2px solid var(--border);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step:hover .step-num {
    border-color: rgba(139, 92, 246, 0.4);
    background: #110f1f;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--glow-purple)
}

.step h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 280px;
    margin: 0 auto
}

/* FAQ */
.faq {
    background: linear-gradient(180deg, var(--bg-deep), rgba(59, 130, 246, 0.03), var(--bg-deep))
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px
}

.faq-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s;
}

.faq-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.15)
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.04)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.faq-q h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4
}

.faq-q .arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-q .arrow {
    transform: rotate(180deg);
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding-top: 16px
}

/* TRUST BADGES */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 30px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
}

/* FINAL CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%)
}

.final-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    position: relative
}

.final-cta .btn-primary {
    font-size: 1.1rem;
    padding: 18px 48px;
    position: relative
}

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center
}

footer p {
    font-size: 0.82rem;
    color: var(--text-muted)
}

footer a {
    color: var(--purple);
    text-decoration: none
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: fadeUp 1s ease 1s both;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(.175, .885, .32, 1.275)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: 0.1s
}

.reveal-delay-2 {
    transition-delay: 0.2s
}

.reveal-delay-3 {
    transition-delay: 0.3s
}

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

    .pain-grid,
    .local-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .solutions-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .steps-row::before {
        display: none
    }

    .hero-stats {
        gap: 24px
    }
}

@media(max-width:768px) {

    .hero-particles,
    .hero-streak,
    .hero-rings .ring:nth-child(4),
    .hero-rings .ring:nth-child(5) {
        display: none
    }

    .solutions-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px
    }

    .hero-actions {
        flex-direction: column
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center
    }

    .nav-cta span {
        display: none
    }

    section {
        padding: 70px 0
    }

    .trust-row {
        gap: 20px
    }
}

