:root{
    --navy:#0b1736;
    --navy-2:#111f45;
    --ink:#111827;
    --muted:#64748b;
    --line:#e2e8f0;
    --soft:#f6f8fc;
    --blue:#2563eb;
    --blue-dark:#1d4ed8;
    --cyan:#22c7df;
    --white:#ffffff;
    --green:#0f9f6e;
    --radius:22px;
    --shadow:0 24px 70px rgba(15,23,42,.11);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    color:var(--ink);
    background:#fff;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing:antialiased;
}

body.menu-open{
    overflow:hidden;
}

a{
    color:inherit;
}

button,
input,
textarea,
select{
    font:inherit;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid rgba(226,232,240,.85);
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
}

.nav-wrap{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:inline-flex;
    align-items:center;
    gap:11px;
    color:var(--navy);
    text-decoration:none;
}

.brand-symbol{
    width:42px;
    height:42px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:linear-gradient(145deg,var(--blue),#173c9a);
    color:#fff;
    font-weight:900;
    font-size:1.18rem;
    box-shadow:0 10px 24px rgba(37,99,235,.24);
}

.brand-copy{
    display:block;
    line-height:1.08;
}

.brand-copy strong{
    display:block;
    font-size:.98rem;
    letter-spacing:-.02em;
}

.brand-copy strong b{
    color:var(--blue);
}

.brand-copy small{
    display:block;
    margin-top:5px;
    color:#8491a8;
    font-size:.68rem;
    font-weight:650;
    letter-spacing:.025em;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    color:#475569;
    font-size:.9rem;
    font-weight:650;
    text-decoration:none;
    transition:.2s ease;
}

.main-nav a:hover{
    color:var(--blue);
}

.main-nav .nav-cta{
    padding:11px 16px;
    border-radius:10px;
    background:var(--navy);
    color:#fff;
}

.main-nav .nav-cta:hover{
    background:var(--blue);
    color:#fff;
}

.nav-toggle{
    width:42px;
    height:42px;
    display:none;
    border:0;
    border-radius:10px;
    background:#f1f5f9;
    cursor:pointer;
}

.nav-toggle span{
    width:20px;
    height:2px;
    display:block;
    margin:4px auto;
    border-radius:2px;
    background:var(--navy);
}

.hero{
    position:relative;
    overflow:hidden;
    padding:62px 0 60px;
    background:
        radial-gradient(circle at 84% 13%, rgba(34,199,223,.11), transparent 26%),
        radial-gradient(circle at 65% 80%, rgba(37,99,235,.08), transparent 30%),
        linear-gradient(180deg,#fff 0%,#f9fbff 100%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(15,23,42,.025) 1px, transparent 1px),
        linear-gradient(90deg,rgba(15,23,42,.025) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.45),transparent 88%);
}

.hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(380px,.82fr);
    align-items:center;
    gap:54px;
}

.eyebrow,
.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--blue);
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.eyebrow::before,
.section-kicker::before{
    content:"";
    width:28px;
    height:2px;
    border-radius:2px;
    background:var(--cyan);
}

.hero h1{
    max-width:720px;
    margin:20px 0 22px;
    color:var(--navy);
    font-size:clamp(2.65rem,4.6vw,4.25rem);
    line-height:1.01;
    letter-spacing:-.065em;
}

.hero h1 span{
    display:block;
    margin-top:7px;
    color:var(--blue);
}

.hero-lead{
    max-width:620px;
    margin:0;
    color:#536176;
    font-size:1.02rem;
    line-height:1.72;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

.button{
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:11px;
    padding:12px 19px;
    font-weight:760;
    font-size:.91rem;
    text-decoration:none;
    cursor:pointer;
    transition:.2s ease;
}

.button.primary{
    background:var(--blue);
    color:#fff;
    box-shadow:0 10px 26px rgba(37,99,235,.22);
}

.button.primary:hover{
    transform:translateY(-1px);
    background:var(--blue-dark);
}

.button.ghost{
    border:1px solid #d7deea;
    background:#fff;
    color:var(--navy);
}

.button.ghost:hover{
    border-color:#b7c2d5;
    background:#f8fafc;
}

.hero-notes{
    display:flex;
    flex-wrap:wrap;
    gap:18px 24px;
    margin-top:25px;
    color:#6b7890;
    font-size:.78rem;
    font-weight:650;
}

.hero-notes span{
    position:relative;
    padding-left:15px;
}

.hero-notes span::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:6px;
    height:6px;
    margin-top:-3px;
    border-radius:50%;
    background:var(--green);
}

.hero-visual{
    position:relative;
    min-height:405px;
    display:grid;
    place-items:center;
}

.visual-glow{
    position:absolute;
    width:330px;
    height:330px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(37,99,235,.16),rgba(34,199,223,.04) 52%,transparent 70%);
    filter:blur(4px);
}

