*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */

.site-header{
    width:100%;
    padding:22px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    position:relative;
    z-index:10;
}

.brand{
    color:white;
    font-size:24px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
}

.brand:hover{
    color:white;
}

.brand-icon{
    font-size:26px;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-nav a{
    color:#cbd5e1;
    font-weight:500;
    transition:.3s;
}

.desktop-nav a:hover{
    color:white;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn-link-login{
    color:white;
    font-weight:600;
}

.btn-primary{
    background:#7c3aed;
    color:white;
    padding:12px 22px;
    border-radius:14px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.btn-primary:hover{
    background:#6d28d9;
    color:white;
    transform:translateY(-2px);
}

.btn-secondary{
    background:rgba(255,255,255,.08);
    color:white;
    padding:12px 22px;
    border-radius:14px;
    font-weight:700;
    border:1px solid rgba(255,255,255,.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.14);
    color:white;
}

.btn-large{
    padding:15px 28px;
}

/* HERO */

.hero-section{
    min-height:calc(100vh - 86px);
    padding:40px 7% 80px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:60px;
    background:
    radial-gradient(circle at top left, rgba(124,58,237,.28), transparent 35%),
    radial-gradient(circle at top right, rgba(59,130,246,.20), transparent 35%),
    #050816;
}

.hero-content{
    max-width:680px;
}

.hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(124,58,237,.18);
    color:#c4b5fd;
    font-weight:700;
    margin-bottom:24px;
    border:1px solid rgba(196,181,253,.18);
}

.hero-content h1{
    font-size:clamp(38px, 5vw, 72px);
    line-height:1.02;
    letter-spacing:-1.8px;
    font-weight:900;
    margin-bottom:24px;
}

.hero-content p{
    color:#cbd5e1;
    font-size:clamp(17px, 2vw, 21px);
    line-height:1.7;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.hero-trust{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    color:#cbd5e1;
    font-size:15px;
}

.hero-trust span{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-trust i{
    color:#22c55e;
}

/* PREVIEW */

.hero-preview{
    width:100%;
}

.preview-card{
    background:rgba(15,23,42,.9);
    border:1px solid rgba(255,255,255,.10);
    border-radius:28px;
    padding:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    transform:rotate(1deg);
}

.preview-topbar{
    height:34px;
    display:flex;
    align-items:center;
    gap:8px;
    padding-left:8px;
}

.preview-topbar span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#475569;
}

.preview-dashboard{
    height:430px;
    display:grid;
    grid-template-columns:90px 1fr;
    gap:18px;
    background:#020617;
    border-radius:20px;
    padding:18px;
}

.preview-sidebar{
    border-radius:16px;
    background:linear-gradient(180deg,#7c3aed,#312e81);
}

.preview-main{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.preview-line{
    height:34px;
    border-radius:12px;
    background:#1e293b;
}

.preview-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.preview-grid div{
    height:82px;
    border-radius:16px;
    background:linear-gradient(135deg,#1e293b,#111827);
}

.preview-calendar{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.preview-calendar div{
    border-radius:16px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.06);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-section{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content{
        max-width:850px;
        margin:0 auto;
    }

    .hero-actions,
    .hero-trust{
        justify-content:center;
    }

    .hero-preview{
        max-width:760px;
        margin:0 auto;
    }
}

@media(max-width:768px){

    .site-header{
        padding:18px 5%;
        flex-wrap:wrap;
    }

    .desktop-nav{
        order:3;
        width:100%;
        justify-content:center;
        gap:18px;
        font-size:14px;
    }

    .header-actions{
        gap:10px;
    }

    .btn-link-login{
        display:none;
    }

    .hero-section{
        padding:35px 5% 60px;
        gap:42px;
    }

    .preview-dashboard{
        height:340px;
        grid-template-columns:70px 1fr;
        gap:14px;
    }

    .preview-grid{
        grid-template-columns:1fr;
    }

    .preview-grid div{
        height:58px;
    }

    .preview-calendar{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){

    .site-header{
        justify-content:center;
        text-align:center;
    }

    .brand{
        width:100%;
        justify-content:center;
    }

    .header-actions{
        width:100%;
        justify-content:center;
    }

    .desktop-nav{
        display:none;
    }

    .hero-content h1{
        letter-spacing:-1px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions a{
        width:100%;
    }

    .hero-trust{
        flex-direction:column;
        align-items:center;
    }

    .preview-card{
        padding:12px;
        border-radius:22px;
    }

    .preview-dashboard{
        height:300px;
        grid-template-columns:1fr;
    }

    .preview-sidebar{
        display:none;
    }
}

@media(min-width:1600px){

    .site-header,
    .hero-section{
        padding-left:12%;
        padding-right:12%;
    }

    .hero-content{
        max-width:780px;
    }

    .preview-dashboard{
        height:520px;
    }
}


/* BENEFITS */

.benefits-section{
    padding:90px 7%;
    background:#050816;
}

.section-heading{
    max-width:780px;
    margin:0 auto 52px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    padding:9px 16px;
    border-radius:999px;
    background:rgba(124,58,237,.16);
    color:#c4b5fd;
    font-weight:700;
    margin-bottom:18px;
    border:1px solid rgba(196,181,253,.18);
}

.section-heading h2{
    font-size:clamp(30px,4vw,48px);
    line-height:1.12;
    font-weight:900;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.section-heading p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.benefit-card{
    background:linear-gradient(180deg,#0f172a,#0b1120);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:32px;
    transition:.3s;
    min-height:250px;
}

.benefit-card:hover{
    transform:translateY(-8px);
    border-color:rgba(167,139,250,.45);
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.benefit-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(124,58,237,.16);
    color:#c4b5fd;
    font-size:26px;
    margin-bottom:22px;
}

.benefit-card h3{
    font-size:22px;
    font-weight:800;
    margin-bottom:12px;
}

.benefit-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* BENEFITS RESPONSIVE */

@media(max-width:1100px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){

    .benefits-section{
        padding:70px 5%;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .benefit-card{
        padding:26px;
        min-height:auto;
    }
}

@media(min-width:1600px){

    .benefits-section{
        padding-left:12%;
        padding-right:12%;
    }
}

/* ==========================
   HOW IT WORKS
========================== */

.steps-section{
    padding:100px 7%;
    background:#08101f;
}

.steps-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin-top:60px;
    flex-wrap:wrap;
}

.step-card{
    width:320px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    position:relative;
}

.step-card:hover{
    transform:translateY(-8px);
    border-color:#7c3aed;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.step-number{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    background:#7c3aed;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:18px;
}

.step-card i{
    font-size:48px;
    color:#a78bfa;
    margin:20px 0;
}

.step-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.step-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.step-arrow{
    font-size:38px;
    color:#7c3aed;
}

@media(max-width:992px){

    .steps-container{
        flex-direction:column;
    }

    .step-arrow{
        transform:rotate(90deg);
    }

}

@media(max-width:576px){

    .steps-section{
        padding:80px 5%;
    }

    .step-card{
        width:100%;
    }

}

/* SHOWCASE */

.showcase-section{
    padding:100px 7%;
    background:#050816;
}

.showcase-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:24px;
    margin-top:60px;
}

.showcase-card{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:18px;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.showcase-card.large{
    grid-row:span 2;
}

.showcase-card span{
    display:block;
    font-weight:800;
    margin-bottom:14px;
    color:#c4b5fd;
}

.showcase-card img{
    width:100%;
    height:100%;
    max-height:460px;
    object-fit:cover;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
}

.showcase-card:not(.large) img{
    max-height:220px;
}

@media(max-width:992px){

    .showcase-grid{
        grid-template-columns:1fr;
    }

    .showcase-card.large{
        grid-row:auto;
    }
}

@media(max-width:576px){

    .showcase-section{
        padding:80px 5%;
    }

    .showcase-card{
        padding:12px;
    }
}

/* PRICING */

.pricing-section{
    padding:100px 7%;
    background:#08101f;
}

.pricing-wrapper{
    width:100%;
    max-width:1180px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-items:stretch;
    gap:28px;
    margin:60px auto 0;
}

.pricing-card{
    width:100%;
    background:linear-gradient(180deg,#111827,#0f172a);
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:42px;
    text-align:center;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.pricing-card::before{
    content:"";
    position:absolute;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width:260px;
    height:260px;
    background:rgba(124,58,237,.25);
    filter:blur(70px);
}

.pricing-card > *{
    position:relative;
    z-index:1;
}

.pricing-card--featured{
    border-color:rgba(167,139,250,.65);
    box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.pricing-card--featured::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    box-shadow:inset 0 0 0 1px rgba(196,181,253,.12);
    pointer-events:none;
}

.pricing-label{
    display:inline-flex;
    align-self:center;
    padding:8px 15px;
    border-radius:999px;
    background:rgba(124,58,237,.18);
    color:#c4b5fd;
    font-weight:700;
    margin-bottom:22px;
}

.pricing-label--secondary{
    background:rgba(14,165,233,.14);
    color:#7dd3fc;
}

.pricing-card h3{
    font-size:30px;
    font-weight:900;
    margin-bottom:22px;
}

.price{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:8px;
    margin-bottom:18px;
}

.price span{
    font-size:58px;
    font-weight:900;
    letter-spacing:-2px;
}

.price small{
    color:#cbd5e1;
    margin-bottom:12px;
}

.pricing-description{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:30px;
}

.pricing-list{
    list-style:none;
    padding:0;
    margin:0 0 34px;
    text-align:left;
    display:grid;
    gap:14px;
    flex-grow:1;
}

.pricing-list li{
    color:#e5e7eb;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
}

.pricing-list i{
    color:#22c55e;
}

.btn-price{
    width:100%;
    padding:15px 24px;
    margin-bottom:18px;
}

.pricing-note{
    color:#cbd5e1;
}

.pricing-tax-note{
    max-width:760px;
    margin:28px auto 0;
    color:#94a3b8;
    text-align:center;
    line-height:1.6;
}

@media(max-width:900px){

    .pricing-wrapper{
        max-width:580px;
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .pricing-section{
        padding:80px 5%;
    }

    .pricing-card{
        padding:30px 22px;
    }

    .price span{
        font-size:46px;
    }

    .price{
        align-items:center;
        flex-direction:column;
        gap:2px;
    }

    .price small{
        margin-bottom:0;
    }
}

/* FAQ */

.faq-section{
    padding:100px 7%;
    background:#050816;
}

.faq-grid{
    max-width:1000px;
    margin:60px auto 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.faq-item{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
}

.faq-item h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:12px;
}

.faq-item p{
    color:#cbd5e1;
    line-height:1.7;
    margin:0;
}

@media(max-width:700px){

    .faq-section{
        padding:80px 5%;
    }

    .faq-grid{
        grid-template-columns:1fr;
    }
}


/* FAQ */

.faq-section{
    padding:100px 7%;
    background:#050816;
}

.faq-grid{
    max-width:1000px;
    margin:60px auto 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.faq-item{
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
}

.faq-item h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:12px;
}

.faq-item p{
    color:#cbd5e1;
    line-height:1.7;
    margin:0;
}

@media(max-width:700px){

    .faq-section{
        padding:80px 5%;
    }

    .faq-grid{
        grid-template-columns:1fr;
    }
}

/* FOOTER */

.footer-section{
    padding:60px 7% 30px;
    background:#020617;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-brand{
    max-width:420px;
}

.footer-brand h3{
    font-size:26px;
    font-weight:900;
    margin-bottom:14px;
}

.footer-brand p{
    color:#cbd5e1;
    line-height:1.7;
}

.footer-links{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#cbd5e1;
    font-weight:600;
}

.footer-links a:hover{
    color:white;
}

.footer-bottom{
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#94a3b8;
    font-size:14px;
}

@media(max-width:700px){

    .footer-section{
        padding:50px 5% 25px;
        text-align:center;
    }

    .footer-content{
        justify-content:center;
    }

    .footer-links{
        justify-content:center;
    }
}

/* STICKY HEADER */

.site-header{
    position:sticky;
    top:0;
    background:rgba(5,8,22,.85);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
}


/* ==========================
   MICRO ANIMACIONES
========================== */

.btn-primary,
.btn-secondary,
.btn-link-login{
    transition:all .3s ease;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 15px 35px rgba(124,58,237,.35);
}

.hero-preview{
    animation:floatPreview 5s ease-in-out infinite;
}

@keyframes floatPreview{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

.benefit-card,
.step-card,
.showcase-card,
.pricing-card,
.faq-item{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp .8s ease forwards;
}

.benefit-card:nth-child(1){ animation-delay:.1s; }
.benefit-card:nth-child(2){ animation-delay:.2s; }
.benefit-card:nth-child(3){ animation-delay:.3s; }
.benefit-card:nth-child(4){ animation-delay:.4s; }
.benefit-card:nth-child(5){ animation-delay:.5s; }
.benefit-card:nth-child(6){ animation-delay:.6s; }

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.showcase-card:hover,
.faq-item:hover{
    transform:translateY(-6px);
    border-color:rgba(167,139,250,.45);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.hero-badge,
.section-badge{
    animation:pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow{
    0%,100%{
        box-shadow:0 0 0 rgba(124,58,237,0);
    }

    50%{
        box-shadow:0 0 30px rgba(124,58,237,.35);
    }
}