:root {
    --navy: #0d0919;
    --blue: #3b1fa8;
    --sky: #6b48d4;
    --accent: #c9a227;
    --gold: #e8b830;
    --green: #c9a227;
    --light: #f0eaff;
    --gray: #7a6fa0;
    --white: #ffffff;
    --purple-dark: #1a0e3d;
    --purple-mid: #2d1b7a
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Arial, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(13 9 25 / .93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgb(255 255 255 / .07);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.logo {
    display: flex;
    align-items: center
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgb(0 0 0 / .4))
}

.logo span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: rgb(255 255 255 / .7);
    text-decoration: none;
    font-size: .9rem;
    transition: color 0.2s
}

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

.nav-cta {
    display: flex;
    gap: .75rem;
    align-items: center
}

.btn-ghost {
    padding: .5rem 1.25rem;
    border: 1px solid rgb(255 255 255 / .25);
    border-radius: 8px;
    color: var(--white);
    background: #fff0;
    font-family: Arial, sans-serif;
    font-size: .9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s
}

.btn-ghost:hover {
    background: rgb(255 255 255 / .08)
}

.btn-primary {
    padding: .5rem 1.4rem;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s
}

.btn-primary:hover {
    background: #2e1890;
    transform: translateY(-1px)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgb(255 255 255 / .1);
    padding: 1.5rem 5%;
    z-index: 999;
    flex-direction: column;
    gap: 1rem
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: rgb(255 255 255 / .8);
    text-decoration: none;
    font-size: 1rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgb(255 255 255 / .07)
}

.mobile-menu .mobile-btns {
    display: flex;
    gap: .75rem;
    padding-top: .5rem
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgb(59 31 168 / .35) 0%, transparent 70%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(201 162 39 / .15) 0%, transparent 70%);
    pointer-events: none
}

.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: .5rem;
    background: rgb(59 31 168 / .18);
    border: 1px solid rgb(107 72 212 / .45);
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .8rem;
    color: #a98cf0;
    margin-bottom: 1.5rem;
    font-weight: 500
}

.hero-badge span {
    background: var(--sky);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem
}

.hero h1 .highlight {
    color: var(--accent)
}

.hero p {
    font-size: 1.1rem;
    color: rgb(255 255 255 / .65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-xl {
    padding: .9rem 2rem;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s
}

.btn-xl.primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 30px rgb(59 31 168 / .45)
}

.btn-xl.primary:hover {
    background: #2e1890;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgb(59 31 168 / .55)
}

.btn-xl.outline {
    background: #fff0;
    color: var(--white);
    border: 1px solid rgb(255 255 255 / .25)
}

.btn-xl.outline:hover {
    background: rgb(255 255 255 / .06);
    transform: translateY(-2px)
}

.hero-visual {
    position: relative;
    animation: floatUp 0.8s ease-out forwards;
    opacity: 0
}

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

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

.dashboard-card {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px)
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

.dash-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent)
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem
}

.stat-box {
    background: rgb(255 255 255 / .05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgb(255 255 255 / .07);
    text-align: center
}

.stat-val {
    font-family: Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 800
}

.stat-val.blue {
    color: var(--sky)
}

.stat-val.amber {
    color: var(--accent)
}

.stat-val.green {
    color: var(--accent)
}

.stat-lbl {
    font-size: .72rem;
    color: rgb(255 255 255 / .5);
    margin-top: 2px
}

.mini-bar {
    background: rgb(255 255 255 / .05);
    border-radius: 8px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
    border: 1px solid rgb(255 255 255 / .05)
}

.mini-bar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.mini-bar-text {
    flex: 1
}

.mini-bar-label {
    font-size: .78rem;
    color: rgb(255 255 255 / .5)
}

.mini-bar-value {
    font-size: .9rem;
    font-weight: 500
}

.mini-bar-badge {
    font-size: .7rem;
    padding: .2rem .6rem;
    border-radius: 100px;
    background: rgb(201 162 39 / .15);
    color: var(--accent)
}

.logos-strip {
    padding: 3rem 5%;
    border-top: 1px solid rgb(255 255 255 / .05);
    border-bottom: 1px solid rgb(255 255 255 / .05);
    text-align: center
}

.logos-strip p {
    color: rgb(255 255 255 / .35);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 2rem
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

.logo-item {
    color: rgb(255 255 255 / .3);
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -.5px;
    transition: color 0.3s
}

.logo-item:hover {
    color: rgb(255 255 255 / .7)
}

.section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto
}

.section-tag {
    display: inline-block;
    background: rgb(201 162 39 / .12);
    border: 1px solid rgb(201 162 39 / .35);
    color: var(--accent);
    padding: .3rem .9rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem
}

.section-heading {
    font-family: Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 1rem
}

.section-sub {
    color: rgb(255 255 255 / .55);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px
}

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

.service-card {
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.service-card:hover {
    background: rgb(255 255 255 / .06);
    transform: translateY(-4px);
    border-color: rgb(107 72 212 / .4)
}

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

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem
}

.service-icon.blue {
    background: rgb(59 31 168 / .18)
}

.service-icon.amber {
    background: rgb(201 162 39 / .14)
}

.service-icon.green {
    background: rgb(201 162 39 / .12)
}

.service-icon.purple {
    background: rgb(139 92 246 / .12)
}

.service-card h3 {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.service-card p {
    color: rgb(255 255 255 / .55);
    font-size: .9rem;
    line-height: 1.6
}

.how-section {
    padding: 6rem 5%;
    background: rgb(255 255 255 / .02)
}

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

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #7c55e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgb(26 79 216 / .4)
}

.step-card h3 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    margin-bottom: .5rem
}

.step-card p {
    color: rgb(255 255 255 / .5);
    font-size: .88rem;
    line-height: 1.6
}

.cta-section {
    padding: 6rem 5%;
    text-align: center
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgb(59 31 168 / .25), rgb(201 162 39 / .12));
    border: 1px solid rgb(107 72 212 / .35);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(59 31 168 / .15) 0%, transparent 60%);
    pointer-events: none
}

.cta-box h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 1rem
}

.cta-box p {
    color: rgb(255 255 255 / .6);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

footer {
    border-top: 1px solid rgb(255 255 255 / .07);
    padding: 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

footer p {
    color: rgb(255 255 255 / .35);
    font-size: .85rem
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    color: rgb(255 255 255 / .35);
    text-decoration: none;
    font-size: .85rem;
    transition: color 0.2s
}

.footer-links a:hover {
    color: rgb(255 255 255 / .7)
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgb(37 211 102 / .45);
    text-decoration: none;
    animation: waBounce 2s ease-in-out infinite;
    transition: transform 0.2s
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none
}

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

@keyframes waBounce {

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

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

.wa-tooltip {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 9998;
    background: var(--navy);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 8px;
    padding: .5rem .9rem;
    font-size: .82rem;
    color: rgb(255 255 255 / .8);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgb(0 0 0 / .3);
    animation: fadeSlide 3s 1.5s forwards;
    opacity: 0
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 18px;
    width: 12px;
    height: 7px;
    background: var(--navy);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-left: 1px solid rgb(255 255 255 / .1);
    border-right: 1px solid rgb(255 255 255 / .1)
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(8px)
    }

    15% {
        opacity: 1;
        transform: translateY(0)
    }

    80% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-visual {
        display: none
    }

    .hero {
        min-height: auto;
        padding: 100px 5% 60px
    }

    footer {
        flex-direction: column;
        text-align: center
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center
    }

    .cta-box {
        padding: 2.5rem 1.5rem
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.logo {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
}