.workflow-card{
    position:relative;
    z-index:2;
    width:min(100%,405px);
    border:1px solid rgba(213,222,236,.92);
    border-radius:24px;
    background:rgba(255,255,255,.96);
    box-shadow:0 30px 85px rgba(15,23,42,.15);
}

.main-card{
    padding:20px;
    transform:rotate(-1.5deg);
}

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

.card-top small{
    display:block;
    margin-bottom:5px;
    color:#94a3b8;
    font-size:.66rem;
    font-weight:800;
    letter-spacing:.08em;
}

.card-top strong{
    color:var(--navy);
    font-size:.96rem;
}

.status{
    padding:6px 9px;
    border-radius:999px;
    font-size:.67rem;
    font-weight:800;
}

.status.active{
    background:#e8f7f1;
    color:#07835c;
}

.progress{
    height:5px;
    margin:15px 0 18px;
    overflow:hidden;
    border-radius:999px;
    background:#eaf0f7;
}

.progress span{
    width:66%;
    height:100%;
    display:block;
    border-radius:inherit;
    background:linear-gradient(90deg,var(--blue),var(--cyan));
}

.workflow-list{
    display:grid;
    gap:8px;
}

.workflow-row{
    display:grid;
    grid-template-columns:36px 1fr;
    gap:12px;
    align-items:center;
    min-height:56px;
    padding:8px;
    border:1px solid transparent;
    border-radius:13px;
}

.workflow-row i{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#f1f5f9;
    color:#94a3b8;
    font-style:normal;
    font-size:.77rem;
    font-weight:850;
}

.workflow-row strong{
    display:block;
    margin-bottom:3px;
    color:#26334a;
    font-size:.83rem;
}

.workflow-row small{
    color:#8793a8;
    font-size:.72rem;
}

.workflow-row.completed i{
    background:#e8f7f1;
    color:#07835c;
}

.workflow-row.current{
    border-color:#dce6ff;
    background:#f7f9ff;
}

.workflow-row.current i{
    background:var(--blue);
    color:#fff;
}

.floating-card{
    position:absolute;
    z-index:4;
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    border:1px solid #e1e8f2;
    border-radius:14px;
    background:rgba(255,255,255,.95);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    backdrop-filter:blur(10px);
}

.floating-card small,
.floating-card strong{
    display:block;
}

.floating-card small{
    color:#94a3b8;
    font-size:.65rem;
}

.floating-card strong{
    margin-top:2px;
    color:var(--navy);
    font-size:.76rem;
}

.floating-icon{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:#e8f7f1;
    color:#07835c;
    font-weight:900;
}

.floating-icon.soft{
    background:#edf3ff;
    color:var(--blue);
}

.floating-one{
    left:-17px;
    top:48px;
}

.floating-two{
    right:-22px;
    bottom:54px;
}

.intro-strip{
    border-top:1px solid #e7ecf3;
    border-bottom:1px solid #e7ecf3;
    background:var(--navy);
}

.intro-strip p{
    margin:0;
    padding:25px 0;
    color:#d8e0ef;
    text-align:center;
    line-height:1.55;
}

.intro-strip strong{
    color:#fff;
}

.section{
    padding:78px 0;
}

.section-heading{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:48px;
    align-items:end;
    margin-bottom:34px;
}

.section-heading h2,
.process-copy h2,
.about-grid h2,
.contact-copy h2{
    margin:13px 0 0;
    color:var(--navy);
    font-size:clamp(2rem,3.3vw,3rem);
    line-height:1.05;
    letter-spacing:-.05em;
}

.section-heading p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.service-card{
    min-height:235px;
    position:relative;
    overflow:hidden;
    padding:24px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    transition:.2s ease;
}

.service-card:hover{
    transform:translateY(-3px);
    border-color:#ccd5e3;
    box-shadow:0 17px 45px rgba(15,23,42,.08);
}

.service-card.featured{
    grid-row:span 2;
    min-height:488px;
    padding:27px;
    background:
        radial-gradient(circle at 80% 15%,rgba(34,199,223,.12),transparent 28%),
        linear-gradient(160deg,#f8fbff,#fff);
}

.service-card.dark{
    border-color:var(--navy);
    background:var(--navy);
    color:#fff;
}

.service-number{
    display:inline-block;
    margin-bottom:49px;
    color:#9aa7ba;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.08em;
}

.featured .service-number{
    margin-bottom:78px;
}

.service-card h3{
    margin:0 0 11px;
    color:var(--navy);
    font-size:1.2rem;
    letter-spacing:-.025em;
}

.service-card p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
    font-size:.91rem;
}

.service-card ul{
    margin:26px 0 0;
    padding:0;
    list-style:none;
}

.service-card li{
    position:relative;
    margin:12px 0;
    padding-left:21px;
    color:#46556e;
    font-size:.86rem;
}

.service-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--green);
    font-weight:900;
}

.service-card.dark .service-number{
    color:#8190ad;
}

.service-card.dark h3{
    color:#fff;
}

.service-card.dark p{
    color:#b8c3d7;
}

.service-card.dark a{
    position:absolute;
    left:27px;
    bottom:26px;
    color:#fff;
    font-size:.84rem;
    font-weight:750;
    text-decoration:none;
}

.soft-section{
    border-top:1px solid #e8edf4;
    border-bottom:1px solid #e8edf4;
    background:var(--soft);
}

.process-layout{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:62px;
    align-items:start;
}

.process-copy{
    position:sticky;
    top:118px;
}

.process-copy p{
    max-width:510px;
    margin:21px 0 0;
    color:var(--muted);
    line-height:1.7;
}

.process-highlight{
    margin-top:26px;
    padding:20px 21px;
    border-left:3px solid var(--blue);
    background:#fff;
}

.process-highlight strong,
.process-highlight span{
    display:block;
}

.process-highlight strong{
    color:var(--navy);
    font-size:.92rem;
}

.process-highlight span{
    margin-top:4px;
    color:var(--muted);
    font-size:.85rem;
}

.process-list{
    margin:0;
    padding:0;
    list-style:none;
}

.process-list li{
    display:grid;
    grid-template-columns:62px 1fr;
    gap:17px;
    padding:29px 0;
    border-bottom:1px solid #dde4ed;
}

.process-list li:first-child{
    padding-top:0;
}

.process-list li>span{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#fff;
    color:var(--blue);
    font-size:.75rem;
    font-weight:850;
    box-shadow:0 8px 22px rgba(15,23,42,.06);
}

.process-list h3{
    margin:2px 0 7px;
    color:var(--navy);
    font-size:1rem;
}

.process-list p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:.88rem;
}

.about-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:62px;
}

.about-copy{
    padding-top:8px;
}

.about-copy p{
    margin:0 0 20px;
    color:var(--muted);
    line-height:1.75;
}

.about-copy .about-lead{
    color:#334155;
    font-size:1.02rem;
}

.about-values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:31px;
}

.about-values div{
    padding:17px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
}

.about-values strong,
.about-values span{
    display:block;
}

.about-values strong{
    color:var(--navy);
    font-size:.84rem;
}

.about-values span{
    margin-top:6px;
    color:var(--muted);
    line-height:1.45;
    font-size:.75rem;
}

.contact-section{
    padding:78px 0;
    background:
        radial-gradient(circle at 14% 15%,rgba(34,199,223,.12),transparent 24%),
        var(--navy);
}

.contact-grid{
    display:grid;
    grid-template-columns:.84fr 1.16fr;
    gap:62px;
    align-items:start;
}

.section-kicker.light{
    color:#7dd8e7;
}

.contact-copy h2{
    color:#fff;
}

.contact-copy>p{
    max-width:510px;
    margin:20px 0 0;
    color:#b8c3d7;
    line-height:1.7;
}

.contact-direct{
    display:grid;
    gap:17px;
    margin-top:39px;
}

.contact-direct a,
.contact-direct div{
    color:#fff;
    text-decoration:none;
}

.contact-direct span,
.contact-direct strong{
    display:block;
}

.contact-direct span{
    margin-bottom:4px;
    color:#7888aa;
    font-size:.7rem;
    font-weight:750;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.contact-direct strong{
    font-size:.9rem;
    font-weight:650;
}

.contact-card{
    padding:25px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 28px 80px rgba(0,0,0,.19);
}

.form-heading{
    margin-bottom:24px;
}

.form-heading strong,
.form-heading span{
    display:block;
}

.form-heading strong{
    color:var(--navy);
    font-size:1.08rem;
}

.form-heading span{
    margin-top:5px;
    color:var(--muted);
    font-size:.83rem;
}

.contact-form{
    display:grid;
    gap:17px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.contact-form label{
    color:#334155;
    font-size:.76rem;
    font-weight:700;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    margin-top:7px;
    border:1px solid #d8e0eb;
    border-radius:10px;
    background:#fff;
    color:var(--ink);
    outline:none;
}

.contact-form input,
.contact-form select{
    min-height:46px;
    padding:10px 12px;
}

.contact-form textarea{
    min-height:126px;
    padding:12px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(37,99,235,.09);
}

.privacy-check{
    display:flex;
    gap:9px;
    align-items:flex-start;
    color:var(--muted)!important;
    font-weight:500!important;
    line-height:1.45;
}

.privacy-check input{
    width:17px;
    min-height:auto;
    height:17px;
    flex:0 0 auto;
    margin:1px 0 0;
    accent-color:var(--blue);
}

.submit-button{
    width:100%;
}

.form-error{
    margin-bottom:18px;
    padding:11px 13px;
    border:1px solid #fecaca;
    border-radius:10px;
    background:#fff1f2;
    color:#b42318;
    font-size:.79rem;
    line-height:1.45;
}

.form-success{
    min-height:330px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.form-success>span{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e8f7f1;
    color:#07835c;
    font-size:1.35rem;
    font-weight:900;
}

.form-success h3{
    margin:17px 0 7px;
    color:var(--navy);
}

.form-success p{
    max-width:380px;
    margin:0;
    color:var(--muted);
    line-height:1.6;
    font-size:.88rem;
}

.honeypot{
    position:absolute!important;
    left:-10000px!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
}

.site-footer{
    padding:58px 0 24px;
    background:#071027;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .6fr .8fr;
    gap:80px;
}

.footer-brand{
    color:#fff;
}

.footer-grid>div:first-child>p{
    max-width:330px;
    margin:19px 0 0;
    color:#7f8daa;
    line-height:1.55;
    font-size:.84rem;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.footer-links strong{
    margin-bottom:5px;
    color:#fff;
    font-size:.78rem;
}

.footer-links a,
.footer-links span{
    color:#8290ab;
    font-size:.79rem;
    line-height:1.45;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid #17213b;
    color:#65728d;
    font-size:.72rem;
}

@media(max-width:1000px){
    .hero-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .hero-copy{
        max-width:790px;
    }

    .hero-visual{
        width:min(100%,620px);
        margin:0 auto;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card.featured{
        grid-row:auto;
        min-height:330px;
    }

    .featured .service-number{
        margin-bottom:49px;
    }

    .process-layout,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .process-copy{
        position:static;
    }

    .about-values{
        max-width:700px;
    }

    .contact-copy{
        max-width:650px;
    }
}

@media(max-width:760px){
    .container{
        width:min(100% - 28px,1180px);
    }

    .nav-wrap{
        min-height:70px;
    }

    .nav-toggle{
        display:block;
    }

    .main-nav{
        position:fixed;
        left:14px;
        right:14px;
        top:78px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        padding:12px;
        border:1px solid #dfe5ee;
        border-radius:16px;
        background:#fff;
        box-shadow:0 22px 60px rgba(15,23,42,.18);
    }

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

    .main-nav a{
        padding:11px 12px;
        border-radius:9px;
    }

    .main-nav .nav-cta{
        margin-top:5px;
        text-align:center;
    }

    .hero{
        padding:68px 0 66px;
    }

    .hero h1{
        font-size:clamp(2.75rem,13vw,4.4rem);
    }

    .hero-lead{
        font-size:1rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions .button{
        width:100%;
    }

    .hero-visual{
        min-height:480px;
    }

    .main-card{
        width:calc(100% - 24px);
    }

    .floating-one{
        left:0;
        top:54px;
    }

    .floating-two{
        right:0;
        bottom:55px;
    }

    .floating-card{
        max-width:235px;
    }

    .section{
        padding:75px 0;
    }

    .section-heading{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:31px;
    }

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

    .service-card,
    .service-card.featured{
        min-height:auto;
    }

    .service-number,
    .featured .service-number{
        margin-bottom:42px;
    }

    .service-card.dark{
        min-height:235px;
    }

    .process-list li{
        grid-template-columns:52px 1fr;
    }

    .about-values{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:22px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:38px;
    }
}

@media(max-width:520px){
    .brand-copy small{
        display:none;
    }

    .hero-notes{
        display:grid;
        gap:10px;
    }

    .hero-visual{
        min-height:445px;
    }

    .floating-card{
        padding:10px 11px;
    }

    .floating-card strong{
        font-size:.69rem;
    }

    .contact-section{
        padding:72px 0;
    }
}


/* Ajustes V2: hero más compacto y lectura más rápida */
.hero-copy{
    max-width:650px;
}

.hero h1 span{
    margin-top:3px;
}

.hero-visual{
    align-self:center;
}

.workflow-row strong{
    font-size:.8rem;
}

.workflow-row small{
    font-size:.69rem;
}

.service-card p{
    max-width:33rem;
}

@media(max-width:1000px){
    .hero{
        padding:56px 0 54px;
    }

    .hero-grid{
        gap:36px;
    }

    .hero-visual{
        min-height:390px;
    }
}

@media(max-width:760px){
    .hero{
        padding:48px 0 46px;
    }

    .hero h1{
        font-size:clamp(2.45rem,11vw,3.6rem);
    }

    .hero-visual{
        min-height:350px;
    }

    .floating-one,
    .floating-two{
        display:none;
    }

    .main-card{
        transform:none;
        width:100%;
    }

    .section{
        padding:62px 0;
    }
}
