:root{
    --so-dark:#050505;
    --so-gray-dark:#2e2e2e;
    --so-gray:#c9c9c9;
    --so-yellow:#ffe600;
    --so-white:#fff;
    --so-bg:#f6f7f9;
    --so-text:#151515;
    --so-muted:#647084;
    --so-border:#e5e7eb;
    --so-teal:#0bbfad;
    --so-purple:#7b4b6d;
    --so-shadow:0 20px 45px rgba(15,23,42,.10)
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth;
    background:#111;
    overflow-x:hidden
}
body{
    margin:0;
    font-family:Calibri,Arial,sans-serif;
    color:var(--so-text);
    background:#111;
    overflow-x:hidden
}
a{
    text-decoration:none;
    color:inherit
}
img{
    max-width:100%;
    display:block
}
.so-container{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto
}
.so-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(229,231,235,.9)
}
.so-header__inner{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px
}
.so-logo{
    display:flex;
    min-width:150px
}
.so-logo__img{
    height:44px;
    width:auto
}
.so-nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-weight:700;
    color:#374151
}
.so-nav>a,.so-nav__button{
    position:relative;
    transition:.2s
}
.so-nav>a:after,.so-nav__button:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-9px;
    width:0;
    height:3px;
    border-radius:999px;
    background:var(--so-yellow);
    transition:.2s
}
.so-nav>a:hover:after,.so-nav__button:hover:after{
    width:100%
}
.so-nav__item{
    position:relative
}
.so-nav__button{
    border:0;
    background:transparent;
    font:inherit;
    cursor:pointer;
    color:inherit;
    display:inline-flex;
    gap:5px;
    padding:0
}
.so-mega{
    position:fixed;
    top:74px;
    left:50%;
    transform:translateX(-50%);
    width:min(1120px,calc(100vw - 40px));
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:0 0 26px 26px;
    box-shadow:var(--so-shadow);
    padding:26px;
    display:none
}
.so-has-mega:hover .so-mega,.so-mega.active{
    display:block
}
.so-mega__head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid var(--so-border)
}
.so-mega__head strong{
    font-size:22px;
    color:#050505
}
.so-mega__head span{
    color:var(--so-muted);
    font-size:15px
}
.so-mega__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px
}
.so-mega__link{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px;
    border-radius:18px;
    transition:.2s
}
.so-mega__link:hover{
    background:#f8fafc;
    transform:translateY(-2px)
}
.so-mega__icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    flex:0 0 42px;
    border-radius:14px;
    background:rgba(255,230,0,.35);
    font-size:22px
}
.so-mega__link strong{
    display:block;
    color:#050505;
    margin-bottom:4px
}
.so-mega__link small{
    color:var(--so-muted);
    line-height:1.35
}
.so-header__actions{
    display:flex;
    align-items:center;
    gap:14px
}
.so-link-login{
    font-weight:700;
    color:#374151
}
.so-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:0;
    cursor:pointer;
    min-height:48px;
    padding:0 24px;
    border-radius:12px;
    font-size:16px;
    font-weight:800;
    transition:.2s
}
.so-btn:hover{
    transform:translateY(-2px)
}
.so-btn--dark{
    background:#050505;
    color:#fff
}
.so-btn--yellow,.so-btn--plan{
    background:var(--so-yellow);
    color:#050505;
    box-shadow:0 16px 30px rgba(255,230,0,.28)
}
.so-btn--outline{
    background:#fff;
    color:#050505;
    border:1px solid var(--so-border)
}
.so-btn--plan{
    width:100%;
    margin-top:auto
}
.so-menu-btn{
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--so-border);
    border-radius:12px;
    background:#fff;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer
}
.so-menu-btn span{
    width:22px;
    height:2px;
    background:#050505;
    border-radius:999px;
    transition:.2s
}
.so-badge,.so-section-tag{
    display:inline-flex;
    width:fit-content;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,230,0,.18);
    color:#050505;
    border:1px solid rgba(255,230,0,.7);
    font-weight:800
}
.so-section-head{
    text-align:center;
    max-width:820px;
    margin:0 auto 46px
}
.so-section-head .so-section-tag{
    margin:0 auto 16px
}
.so-section-head h2,.so-benefits__content h2,.so-cta h2,.so-module-split h2{
    margin:0;
    font-size:clamp(34px,4vw,54px);
    line-height:1.05;
    letter-spacing:-1px;
    color:#050505
}
.so-section-head p,.so-benefits__content>p,.so-cta p{
    margin:18px 0 0;
    color:var(--so-muted);
    font-size:21px;
    line-height:1.45
}
.so-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0 95px;
    background:radial-gradient(circle at top left,rgba(255,230,0,.24),transparent 28%),linear-gradient(135deg,#fff 0%,#f8f8f8 100%)
}
.so-hero:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:58%;
    height:14px;
    background:linear-gradient(90deg,var(--so-yellow),#ffc83d)
}
.so-hero__grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.04fr .96fr;
    align-items:center;
    gap:60px
}
.so-hero h1{
    margin:22px 0 20px;
    font-size:clamp(46px,6vw,82px);
    line-height:.95;
    letter-spacing:-2px;
    color:#050505
}
.so-hero h1 span{
    display:inline-block;
    position:relative;
    z-index:1
}
.so-hero h1 span:after{
    content:"";
    position:absolute;
    left:-8px;
    right:-8px;
    bottom:6px;
    height:24px;
    background:var(--so-yellow);
    z-index:-1;
    border-radius:999px;
    transform:rotate(-1deg)
}
.so-hero__text{
    max-width:650px;
    margin:0;
    font-size:22px;
    line-height:1.45;
    color:var(--so-muted)
}
.so-hero__actions,.so-module-hero__actions{
    margin-top:34px;
    display:flex;
    flex-wrap:wrap;
    gap:14px
}
.so-hero__note{
    margin-top:30px;
    display:flex;
    gap:12px;
    max-width:560px
}
.so-hero__note span{
    flex:0 0 42px;
    height:4px;
    margin-top:12px;
    background:#050505;
    border-radius:999px
}
.so-hero__note p{
    margin:0;
    color:var(--so-muted);
    font-size:17px
}
.so-hero__visual{
    position:relative;
    min-height:460px
}
.so-dashboard-card{
    background:rgba(255,255,255,.95);
    border:1px solid var(--so-border);
    border-radius:30px;
    box-shadow:var(--so-shadow);
    padding:26px
}
.so-dashboard-card--main{
    position:absolute;
    top:30px;
    right:0;
    width:min(100%,470px)
}
.so-card-top{
    display:flex;
    gap:8px;
    margin-bottom:28px
}
.so-card-top span{
    width:13px;
    height:13px;
    background:var(--so-yellow);
    border-radius:50%
}
.so-card-top span:nth-child(2){
    background:#2e2e2e
}
.so-card-top span:nth-child(3){
    background:#c9c9c9
}
.so-dashboard-title strong{
    display:block;
    font-size:32px
}
.so-dashboard-title small{
    display:block;
    color:var(--so-muted);
    font-size:16px
}
.so-dashboard-stats{
    margin-top:28px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px
}
.so-dashboard-stats div{
    padding:18px;
    border-radius:18px;
    background:#f8f8f8
}
.so-dashboard-stats strong{
    display:block;
    font-size:25px
}
.so-dashboard-stats span{
    color:var(--so-muted)
}
.so-dashboard-line{
    margin-top:28px;
    width:100%;
    height:12px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--so-yellow),#f0f0f0)
}
.so-dashboard-line.short{
    width:66%;
    margin-top:12px;
    background:linear-gradient(90deg,#050505,#f0f0f0)
}
.so-mini-grid{
    margin-top:28px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px
}
.so-mini-grid div{
    padding:15px 8px;
    text-align:center;
    border-radius:14px;
    background:#050505;
    color:#fff;
    font-weight:800;
    font-size:14px
}
.so-float-card{
    position:absolute;
    background:#fff;
    border:1px solid var(--so-border);
    box-shadow:var(--so-shadow);
    border-radius:22px;
    padding:18px 22px
}
.so-float-card strong{
    display:block;
    font-size:24px
}
.so-float-card span{
    color:var(--so-muted)
}
.so-float-card--one{
    left:10px;
    top:0
}
.so-float-card--two{
    left:0;
    bottom:30px
}
.so-area-section{
    padding:92px 0;
    background:#f1f6fb
}
.so-area-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}
.so-area-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:28px;
    padding:30px;
    min-height:410px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
    transition:.2s
}
.so-area-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--so-shadow)
}
.so-area-card__icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:20px;
    margin-bottom:18px;
    font-size:34px;
    background:rgba(255,230,0,.30)
}
.so-area-card h3{
    margin:0;
    font-size:28px;
    color:#050505
}
.so-area-card p{
    margin:12px 0 18px;
    color:var(--so-muted);
    line-height:1.45;
    font-size:17px
}
.so-area-card ul{
    padding:0;
    margin:0 0 22px;
    list-style:none;
    display:grid;
    gap:8px
}
.so-area-card li{
    position:relative;
    padding-left:22px;
    color:#344054
}
.so-area-card li:before{
    content:"▸";
    position:absolute;
    left:0;
    color:#050505;
    font-weight:900
}
.so-area-card__link{
    margin-top:auto;
    font-weight:900;
    color:#050505
}
.so-benefits,.so-industries,.so-pricing,.so-module-functions,.so-submodules,.so-related{
    padding:95px 0
}
.so-module-functions,
.so-submodules{
    background:#f8fafc;
    color:#151515
}
.so-benefits,
.so-benefits .so-section-tag,
.so-benefits h2,
.so-benefits > p,
.so-benefits__content > p,
.so-benefit-list p{
    color:#fff
}
.so-benefits .so-benefit-list div{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.18)
}
.so-benefits .so-benefit-list p{
    color:#fff
}
.so-benefits__grid{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:54px;
    align-items:center
}
.so-benefit-list{
    margin-top:30px;
    display:grid;
    gap:16px
}
.so-benefit-list div{
    display:flex;
    gap:14px;
    padding:18px;
    background:#f8f8f8;
    border-radius:18px;
    border:1px solid var(--so-border)
}
.so-benefit-list span{
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--so-yellow);
    font-weight:900
}
.so-benefit-list p{
    margin:0;
    color:#2e2e2e;
    font-size:18px
}
.so-benefits__panel{
    position:relative
}
.so-benefits__panel:before{
    content:"";
    position:absolute;
    inset:-20px;
    background:linear-gradient(135deg,rgba(255,230,0,.4),rgba(46,46,46,.07));
    border-radius:34px;
    transform:rotate(-2deg)
}
.so-speed-card{
    position:relative;
    background:#050505;
    color:#fff;
    border-radius:30px;
    padding:44px;
    box-shadow:var(--so-shadow)
}
.so-speed-card h3{
    margin:0;
    font-size:34px;
    line-height:1.1
}
.so-speed-card p{
    margin:18px 0;
    font-size:20px;
    line-height:1.45;
    color:#e5e5e5
}
.so-speed-card a{
    font-weight:900;
    color:var(--so-yellow)
}
.so-stats{
    padding:76px 0;
    background:linear-gradient(90deg,rgba(255,230,0,.2),rgba(201,201,201,.12)),#fff;
    border-top:1px solid var(--so-border);
    border-bottom:5px solid var(--so-yellow)
}
.so-stats__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
    text-align:center
}
.so-stat-icon{
    width:58px;
    height:58px;
    margin:0 auto 14px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--so-yellow);
    font-size:25px
}
.so-stat-item strong{
    display:block;
    font-size:clamp(38px,5vw,58px);
    line-height:.95;
    color:#050505
}
.so-stat-item span{
    display:block;
    margin-top:10px;
    color:var(--so-muted);
    font-size:18px
}
.so-industries__grid,.so-related__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}
.so-industry-card,.so-related-card{
    padding:34px;
    border:1px solid var(--so-border);
    border-radius:24px;
    background:#fff;
    text-align:center;
    transition:.2s
}
.so-related-card{
    text-align:left
}
.so-industry-card:hover,.so-related-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--so-shadow)
}
.so-industry-card div,.so-related-card div{
    width:68px;
    height:68px;
    display:grid;
    place-items:center;
    margin:0 auto 18px;
    border-radius:18px;
    background:#f3f3f3;
    font-size:30px
}
.so-related-card div{
    margin:0 0 18px;
    background:rgba(255,230,0,.35)
}
.so-industry-card h3,.so-related-card h3{
    margin:0 0 10px;
    font-size:24px
}
.so-industry-card p,.so-related-card p{
    margin:0;
    color:var(--so-muted);
    font-size:18px;
    line-height:1.45
}
.so-pricing{
    background:#f5f5f6;
    padding:86px 0
}
.so-section-head--pricing{
    max-width:760px;
    margin-bottom:22px
}
.so-pricing-badges{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin:0 auto 26px
}
.so-pricing-badges span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--so-border);
    color:#374151;
    font-size:14px;
    font-weight:800
}
.so-pricing-badges span:before{
    content:"✓";
    display:grid;
    place-items:center;
    width:18px;
    height:18px;
    border-radius:999px;
    background:rgba(255,230,0,.35);
    color:#050505;
    font-size:12px;
    font-weight:900
}
.so-billing-toggle{
    width:fit-content;
    margin:0 auto 42px;
    padding:7px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--so-border);
    box-shadow:0 14px 34px rgba(15,23,42,.08);
    display:flex;
    gap:6px
}
.so-billing-toggle button{
    border:0;
    min-height:42px;
    padding:0 22px;
    border-radius:999px;
    background:transparent;
    color:#374151;
    font:inherit;
    font-weight:900;
    cursor:pointer;
    transition:.2s
}
.so-billing-toggle button span{
    display:inline-flex;
    margin-left:6px;
    font-size:12px;
    font-weight:900;
    color:#111827;
    opacity:.75
}
.so-billing-toggle button.active{
    background:#050505;
    color:#fff;
    box-shadow:0 12px 22px rgba(0,0,0,.18)
}
.so-billing-toggle button.active span{
    color:#ffe600;
    opacity:1
}
.so-pricing__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:stretch
}
.so-plan-card{
    position:relative;
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:24px;
    padding:30px;
    min-height:720px;
    box-shadow:0 16px 36px rgba(15,23,42,.06)
}
.so-plan-card--featured{
    border:2px solid #050505;
    transform:translateY(-18px);
    box-shadow:0 26px 55px rgba(15,23,42,.13)
}
.so-plan-label{
    position:absolute;
    top:-19px;
    left:26px;
    right:26px;
    height:38px;
    display:grid;
    place-items:center;
    background:#050505;
    color:#fff;
    border-radius:18px 18px 0 0;
    font-size:13px;
    letter-spacing:.4px;
    text-transform:uppercase;
    font-weight:900
}
.so-plan-card__top{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:16px;
    align-items:start;
    margin-bottom:20px
}
.so-plan-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(255,230,0,.32);
    font-size:30px
}
.so-plan-card h3{
    margin:0;
    font-size:26px;
    letter-spacing:-.4px;
    color:#050505
}
.so-plan-card__top p{
    margin:8px 0 0;
    color:#4b5563;
    font-size:15px;
    line-height:1.45
}
.so-price{
    display:flex;
    align-items:flex-end;
    gap:7px;
    margin:8px 0 8px;
    min-height:62px
}
.so-price span{
    font-size:22px;
    font-weight:900;
    margin-bottom:10px
}
.so-price strong{
    font-size:54px;
    line-height:.9;
    letter-spacing:-1.8px;
    color:#050505
}
.so-price small{
    color:#4b5563;
    font-size:15px;
    font-weight:800;
    margin-bottom:9px
}
.so-plan-billing-note{
    min-height:40px;
    margin:0 0 18px;
    color:#647084;
    font-size:14px;
    line-height:1.35
}
.so-plan-card .so-btn--plan{
    margin:0 0 22px;
    min-height:48px;
    border-radius:12px
}
.so-plan-card--featured .so-btn--plan{
    background:#050505;
    color:#fff;
    box-shadow:0 18px 34px rgba(0,0,0,.18)
}
.so-plan-includes{
    padding-top:18px;
    margin-bottom:12px;
    border-top:1px solid var(--so-border);
    color:#111827;
    font-weight:900;
    line-height:1.35
}
.so-plan-modules{
    display:grid;
    gap:10px
}
.so-plan-module{
    border:1px solid #e8e8ef;
    border-radius:14px;
    background:#fbfbfc;
    overflow:hidden
}
.so-plan-module summary{
    list-style:none;
    min-height:46px;
    padding:0 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    cursor:pointer;
    color:#111827;
    font-size:15px;
    font-weight:900
}
.so-plan-module summary::-webkit-details-marker{
    display:none
}
.so-plan-module summary b{
    display:grid;
    place-items:center;
    width:24px;
    height:24px;
    flex:0 0 24px;
    border-radius:999px;
    background:rgba(255,230,0,.42);
    color:#050505;
    font-size:18px;
    line-height:1;
    transition:.2s
}
.so-plan-module[open] summary b{
    transform:rotate(45deg);
    background:#050505;
    color:#fff
}
.so-plan-module ul{
    list-style:none;
    padding:2px 16px 16px;
    margin:0;
    display:grid;
    gap:9px
}
.so-plan-module li{
    position:relative;
    padding-left:22px;
    color:#374151;
    font-size:14px;
    line-height:1.35
}
.so-plan-module li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#050505;
    font-weight:900
}
.so-service-blocks{
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:24px;
    margin-top:36px
}
.so-implementation-card,.so-conditions-card{
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:26px;
    padding:32px;
    box-shadow:0 16px 34px rgba(15,23,42,.06)
}
.so-card-eyebrow{
    display:inline-flex;
    width:fit-content;
    margin-bottom:12px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,230,0,.22);
    border:1px solid rgba(255,230,0,.7);
    font-size:13px;
    font-weight:900;
    color:#050505
}
.so-implementation-card h3,.so-conditions-card h3{
    margin:0 0 18px;
    color:#050505;
    font-size:clamp(28px,3vw,40px);
    line-height:1.05;
    letter-spacing:-.6px;
    text-transform:uppercase
}
.so-implementation-price{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px;
    margin-bottom:18px;
    border-radius:18px;
    background:#f5f5f6;
    border:1px solid var(--so-border)
}
.so-implementation-price small{
    color:#4b5563;
    font-size:15px;
    font-weight:900
}
.so-implementation-price strong{
    color:#050505;
    font-size:30px;
    font-weight:900
}
.so-implementation-card p{
    margin:0 0 10px;
    font-weight:900
}
.so-implementation-card ul,.so-conditions-list,.so-payment-summary ul{
    margin:0;
    padding-left:20px;
    color:#374151;
    line-height:1.55
}
.so-implementation-card li,.so-conditions-list li,.so-payment-summary li{
    margin:6px 0
}
.so-conditions-text{
    margin:18px 0 20px;
    color:#111827;
    font-weight:800;
    line-height:1.45
}
.so-payment-summary{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px
}
.so-payment-summary div{
    padding:18px;
    border-radius:18px;
    background:#f5f5f6;
    border:1px solid var(--so-border)
}
.so-payment-summary h4{
    margin:0 0 10px;
    color:#050505;
    font-size:17px
}
.so-module-hero{
    padding:80px 0 70px;
    background:radial-gradient(circle at top right,rgba(255,230,0,.18),transparent 32%),linear-gradient(180deg,#fff 0%,#f8fafc 100%);
    overflow:hidden
}
.so-module-hero__grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    align-items:center;
    gap:54px
}
.so-back-link{
    display:inline-flex;
    margin-bottom:18px;
    font-weight:900;
    color:var(--so-purple)
}
.so-module-hero h1{
    margin:22px 0 18px;
    font-size:clamp(42px,5vw,74px);
    line-height:1;
    letter-spacing:-2px
}
.so-module-hero h1 span{
    display:inline-block;
    color:var(--so-teal)
}
.so-module-hero p{
    color:var(--so-muted);
    line-height:1.48;
    font-size:22px;
    margin:0
}
.so-module-note{
    margin-top:28px;
    padding:18px 20px;
    border-left:5px solid var(--so-yellow);
    background:#fff;
    border-radius:16px;
    color:#344054;
    box-shadow:0 12px 30px rgba(15,23,42,.06)
}
.so-module-demo{
    position:relative
}
.so-module-demo:before{
    content:"";
    position:absolute;
    inset:50px -20px -20px 40px;
    background:rgba(255,230,0,.26);
    border-radius:34px;
    transform:rotate(3deg)
}
.so-ui-window{
    position:relative;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:28px;
    box-shadow:var(--so-shadow);
    overflow:hidden
}
.so-ui-top{
    height:58px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 18px;
    border-bottom:1px solid var(--so-border);
    background:#fbfcfd
}
.so-ui-top span{
    width:12px;
    height:12px;
    border-radius:999px;
    background:var(--so-yellow)
}
.so-ui-top span:nth-child(2){
    background:#2e2e2e
}
.so-ui-top span:nth-child(3){
    background:#c9c9c9
}
.so-ui-top strong{
    margin-left:12px
}
.so-ui-body{
    display:grid;
    grid-template-columns:170px 1fr;
    min-height:360px
}
.so-ui-sidebar{
    padding:20px;
    background:#f8fafc;
    border-right:1px solid var(--so-border);
    display:flex;
    flex-direction:column;
    gap:12px
}
.so-ui-avatar{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(255,230,0,.35);
    font-size:28px;
    margin-bottom:8px
}
.so-ui-sidebar span{
    height:14px;
    font-size:12px;
    color:#475467;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis
}
.so-ui-content{
    padding:22px
}
.so-ui-search{
    height:42px;
    width:70%;
    border-radius:12px;
    background:#f1f5f9;
    margin-bottom:20px
}
.so-ui-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:22px
}
.so-ui-stats div{
    padding:16px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--so-border)
}
.so-ui-stats strong{
    display:block;
    font-size:22px;
    color:#050505
}
.so-ui-stats small{
    color:var(--so-muted)
}
.so-ui-table{
    display:grid;
    gap:10px
}
.so-ui-table div{
    height:18px;
    border-radius:999px;
    background:linear-gradient(90deg,#e2e8f0,#f8fafc)
}
.so-module-stats{
    padding:34px 0;
    background:#050505;
    color:#fff
}
.so-module-stats__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    text-align:center
}
.so-module-stats strong{
    display:block;
    font-size:44px;
    color:var(--so-yellow)
}
.so-module-stats span{
    color:#e5e7eb
}
.so-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px
}
.so-feature-card{
    padding:28px;
    border-radius:24px;
    border:1px solid var(--so-border);
    background:#fff;
    box-shadow:0 12px 30px rgba(15,23,42,.05)
}
.so-feature-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(255,230,0,.35);
    font-size:28px;
    margin-bottom:16px
}
.so-feature-card h3{
    margin:0 0 10px;
    font-size:22px
}
.so-feature-card p{
    margin:0;
    color:var(--so-muted);
    line-height:1.45;
    font-size:17px
}
.so-module-split{
    padding:90px 0;
    background:#f8fafc
}
.so-module-split__grid{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:44px;
    align-items:start
}
.so-module-split .so-section-tag{
    margin-bottom:18px
}
.so-workflow{
    margin-top:30px;
    display:grid;
    gap:14px
}
.so-workflow div{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:18px
}
.so-workflow span{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--so-yellow);
    font-weight:900
}
.so-workflow strong{
    font-size:20px
}
.so-benefit-box{
    padding:34px;
    border-radius:28px;
    background:#050505;
    color:#fff;
    box-shadow:var(--so-shadow)
}
.so-benefit-box h3{
    margin:0 0 20px;
    font-size:32px
}
.so-benefit-box ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:15px
}
.so-benefit-box li{
    position:relative;
    padding-left:28px;
    color:#e5e7eb;
    line-height:1.45;
    font-size:18px
}
.so-benefit-box li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--so-yellow);
    font-weight:900
}
.so-submodule-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px
}
.so-submodule-grid div{
    padding:18px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--so-border);
    font-weight:800;
    color:#344054
}
.so-related{
    background:#f8fafc
}
.so-related-card span{
    display:inline-flex;
    margin-top:16px;
    font-weight:900
}
.so-cta{
    padding:90px 0;
    background:#050505;
    color:#fff
}
.so-cta__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px
}
.so-cta .so-section-tag{
    background:rgba(255,230,0,.14);
    color:var(--so-yellow)
}
.so-cta h2{
    color:#fff;
    margin-top:18px
}
.so-cta p{
    color:#d5d5d5
}
.so-cta--module{
    border-top:5px solid var(--so-yellow)
}
.so-footer{
    background:#111;
    color:#fff;
    padding-top:70px
}
.so-footer__grid{
    display:grid;
    grid-template-columns:1.5fr .8fr .8fr 1fr;
    gap:42px
}
.so-footer__logo{
    display:inline-block;
    font-size:34px;
    font-weight:900;
    position:relative;
    margin-bottom:18px
}
.so-footer__logo:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:70%;
    height:5px;
    background:var(--so-yellow);
    border-radius:999px
}
.so-footer__brand p,.so-footer__col p{
    color:#cfcfcf;
    line-height:1.5;
    font-size:17px
}
.so-footer__col{
    display:flex;
    flex-direction:column;
    gap:10px
}
.so-footer__col h4{
    margin:0 0 12px;
    font-size:20px;
    color:var(--so-yellow)
}
.so-footer__col a{
    color:#d9d9d9
}
.so-footer__whatsapp{
    font-weight:900;
    color:var(--so-yellow)!important
}
.so-footer__bottom{
    margin-top:54px;
    border-top:1px solid rgba(255,255,255,.12);
    background:#111
}
.so-footer__bottom-inner{
    min-height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    color:#cfcfcf
}
.so-floating-wsp{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:999;
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    background:#22c55e;
    color:#fff;
    border-radius:12px 0 0 12px;
    font-size:22px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(34,197,94,.35)
}
.so-notfound{
    padding:120px 0;
    text-align:center
}
@media(max-width:1100px){
    .so-header__actions{
        display:none
    }
    .so-area-grid,.so-industries__grid,.so-related__grid{
        grid-template-columns:repeat(2,1fr)
    }
    .so-feature-grid,.so-submodule-grid{
        grid-template-columns:repeat(2,1fr)
    }
    .so-hero__grid,.so-benefits__grid,.so-pricing__grid,.so-footer__grid,.so-module-hero__grid,.so-module-split__grid{
        grid-template-columns:1fr
    }
    .so-hero__visual{
        min-height:420px
    }
    .so-dashboard-card--main{
        left:50%;
        right:auto;
        transform:translateX(-50%)
    }
    .so-plan-card--featured{
        transform:none
    }
    .so-mega__grid{
        grid-template-columns:repeat(2,1fr)
    }
}
@media(max-width:780px){
    .so-container{
        width:min(100% - 28px,1180px)
    }
    .so-header__inner{
        min-height:68px
    }
    .so-menu-btn{
        display:flex
    }
    .so-nav{
        position:fixed;
        top:68px;
        left:14px;
        right:14px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:#fff;
        border:1px solid var(--so-border);
        border-radius:18px;
        box-shadow:var(--so-shadow);
        padding:12px;
        max-height:calc(100vh - 90px);
        overflow-y:auto
    }
    .so-nav.active{
        display:flex
    }
    .so-nav>a,.so-nav__button{
        width:100%;
        padding:14px;
        border-radius:12px;
        text-align:left
    }
    .so-nav>a:after,.so-nav__button:after{
        display:none
    }
    .so-mega{
        position:static;
        transform:none;
        width:100%;
        box-shadow:none;
        border-radius:16px;
        margin-top:6px;
        padding:14px
    }
    .so-has-mega:hover .so-mega{
        display:none
    }
    .so-mega.active{
        display:block
    }
    .so-mega__head{
        display:block
    }
    .so-mega__grid{
        grid-template-columns:1fr
    }
    .so-menu-btn.active span:nth-child(1){
        transform:translateY(7px) rotate(45deg)
    }
    .so-menu-btn.active span:nth-child(2){
        opacity:0
    }
    .so-menu-btn.active span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg)
    }
    .so-hero,.so-module-hero{
        padding:62px 0 70px
    }
    .so-hero h1,.so-module-hero h1{
        letter-spacing:-1px
    }
    .so-hero__text,.so-module-hero p{
        font-size:19px
    }
    .so-hero__actions,.so-module-hero__actions{
        flex-direction:column
    }
    .so-btn{
        width:100%
    }
    .so-hero__visual{
        min-height:auto;
        padding-top:20px
    }
    .so-dashboard-card--main,.so-float-card{
        position:relative;
        inset:auto;
        transform:none;
        width:100%;
        margin-top:16px
    }
    .so-dashboard-stats,.so-mini-grid,.so-area-grid,.so-stats__grid,.so-industries__grid,.so-feature-grid,.so-submodule-grid,.so-related__grid,.so-module-stats__grid{
        grid-template-columns:1fr
    }
    .so-ui-body{
        grid-template-columns:1fr
    }
    .so-ui-sidebar{
        border-right:0;
        border-bottom:1px solid var(--so-border)
    }
    .so-ui-stats{
        grid-template-columns:1fr
    }
    .so-benefits,.so-area-section,.so-industries,.so-pricing,.so-cta,.so-module-functions,.so-submodules,.so-related,.so-module-split{
        padding:68px 0
    }
    .so-speed-card{
        padding:30px
    }
    .so-cta__inner{
        flex-direction:column;
        align-items:stretch
    }
    .so-footer__bottom-inner{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:18px 0
    }
}
@media(max-width:480px){
    .so-logo__img{
        height:38px
    }
    .so-hero h1,.so-module-hero h1{
        font-size:42px
    }
    .so-hero h1 span:after{
        height:16px;
        bottom:3px
    }
    .so-section-head h2,.so-benefits__content h2,.so-cta h2,.so-module-split h2{
        font-size:34px
    }
    .so-section-head p,.so-benefits__content>p,.so-cta p{
        font-size:18px
    }
    .so-price strong{
        font-size:52px
    }
    .so-floating-wsp{
        width:44px;
        height:44px;
        right:0;
        top:50%;
        transform:translateY(-50%);
        border-radius:10px 0 0 10px
    }
}
/* =========================================================
   DROPDOWN DE MÓDULOS EN HEADER
   ========================================================= */

.so-nav-dropdown {
    position: relative;
}

.so-nav-dropdown__btn {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.so-nav-dropdown__btn span {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.so-nav-dropdown.active .so-nav-dropdown__btn span {
    transform: rotate(180deg);
}

.so-nav-dropdown__menu {
    position: fixed;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, calc(100vw - 40px));
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    padding: 26px;
    z-index: 1200;
    display: none;
}

.so-nav-dropdown.active .so-nav-dropdown__menu {
    display: block;
}

.so-nav-dropdown__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.so-nav-dropdown__head strong {
    display: block;
    font-size: 22px;
    color: #050505;
    margin-bottom: 4px;
}

.so-nav-dropdown__head small {
    display: block;
    color: #647084;
    font-size: 15px;
}

.so-nav-dropdown__all {
    font-weight: 900;
    color: #050505;
    white-space: nowrap;
}

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

.so-nav-dropdown__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border-radius: 18px;
    color: #1f2937;
    transition: background 0.2s ease, transform 0.2s ease;
}

.so-nav-dropdown__item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.so-nav-dropdown__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 230, 0, 0.35);
    font-size: 23px;
}

.so-nav-dropdown__text strong {
    display: block;
    font-size: 17px;
    color: #050505;
    margin-bottom: 4px;
}

.so-nav-dropdown__text small {
    display: block;
    color: #647084;
    font-size: 14px;
    line-height: 1.35;
}

/* Corrige estilos del nav para que el botón se vea igual que los enlaces */
.so-nav > .so-nav-dropdown {
    display: inline-flex;
    align-items: center;
}

.so-nav > .so-nav-dropdown .so-nav-dropdown__btn {
    position: relative;
}

.so-nav > .so-nav-dropdown .so-nav-dropdown__btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--so-yellow);
    transition: width 0.2s ease;
}

.so-nav > .so-nav-dropdown .so-nav-dropdown__btn:hover::after,
.so-nav > .so-nav-dropdown.active .so-nav-dropdown__btn::after {
    width: 100%;
}

/* RESPONSIVE DROPDOWN */

@media (max-width: 1100px) {
    .so-nav-dropdown__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .so-nav-dropdown {
        width: 100%;
        display: block;
    }

    .so-nav > .so-nav-dropdown {
        display: block;
        width: 100%;
    }

    .so-nav-dropdown__btn {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        justify-content: space-between;
        text-align: left;
    }

    .so-nav-dropdown__btn:hover {
        background: #f8f8f8;
    }

    .so-nav > .so-nav-dropdown .so-nav-dropdown__btn::after {
        display: none;
    }

    .so-nav-dropdown__menu {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 16px;
        box-shadow: none;
        padding: 14px;
        margin-top: 6px;
        border: 1px solid #e5e7eb;
    }

    .so-nav-dropdown__head {
        display: block;
    }

    .so-nav-dropdown__all {
        display: inline-flex;
        margin-top: 10px;
    }

    .so-nav-dropdown__grid {
        grid-template-columns: 1fr;
    }

    .so-nav-dropdown__item {
        padding: 14px;
    }
}
/* AUTH / LOGIN / REGISTER */
.so-auth{
    min-height:calc(100vh - 74px);
    background:linear-gradient(135deg,#fff 0%,#f6f7f9 55%,rgba(255,230,0,.18) 100%);
    padding:86px 0 96px;
}
.so-auth__grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:42px;
    align-items:start;
}
.so-auth__intro h1{
    margin:20px 0 18px;
    font-size:clamp(42px,5vw,68px);
    line-height:.96;
    letter-spacing:-2px;
    color:#050505;
}
.so-auth__intro h1 span{
    position:relative;
    display:inline-block;
    z-index:1;
}
.so-auth__intro h1 span:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:5px;
    height:18px;
    background:var(--so-yellow);
    z-index:-1;
    border-radius:999px;
}
.so-auth__intro p{
    margin:0;
    color:var(--so-muted);
    font-size:19px;
    line-height:1.55;
    max-width:560px;
}
.so-auth__logo-box{
    margin-top:30px;
    padding:22px;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:24px;
    box-shadow:var(--so-shadow);
    max-width:360px;
}
.so-auth__logo-img{
    max-height:70px;
    width:auto;
    object-fit:contain;
    margin-bottom:12px;
}
.so-auth__logo-box small{
    color:var(--so-muted);
    line-height:1.4;
}
.so-auth__cards{
    display:grid;
    gap:18px;
}
.so-auth-card{
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:28px;
    box-shadow:var(--so-shadow);
    padding:28px;
}
.so-auth-card--register{
    border-top:5px solid var(--so-yellow);
}
.so-auth-card__head{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:22px;
}
.so-auth-card__head span{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#050505;
    color:var(--so-yellow);
    font-weight:900;
    flex:0 0 44px;
}
.so-auth-card__head h2{
    margin:0 0 5px;
    font-size:28px;
    color:#050505;
}
.so-auth-card__head p{
    margin:0;
    color:var(--so-muted);
    line-height:1.4;
}
.so-auth-form{
    display:grid;
    gap:16px;
}
.so-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.so-form-group{
    display:grid;
    gap:8px;
}
.so-form-group label{
    font-weight:900;
    color:#111827;
    font-size:15px;
}
.so-form-group input{
    width:100%;
    height:50px;
    border:1px solid var(--so-border);
    border-radius:14px;
    padding:0 15px;
    font:inherit;
    color:#111827;
    background:#fff;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}
.so-form-group input:focus{
    border-color:#050505;
    box-shadow:0 0 0 4px rgba(255,230,0,.35);
}
.so-auth-alert{
    padding:14px 16px;
    border-radius:16px;
    font-weight:800;
    line-height:1.4;
    border:1px solid transparent;
}
.so-auth-alert--error{
    background:#fff1f2;
    color:#991b1b;
    border-color:#fecdd3;
}
.so-auth-alert--ok{
    background:#ecfdf5;
    color:#065f46;
    border-color:#bbf7d0;
}

/* ADMIN LOGIN */
.so-admin-body{
    background:#050505;
}
.so-admin-login{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:32px 16px;
    background:radial-gradient(circle at top left,rgba(255,230,0,.22),transparent 34%),#050505;
}
.so-admin-card{
    width:min(460px,100%);
    background:#fff;
    border-radius:30px;
    padding:34px;
    box-shadow:0 30px 80px rgba(0,0,0,.36);
}
.so-admin-card__logo{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:64px;
    margin-bottom:18px;
}
.so-admin-card__logo img{
    max-height:64px;
    width:auto;
    object-fit:contain;
}
.so-admin-card h1{
    margin:18px 0 10px;
    font-size:42px;
    line-height:1;
    color:#050505;
}
.so-admin-card p{
    margin:0 0 22px;
    color:var(--so-muted);
    line-height:1.5;
}

/* FOOTER LOGOS + HIDDEN ADMIN ENTRY */
.so-footer__logos{
    position:relative;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:18px;
    min-height:54px;
}
.so-footer__logo-img{
    max-height:54px;
    width:auto;
    object-fit:contain;
}
.so-footer__admin-hidden{
    position:absolute;
    left:0;
    bottom:-10px;
    width:18px;
    height:18px;
    border-radius:50%;
    opacity:.02;
    background:var(--so-yellow);
    cursor:pointer;
}
.so-footer__admin-hidden:focus{
    opacity:1;
    outline:2px solid var(--so-yellow);
    outline-offset:3px;
}

@media(max-width:1100px){
    .so-auth__grid{
        grid-template-columns:1fr;
    }
    .so-auth__logo-box{
        max-width:100%;
    }
}
@media(max-width:780px){
    .so-auth{
        padding:58px 0 70px;
    }
    .so-auth-card,.so-admin-card{
        padding:24px;
        border-radius:24px;
    }
    .so-form-grid{
        grid-template-columns:1fr;
    }
    .so-auth__intro h1{
        font-size:42px;
    }
}
@media(max-width:1100px){
    .so-service-blocks{
        grid-template-columns:1fr
    }
    .so-plan-card--featured{
        transform:none
    }
}
@media(max-width:780px){
    .so-pricing{
        padding:68px 0
    }
    .so-billing-toggle{
        width:100%;
        justify-content:center
    }
    .so-billing-toggle button{
        flex:1;
        padding:0 12px
    }
    .so-billing-toggle button span{
        display:block;
        margin-left:0;
        margin-top:2px
    }
    .so-plan-card{
        min-height:auto;
        padding:26px
    }
    .so-plan-card__top{
        grid-template-columns:1fr
    }
    .so-payment-summary{
        grid-template-columns:1fr
    }
    .so-implementation-card,.so-conditions-card{
        padding:26px
    }
}
@media(max-width:480px){
    .so-price strong{
        font-size:46px
    }
    .so-price{
        align-items:flex-start;
        flex-direction:column;
        gap:2px
    }
    .so-price span,.so-price small{
        margin-bottom:0
    }
    .so-implementation-price{
        align-items:flex-start;
        flex-direction:column
    }
}

/* TRANSICIONES MODERNAS Y ANIMACIONES SUAVES */
html{
    scroll-behavior:smooth;
    scroll-padding-top:96px;
}
section[id],footer[id],[id]{
    scroll-margin-top:96px;
}
.so-header{
    transition:background-color .28s ease,box-shadow .28s ease,border-color .28s ease,backdrop-filter .28s ease;
}
.so-header.so-header--scrolled{
    background:rgba(255,255,255,.985);
    border-bottom-color:rgba(229,231,235,1);
    box-shadow:0 14px 34px rgba(15,23,42,.10);
}
.so-reveal{
    opacity:0;
    translate:0 22px;
    scale:1;
    filter:blur(2px);
    transition:opacity .72s cubic-bezier(.22,1,.36,1),translate .72s cubic-bezier(.22,1,.36,1),scale .72s cubic-bezier(.22,1,.36,1),filter .72s cubic-bezier(.22,1,.36,1);
    transition-delay:var(--so-reveal-delay,0ms);
    will-change:opacity,translate,scale,filter;
}
.so-reveal--fade-in{
    translate:0 0;
}
.so-reveal--zoom{
    translate:0 14px;
    scale:.975;
}
.so-reveal.is-visible{
    opacity:1;
    translate:0 0;
    scale:1;
    filter:blur(0);
}
.so-btn,
.so-link-login,
.so-nav>a,
.so-nav__button,
.so-nav-dropdown__btn,
.so-nav-dropdown__all,
.so-footer__col a,
.so-area-card,
.so-industry-card,
.so-related-card,
.so-plan-card,
.so-implementation-card,
.so-conditions-card,
.so-feature-card,
.so-auth-card,
.so-auth__logo-box,
.so-benefit-list div,
.so-workflow div,
.so-submodule-grid div,
.so-payment-summary div,
.so-dashboard-card,
.so-float-card,
.so-ui-window,
.so-speed-card,
.so-billing-toggle,
.so-billing-toggle button,
.so-pricing-badges span,
.so-plan-module,
.so-plan-module summary,
.so-plan-icon,
.so-area-card__icon,
.so-feature-icon,
.so-stat-icon,
.so-floating-wsp,
.so-footer__logo-img,
.so-logo__img{
    transition:background-color .24s ease,border-color .24s ease,color .24s ease,box-shadow .24s ease,opacity .24s ease,translate .24s ease,scale .24s ease,transform .24s ease,filter .24s ease;
}
.so-btn:hover{
    transform:none;
    translate:0 -3px;
    scale:1.01;
}
.so-floating-wsp:hover{
    translate:0 -3px;
    scale:1.02;
}
.so-btn--dark:hover,
.so-btn--outline:hover,
.so-plan-card--featured .so-btn--plan:hover{
    box-shadow:0 18px 36px rgba(0,0,0,.18);
}
.so-btn--yellow:hover,
.so-btn--plan:hover{
    box-shadow:0 20px 38px rgba(255,230,0,.34);
}
.so-link-login:hover,
.so-nav>a:hover,
.so-nav__button:hover,
.so-nav-dropdown__btn:hover,
.so-nav-dropdown__all:hover,
.so-footer__col a:hover,
.so-area-card__link:hover,
.so-speed-card a:hover,
.so-related-card span:hover{
    opacity:.82;
}
.so-area-card:hover,
.so-industry-card:hover,
.so-related-card:hover,
.so-plan-card:hover,
.so-implementation-card:hover,
.so-conditions-card:hover,
.so-feature-card:hover,
.so-auth-card:hover,
.so-auth__logo-box:hover,
.so-benefit-list div:hover,
.so-workflow div:hover,
.so-submodule-grid div:hover,
.so-payment-summary div:hover{
    translate:0 -5px;
    box-shadow:0 22px 46px rgba(15,23,42,.11);
}
.so-dashboard-card:hover,
.so-float-card:hover,
.so-ui-window:hover,
.so-speed-card:hover{
    translate:0 -4px;
    box-shadow:0 26px 55px rgba(15,23,42,.13);
}
.so-nav-dropdown__item:hover,
.so-mega__link:hover{
    transform:none;
    translate:0 -3px;
}
.so-pricing-badges span:hover{
    translate:0 -2px;
    box-shadow:0 12px 24px rgba(15,23,42,.07);
}
.so-billing-toggle:hover{
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}
.so-billing-toggle button:hover{
    background:#f8f8f8;
}
.so-billing-toggle button.active:hover{
    background:#050505;
}
.so-plan-module:hover{
    border-color:#d8dbe2;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.so-plan-module summary:hover{
    background:#fff;
}
.so-plan-module[open]{
    background:#fff;
    border-color:#d8dbe2;
    box-shadow:0 12px 26px rgba(15,23,42,.07);
}
.so-plan-module[open] ul{
    animation:soDetailsIn .24s ease both;
}
@keyframes soDetailsIn{
    from{
        opacity:0;
        translate:0 -6px;
    }
    to{
        opacity:1;
        translate:0 0;
    }
}
.so-plan-card:hover .so-plan-icon,
.so-area-card:hover .so-area-card__icon,
.so-feature-card:hover .so-feature-icon,
.so-stat-item:hover .so-stat-icon{
    scale:1.04;
}
.so-footer__logo-img:hover,
.so-logo__img:hover{
    scale:1.02;
}
.so-form-group input:hover{
    border-color:#d1d5db;
}
.so-form-group input:focus{
    translate:0 -1px;
}
.so-menu-btn:hover{
    box-shadow:0 12px 24px rgba(15,23,42,.10);
}
.so-floating-wsp:hover{
    box-shadow:0 20px 42px rgba(34,197,94,.40);
}
.so-btn:focus-visible,
.so-nav a:focus-visible,
.so-nav__button:focus-visible,
.so-nav-dropdown__btn:focus-visible,
.so-nav-dropdown__item:focus-visible,
.so-nav-dropdown__all:focus-visible,
.so-footer__col a:focus-visible,
.so-floating-wsp:focus-visible,
.so-plan-module summary:focus-visible,
.so-billing-toggle button:focus-visible{
    outline:3px solid rgba(255,230,0,.72);
    outline-offset:4px;
}
@media(max-width:780px){
    html{
        scroll-padding-top:86px;
    }
    section[id],footer[id],[id]{
        scroll-margin-top:86px;
    }
    .so-area-card:hover,
    .so-industry-card:hover,
    .so-related-card:hover,
    .so-plan-card:hover,
    .so-implementation-card:hover,
    .so-conditions-card:hover,
    .so-feature-card:hover,
    .so-auth-card:hover,
    .so-auth__logo-box:hover,
    .so-benefit-list div:hover,
    .so-workflow div:hover,
    .so-submodule-grid div:hover,
    .so-payment-summary div:hover,
    .so-dashboard-card:hover,
    .so-float-card:hover,
    .so-ui-window:hover,
    .so-speed-card:hover{
        translate:0 -3px;
    }
}

.so-plan-modules{
    perspective:900px;
}
.so-plan-module{
    position:relative;
    isolation:isolate;
    transform-origin:center top;
}
.so-plan-module::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;
    opacity:0;
    border-radius:inherit;
    background:linear-gradient(135deg,rgba(255,230,0,.18),rgba(255,255,255,0) 58%);
    translate:-12px 0;
    transition:opacity .32s ease,translate .38s cubic-bezier(.22,1,.36,1);
}
.so-plan-module:hover::before,
.so-plan-module[open]::before{
    opacity:1;
    translate:0 0;
}
.so-plan-module.js-plan-module{
    transition:height .38s cubic-bezier(.22,1,.36,1),background-color .24s ease,border-color .24s ease,box-shadow .24s ease,translate .24s ease,transform .24s ease;
}
.so-plan-module.is-opening,
.so-plan-module.is-closing{
    will-change:height;
}
.so-plan-module summary{
    position:relative;
    overflow:hidden;
    user-select:none;
}
.so-plan-module summary::before{
    content:"";
    position:absolute;
    left:14px;
    right:48px;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg,rgba(255,230,0,.85),rgba(255,230,0,0));
    opacity:0;
    scale:.72 1;
    transform-origin:left center;
    transition:opacity .28s ease,scale .34s cubic-bezier(.22,1,.36,1);
}
.so-plan-module summary::after{
    content:"";
    position:absolute;
    left:var(--tap-x,50%);
    top:var(--tap-y,50%);
    width:18px;
    height:18px;
    border-radius:999px;
    background:rgba(255,230,0,.36);
    opacity:0;
    translate:-50% -50%;
    scale:0;
    pointer-events:none;
}
.so-plan-module summary.is-tapping::after{
    animation:soModuleRipple .58s ease-out both;
}
.so-plan-module:hover summary::before,
.so-plan-module[open] summary::before{
    opacity:1;
    scale:1 1;
}
.so-plan-module summary b{
    position:relative;
    box-shadow:0 0 0 rgba(255,230,0,0);
}
.so-plan-module summary:hover b{
    scale:1.08;
    box-shadow:0 8px 18px rgba(255,230,0,.26);
}
.so-plan-module[open]{
    animation:soModuleSettle .34s cubic-bezier(.22,1,.36,1) both;
}
.so-plan-module[open] summary b{
    animation:soModuleIconPulse .48s cubic-bezier(.22,1,.36,1) both;
}
.so-plan-module[open] ul{
    transform-origin:top center;
    animation:soModulePanelIn .36s cubic-bezier(.22,1,.36,1) both;
}
.so-plan-module[open] li{
    opacity:0;
    translate:0 -5px;
    animation:soModuleItemIn .34s cubic-bezier(.22,1,.36,1) both;
    animation-delay:var(--module-item-delay,0ms);
}
.so-plan-card:hover .so-plan-module:not([open]) summary b{
    animation:soModuleHint .95s ease-in-out infinite;
}
@keyframes soModuleSettle{
    0%{
        transform:translateY(-2px) scale(.995);
    }
    100%{
        transform:translateY(0) scale(1);
    }
}
@keyframes soModulePanelIn{
    0%{
        opacity:0;
        translate:0 -10px;
        scale:1 .96;
        filter:blur(2px);
    }
    100%{
        opacity:1;
        translate:0 0;
        scale:1 1;
        filter:blur(0);
    }
}
@keyframes soModuleItemIn{
    0%{
        opacity:0;
        translate:0 -5px;
    }
    100%{
        opacity:1;
        translate:0 0;
    }
}
@keyframes soModuleIconPulse{
    0%{
        scale:1;
    }
    50%{
        scale:1.13;
    }
    100%{
        scale:1;
    }
}
@keyframes soModuleHint{
    0%,100%{
        translate:0 0;
    }
    50%{
        translate:0 -1px;
    }
}
@keyframes soModuleRipple{
    0%{
        opacity:.38;
        scale:0;
    }
    100%{
        opacity:0;
        scale:18;
    }
}


.so-js-enabled .so-module-hero__content > .so-back-link,
.so-js-enabled .so-module-hero__content > .so-section-tag,
.so-js-enabled .so-module-hero__content > h1,
.so-js-enabled .so-module-hero__content > p,
.so-js-enabled .so-module-hero__actions,
.so-js-enabled .so-module-note{
    opacity:0;
    transform:translate3d(0,24px,0);
    filter:blur(4px);
}
.so-js-enabled body.so-module-page-ready .so-module-hero__content > .so-back-link,
.so-js-enabled body.so-module-page-ready .so-module-hero__content > .so-section-tag,
.so-js-enabled body.so-module-page-ready .so-module-hero__content > h1,
.so-js-enabled body.so-module-page-ready .so-module-hero__content > p,
.so-js-enabled body.so-module-page-ready .so-module-hero__actions,
.so-js-enabled body.so-module-page-ready .so-module-note{
    animation:soModuleHeroContentIn .78s cubic-bezier(.22,1,.36,1) both;
    animation-delay:var(--module-load-delay,0ms);
}
.so-module-hero__actions .so-btn{
    position:relative;
    overflow:hidden;
}
.so-module-hero__actions .so-btn::after{
    content:"";
    position:absolute;
    inset:-40% auto -40% -55%;
    width:40%;
    background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.34),rgba(255,255,255,0));
    transform:skewX(-18deg);
    opacity:0;
    pointer-events:none;
}
.so-module-hero__actions .so-btn:hover::after{
    animation:soModuleButtonSheen .72s ease both;
}
.so-module-demo::before{
    transform-origin:center;
}
.so-js-enabled body.so-module-page-ready .so-module-demo::before{
    animation:soModuleBlobIn .9s cubic-bezier(.22,1,.36,1) both,soModuleBlobFloat 7.5s ease-in-out .9s infinite;
}
.so-js-enabled .so-ui-window{
    transform-origin:center;
}
.so-js-enabled body.so-module-page-ready .so-ui-window{
    animation:soModuleWindowIn .86s cubic-bezier(.22,1,.36,1) .12s both,soModuleWindowFloat 7s ease-in-out 1.1s infinite;
}
.so-js-enabled .so-ui-top > span,
.so-js-enabled .so-ui-top > strong,
.so-js-enabled .so-ui-avatar,
.so-js-enabled .so-ui-sidebar > span,
.so-js-enabled .so-ui-search,
.so-js-enabled .so-ui-stats > div,
.so-js-enabled .so-ui-table > div{
    opacity:0;
    transform:translate3d(0,12px,0) scale(.98);
}
.so-js-enabled body.so-module-page-ready .so-ui-top > span,
.so-js-enabled body.so-module-page-ready .so-ui-top > strong,
.so-js-enabled body.so-module-page-ready .so-ui-avatar,
.so-js-enabled body.so-module-page-ready .so-ui-sidebar > span,
.so-js-enabled body.so-module-page-ready .so-ui-search,
.so-js-enabled body.so-module-page-ready .so-ui-stats > div,
.so-js-enabled body.so-module-page-ready .so-ui-table > div{
    animation:soModuleUiIn .56s cubic-bezier(.22,1,.36,1) both;
    animation-delay:calc(.28s + var(--module-ui-delay,0ms));
}
.so-ui-search,
.so-ui-table div{
    position:relative;
    overflow:hidden;
}
.so-ui-search::after,
.so-ui-table div::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.62),rgba(255,255,255,0));
    transform:translateX(-115%);
    opacity:.72;
}
.so-js-enabled body.so-module-page-ready .so-ui-search::after,
.so-js-enabled body.so-module-page-ready .so-ui-table div::after{
    animation:soModuleLineScan 2.8s ease-in-out .75s infinite;
}
.so-ui-stats div:hover{
    translate:0 -3px;
    box-shadow:0 16px 34px rgba(15,23,42,.10);
}
.so-js-enabled body.so-module-page-ready .so-module-stats__grid > div,
.so-js-enabled body.so-module-page-ready .so-feature-card,
.so-js-enabled body.so-module-page-ready .so-workflow > div,
.so-js-enabled body.so-module-page-ready .so-benefit-box li,
.so-js-enabled body.so-module-page-ready .so-submodule-grid > div,
.so-js-enabled body.so-module-page-ready .so-related-card{
    animation-delay:var(--module-card-delay,0ms);
}
.so-feature-card,
.so-workflow div,
.so-submodule-grid div,
.so-related-card{
    position:relative;
    overflow:hidden;
}
.so-feature-card::before,
.so-workflow div::before,
.so-submodule-grid div::before,
.so-related-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,230,0,.16),rgba(255,255,255,0) 58%);
    opacity:0;
    transform:translate3d(-14px,0,0);
    transition:opacity .32s ease,transform .38s cubic-bezier(.22,1,.36,1);
    pointer-events:none;
}
.so-feature-card:hover::before,
.so-workflow div:hover::before,
.so-submodule-grid div:hover::before,
.so-related-card:hover::before{
    opacity:1;
    transform:translate3d(0,0,0);
}
.so-workflow div:hover span{
    transform:scale(1.06) rotate(-2deg);
}
.so-benefit-box li{
    transition:color .24s ease,translate .24s ease;
}
.so-benefit-box li:hover{
    color:#fff;
    translate:4px 0;
}
.so-submodule-grid div:hover{
    border-color:rgba(255,230,0,.95);
}
.so-related-card:hover span{
    translate:4px 0;
}
.so-js-enabled body.so-page-transition-out{
    pointer-events:none;
    animation:soModulePageOut .2s ease both;
}
@keyframes soModuleHeroContentIn{
    0%{
        opacity:0;
        transform:translate3d(0,24px,0);
        filter:blur(4px);
    }
    100%{
        opacity:1;
        transform:translate3d(0,0,0);
        filter:blur(0);
    }
}
@keyframes soModuleButtonSheen{
    0%{
        opacity:0;
        left:-55%;
    }
    20%{
        opacity:1;
    }
    100%{
        opacity:0;
        left:118%;
    }
}
@keyframes soModuleBlobIn{
    0%{
        opacity:0;
        transform:rotate(0deg) scale(.92) translate3d(18px,20px,0);
    }
    100%{
        opacity:1;
        transform:rotate(3deg) scale(1) translate3d(0,0,0);
    }
}
@keyframes soModuleBlobFloat{
    0%,100%{
        transform:rotate(3deg) translate3d(0,0,0);
    }
    50%{
        transform:rotate(2deg) translate3d(0,10px,0);
    }
}
@keyframes soModuleWindowIn{
    0%{
        opacity:0;
        transform:translate3d(28px,28px,0) scale(.965) rotate(.8deg);
        filter:blur(5px);
    }
    100%{
        opacity:1;
        transform:translate3d(0,0,0) scale(1) rotate(0deg);
        filter:blur(0);
    }
}
@keyframes soModuleWindowFloat{
    0%,100%{
        transform:translate3d(0,0,0);
    }
    50%{
        transform:translate3d(0,-8px,0);
    }
}
@keyframes soModuleUiIn{
    0%{
        opacity:0;
        transform:translate3d(0,12px,0) scale(.98);
    }
    100%{
        opacity:1;
        transform:translate3d(0,0,0) scale(1);
    }
}
@keyframes soModuleLineScan{
    0%{
        transform:translateX(-115%);
    }
    55%,100%{
        transform:translateX(115%);
    }
}
@keyframes soModulePageOut{
    0%{
        opacity:1;
        filter:blur(0);
        transform:translate3d(0,0,0);
    }
    100%{
        opacity:.78;
        filter:blur(3px);
        transform:translate3d(0,8px,0) scale(.992);
    }
}

@media(prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }
    *,
    *::before,
    *::after{
        animation-duration:.001ms!important;
        animation-iteration-count:1!important;
        scroll-behavior:auto!important;
        transition-duration:.001ms!important;
        transition-delay:0ms!important;
    }
    .so-reveal,
    .so-reveal.is-visible{
        opacity:1!important;
        translate:0 0!important;
        scale:1!important;
        filter:none!important;
    }
    .so-btn:hover,
    .so-floating-wsp:hover,
    .so-area-card:hover,
    .so-industry-card:hover,
    .so-related-card:hover,
    .so-plan-card:hover,
    .so-implementation-card:hover,
    .so-conditions-card:hover,
    .so-feature-card:hover,
    .so-auth-card:hover,
    .so-auth__logo-box:hover,
    .so-benefit-list div:hover,
    .so-workflow div:hover,
    .so-submodule-grid div:hover,
    .so-payment-summary div:hover,
    .so-dashboard-card:hover,
    .so-float-card:hover,
    .so-ui-window:hover,
    .so-speed-card:hover,
    .so-nav-dropdown__item:hover,
    .so-mega__link:hover{
        translate:0 0!important;
        scale:1!important;
    }

    .so-plan-module,
    .so-plan-module[open],
    .so-plan-module[open] ul,
    .so-plan-module[open] li,
    .so-plan-module summary.is-tapping::after,
    .so-plan-card:hover .so-plan-module:not([open]) summary b{
        animation:none!important;
    }
    .so-plan-module summary::before,
    .so-plan-module::before,
    .so-plan-module summary::after{
        transition:none!important;
    }

    .so-js-enabled .so-module-hero__content > .so-back-link,
    .so-js-enabled .so-module-hero__content > .so-section-tag,
    .so-js-enabled .so-module-hero__content > h1,
    .so-js-enabled .so-module-hero__content > p,
    .so-js-enabled .so-module-hero__actions,
    .so-js-enabled .so-module-note,
    .so-js-enabled .so-ui-top > span,
    .so-js-enabled .so-ui-top > strong,
    .so-js-enabled .so-ui-avatar,
    .so-js-enabled .so-ui-sidebar > span,
    .so-js-enabled .so-ui-search,
    .so-js-enabled .so-ui-stats > div,
    .so-js-enabled .so-ui-table > div{
        opacity:1!important;
        transform:none!important;
        filter:none!important;
    }
    .so-js-enabled body.so-module-page-ready .so-module-demo::before,
    .so-js-enabled body.so-module-page-ready .so-ui-window,
    .so-js-enabled body.so-page-transition-out,
    .so-js-enabled body.so-module-page-ready .so-ui-search::after,
    .so-js-enabled body.so-module-page-ready .so-ui-table div::after,
    .so-module-hero__actions .so-btn:hover::after{
        animation:none!important;
    }
    .so-feature-card::before,
    .so-workflow div::before,
    .so-submodule-grid div::before,
    .so-related-card::before{
        transition:none!important;
        opacity:0!important;
    }
}

/* Flujo de prueba gratis */
.so-trial-select,
.so-trial-register,
.so-module-config{
    padding:70px 0 90px;
    background:linear-gradient(180deg,#fff 0%,#f6f7f9 100%)
}
.so-section-head--trial{
    max-width:820px;
    margin:0 auto 34px;
    text-align:center
}
.so-section-head--trial h1{
    margin:10px 0 14px;
    font-size:clamp(36px,5vw,64px);
    line-height:1.02;
    color:#0f172a
}
.so-section-head--trial p{
    max-width:720px;
    margin:0 auto;
    color:var(--so-muted);
    font-size:18px;
    line-height:1.55
}
.so-trial-module-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.so-trial-module-card{
    min-height:100%;
    cursor:pointer
}
.so-trial-login-note{
    margin:30px auto 0;
    width:min(620px,100%);
    padding:18px 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:1px solid var(--so-border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 16px 38px rgba(15,23,42,.06);
    color:var(--so-muted)
}
.so-trial-login-note a{
    color:var(--so-purple);
    font-weight:800
}
.so-trial-register__grid{
    display:grid;
    grid-template-columns:.9fr 1.35fr;
    gap:34px;
    align-items:start
}
.so-trial-register__intro{
    position:sticky;
    top:100px
}
.so-trial-register__intro h1{
    margin:12px 0 16px;
    font-size:clamp(36px,5vw,62px);
    line-height:1.02;
    color:#0f172a
}
.so-trial-register__intro h1 span{
    color:var(--so-purple)
}
.so-trial-register__intro p{
    color:var(--so-muted);
    line-height:1.55;
    font-size:18px
}
.so-trial-form-card{
    background:#eef0f4;
    border:1px solid #e5e7eb;
    border-radius:0 0 22px 22px;
    box-shadow:var(--so-shadow);
    overflow:hidden
}
.so-trial-app-selected{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:18px 20px;
    background:#f8fafc
}
.so-trial-app-selected__left{
    display:flex;
    align-items:center;
    gap:12px;
    color:#0f172a
}
.so-trial-app-selected__left span{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#fff;
    box-shadow:0 8px 20px rgba(15,23,42,.08)
}
.so-trial-app-selected a{
    padding:12px 18px;
    background:#f2edf1;
    color:var(--so-purple);
    border-radius:2px;
    font-weight:800;
    font-size:14px
}
.so-trial-form{
    padding:24px 20px 26px
}
.so-trial-form__row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:24px
}
.so-trial-field{
    position:relative;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:5px;
    min-height:58px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:8px 12px;
    transition:.2s
}
.so-trial-field:focus-within{
    border-color:rgba(123,75,109,.55);
    box-shadow:0 0 0 4px rgba(123,75,109,.08)
}
.so-trial-field--full{
    margin-bottom:24px
}
.so-trial-field label{
    font-size:14px;
    color:#9aa3b5;
    margin-bottom:2px
}
.so-trial-field input,
.so-trial-field select{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#0f172a;
    font:inherit;
    font-size:17px;
    padding:0
}
.so-trial-field select{
    cursor:pointer
}
.so-trial-terms{
    text-align:center;
    margin:4px auto 22px;
    color:#0f172a;
    line-height:1.45
}
.so-btn--trial{
    margin:0 auto;
    min-width:210px;
    display:flex;
    background:var(--so-purple);
    color:#fff;
    border-radius:4px;
    min-height:62px;
    font-size:18px
}
.so-module-config__alert{
    width:min(760px,100%);
    margin:0 auto 22px
}
.so-module-config__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px
}
.so-module-config__toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    padding:14px 18px;
    margin-bottom:22px;
    background:#fff;
    border:1px solid var(--so-border);
    border-radius:18px;
    box-shadow:0 10px 26px rgba(15,23,42,.05)
}
.so-module-config__toolbar-info{
    display:flex;
    align-items:center;
    gap:10px;
    color:#0f172a;
    font-weight:700
}
.so-module-config__toolbar-info i{
    color:var(--so-purple);
    font-size:18px
}
.so-module-config__toolbar-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap
}
.so-btn--ghost{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:12px;
    border:1px solid var(--so-border);
    background:#f8fafc;
    color:#0f172a;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    transition:.2s
}
.so-btn--ghost i{
    color:var(--so-purple);
    font-size:14px
}
.so-btn--ghost:hover{
    border-color:rgba(123,75,109,.35);
    background:#fff;
    transform:translateY(-1px)
}
.so-btn--ghost:focus-visible{
    outline:3px solid rgba(255,230,0,.65);
    outline-offset:2px
}
.so-module-config-card{
    position:relative;
    border:1px solid var(--so-border);
    border-radius:24px;
    background:#fff;
    padding:22px;
    box-shadow:0 16px 38px rgba(15,23,42,.07)
}
.so-module-config-card.is-initial{
    border-color:rgba(255,230,0,.95);
    box-shadow:0 20px 44px rgba(255,230,0,.16)
}
.so-module-config-card__badge{
    position:absolute;
    top:18px;
    right:18px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,230,0,.45);
    font-size:12px;
    font-weight:900;
    color:#0f172a
}
.so-module-config-card__head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding-right:0;
    margin-bottom:14px
}
.so-module-config-card__head-text{
    flex:1 1 auto;
    min-width:0
}
.so-module-config-card__toolbar{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-bottom:16px
}
.so-module-config-card__toggle{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border-radius:10px;
    border:1px solid var(--so-border);
    background:#f8fafc;
    color:#0f172a;
    font-weight:700;
    font-size:12px;
    line-height:1;
    cursor:pointer;
    transition:.2s;
    white-space:nowrap
}
.so-module-config-card__toggle i{
    color:var(--so-purple);
    font-size:12px
}
.so-module-config-card__toggle:hover{
    border-color:rgba(123,75,109,.35);
    background:#fff;
    transform:translateY(-1px)
}
.so-module-config-card__toggle[aria-pressed="true"]{
    background:rgba(255,230,0,.18);
    border-color:rgba(255,230,0,.7);
    color:#5a3a00
}
.so-module-config-card__toggle[aria-pressed="true"] i{
    color:#5a3a00
}
.so-module-config-card__toggle.is-partial{
    background:rgba(123,75,109,.10);
    border-color:rgba(123,75,109,.45);
    color:var(--so-purple)
}
.so-module-config-card__toggle.is-partial i{
    color:var(--so-purple)
}
.so-module-config-card__toggle:focus-visible{
    outline:3px solid rgba(255,230,0,.65);
    outline-offset:2px
}
.so-module-config-card__head span{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:15px;
    background:rgba(255,230,0,.30);
    font-size:22px
}
.so-module-config-card__head h3{
    margin:0 0 4px;
    color:#0f172a
}
.so-module-config-card__head p{
    margin:0;
    color:var(--so-muted);
    font-size:14px;
    line-height:1.35
}
.so-module-config-card__checks{
    display:grid;
    gap:10px
}
.so-module-config-card__checks label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:12px;
    border:1px solid #eef0f4;
    border-radius:14px;
    background:#f8fafc;
    cursor:pointer;
    transition:.2s
}
.so-module-config-card__checks label:hover{
    border-color:rgba(123,75,109,.25);
    transform:translateY(-1px)
}
.so-module-config-card__checks input{
    margin-top:3px;
    accent-color:var(--so-purple)
}
.so-module-config-card__checks strong{
    display:block;
    font-size:15px;
    color:#0f172a
}
.so-module-config-card__checks small{
    display:block;
    margin-top:2px;
    color:var(--so-muted);
    line-height:1.35
}
.so-module-config__actions{
    position:sticky;
    bottom:18px;
    z-index:10;
    width:min(720px,calc(100% - 20px));
    margin:30px auto 0;
    display:flex;
    justify-content:center;
    gap:14px;
    padding:14px;
    border:1px solid var(--so-border);
    border-radius:18px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    box-shadow:0 18px 44px rgba(15,23,42,.13)
}

@media (max-width:1024px){
    .so-trial-module-grid,
    .so-module-config__grid{
        grid-template-columns:repeat(2,1fr)
    }
    .so-trial-register__grid{
        grid-template-columns:1fr
    }
    .so-trial-register__intro{
        position:static
    }
}
@media (max-width:720px){
    .so-trial-select,
    .so-trial-register,
    .so-module-config{
        padding:44px 0 70px
    }
    .so-trial-module-grid,
    .so-module-config__grid,
    .so-trial-form__row{
        grid-template-columns:1fr
    }
    .so-trial-app-selected,
    .so-trial-login-note,
    .so-module-config__actions{
        flex-direction:column;
        text-align:center
    }
    .so-trial-form__row{
        gap:0;
        margin-bottom:0
    }
    .so-trial-field{
        margin-bottom:18px
    }
    .so-module-config-card__head{
        padding-right:0
    }
    .so-module-config-card__badge{
        position:static;
        display:inline-flex;
        margin-bottom:12px
    }
}

/* =========================================================
   FIX VISUAL SUITEONE - FORMULARIO PRUEBA GRATIS + HERO
   Mantiene paleta SuiteOne: negro, amarillo, blanco y grises.
   ========================================================= */

:root{
    --so-purple:#050505;
}

.so-trial-select,
.so-trial-register,
.so-module-config{
    background:
        radial-gradient(circle at top left, rgba(255,230,0,.18), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f6f7f9 100%) !important;
}

.so-trial-register__intro h1{
    color:#050505 !important;
}

.so-trial-register__intro h1 span{
    position:relative;
    display:inline-block;
    color:#050505 !important;
    z-index:1;
}

.so-trial-register__intro h1 span::after{
    content:"";
    position:absolute;
    left:-6px;
    right:-6px;
    bottom:8px;
    height:18px;
    background:var(--so-yellow);
    border-radius:999px;
    z-index:-1;
}

.so-back-link{
    color:#050505 !important;
    font-weight:900;
}

.so-back-link:hover{
    color:#050505 !important;
}

.so-trial-register .so-section-tag,
.so-trial-select .so-section-tag{
    background:rgba(255,230,0,.28) !important;
    border:1px solid rgba(255,230,0,.95) !important;
    color:#050505 !important;
}

.so-auth__logo-box{
    width:min(330px,100%);
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    border:1px solid var(--so-border);
    border-radius:28px;
    padding:20px 26px;
    box-shadow:0 18px 44px rgba(15,23,42,.08);
}

.so-auth__logo-img{
    max-height:58px;
    width:auto;
    object-fit:contain;
}

.so-trial-form-card{
    background:#ffffff !important;
    border:1px solid var(--so-border) !important;
    border-radius:28px !important;
    box-shadow:0 24px 60px rgba(15,23,42,.10) !important;
    overflow:hidden;
}

.so-trial-app-selected{
    background:linear-gradient(90deg,#ffffff 0%,#fffceb 100%) !important;
    border-bottom:1px solid var(--so-border);
    padding:22px 24px !important;
}

.so-trial-app-selected__left{
    color:#050505 !important;
}

.so-trial-app-selected__left span{
    background:rgba(255,230,0,.35) !important;
    color:#050505 !important;
    border:1px solid rgba(255,230,0,.85);
    box-shadow:none !important;
}

.so-trial-app-selected a{
    background:#050505 !important;
    color:#ffffff !important;
    border-radius:12px !important;
    padding:13px 18px !important;
    font-weight:900;
    transition:.2s ease;
}

.so-trial-app-selected a:hover{
    background:#151515 !important;
    color:var(--so-yellow) !important;
    transform:translateY(-1px);
}

.so-trial-form{
    background:#f6f7f9;
    padding:26px 24px 30px !important;
}

.so-trial-field{
    background:#ffffff !important;
    border:1px solid #dde3ec !important;
    border-radius:14px !important;
    min-height:64px !important;
    padding:10px 14px !important;
}

.so-trial-field:focus-within{
    border-color:#050505 !important;
    box-shadow:0 0 0 4px rgba(255,230,0,.26) !important;
}

.so-trial-field label{
    color:#647084 !important;
    font-weight:700;
}

.so-trial-field input,
.so-trial-field select{
    color:#050505 !important;
    font-weight:700;
}

.so-trial-field input::placeholder{
    color:#8b95a7 !important;
    font-weight:500;
}

.so-trial-terms{
    color:#2e2e2e !important;
}

.so-trial-terms strong{
    color:#050505 !important;
}

.so-btn--trial{
    background:#050505 !important;
    color:#ffffff !important;
    border-radius:14px !important;
    min-height:60px !important;
    box-shadow:0 18px 34px rgba(0,0,0,.20) !important;
}

.so-btn--trial:hover{
    background:#151515 !important;
    color:var(--so-yellow) !important;
    transform:translateY(-1px);
}

.so-trial-login-note a,
.so-module-config-card__checks input{
    accent-color:#050505 !important;
}

.so-module-config-card__checks label:hover{
    border-color:rgba(255,230,0,.95) !important;
}

.so-module-config-card.is-initial{
    border-color:rgba(255,230,0,.95) !important;
    box-shadow:0 20px 44px rgba(255,230,0,.16) !important;
}

.so-module-config-card__badge,
.so-module-config-card__head span{
    background:rgba(255,230,0,.35) !important;
    color:#050505 !important;
}

.so-module-config__actions .so-btn--yellow{
    background:var(--so-yellow) !important;
    color:#050505 !important;
}

.so-module-config__actions .so-btn--outline:hover{
    background:#050505 !important;
    color:#ffffff !important;
}

.so-hero__visual{
    position:relative;
    min-height:500px;
}

.so-hero__visual > .so-dashboard-card{
    position:absolute;
    top:56px;
    right:0;
    width:min(520px,calc(100% - 48px));
    min-height:270px;
    padding:30px !important;
    background:#ffffff !important;
    border:1px solid var(--so-border);
    border-radius:30px;
    box-shadow:0 24px 60px rgba(15,23,42,.12);
}

.so-dashboard-card__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:24px;
}

.so-dashboard-card__top strong{
    display:block;
    font-size:28px;
    line-height:1.1;
    color:#050505;
}

.so-dashboard-card__top small{
    display:block;
    margin-top:6px;
    color:var(--so-muted);
    font-size:16px;
}

.so-dashboard-card__top > span{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:16px;
    background:var(--so-yellow);
    box-shadow:0 12px 24px rgba(255,230,0,.28);
}

.so-dashboard-card__stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:22px;
}

.so-dashboard-card__stats div{
    background:#f6f7f9;
    border:1px solid #eef0f4;
    border-radius:18px;
    padding:18px;
}

.so-dashboard-card__stats b{
    display:block;
    font-size:28px;
    line-height:1;
    color:#050505;
}

.so-dashboard-card__stats small{
    display:block;
    margin-top:6px;
    color:var(--so-muted);
    font-size:15px;
}

.so-dashboard-card__modules{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.so-dashboard-card__modules span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    border-radius:12px;
    background:#050505;
    color:#ffffff;
    font-weight:900;
    font-size:14px;
}

.so-float-card{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    min-height:72px;
    padding:18px 22px !important;
    background:#ffffff;
    border:1px solid var(--so-border);
    border-radius:24px;
    box-shadow:0 22px 52px rgba(15,23,42,.12);
    color:#050505;
    font-size:20px;
    font-weight:900;
    white-space:nowrap;
}

.so-float-card--one{
    top:12px !important;
    left:0 !important;
}

.so-float-card--two{
    left:24px !important;
    bottom:-40px !important;
}

@media (max-width:1024px){
    .so-hero__visual{
        min-height:auto;
    }

    .so-hero__visual > .so-dashboard-card{
        position:relative;
        top:auto;
        right:auto;
        width:100%;
        margin-top:22px;
    }

    .so-float-card{
        position:relative;
        left:auto !important;
        top:auto !important;
        bottom:auto !important;
        margin-top:16px;
        width:100%;
    }
}

@media (max-width:720px){
    .so-trial-form{
        padding:22px 16px 26px !important;
    }

    .so-trial-form-card{
        border-radius:22px !important;
    }

    .so-trial-app-selected{
        align-items:stretch;
    }

    .so-trial-app-selected a{
        width:100%;
        text-align:center;
    }

    .so-dashboard-card__stats{
        grid-template-columns:1fr;
    }
}


/* =========================================================
   SUITEONE UPDATE - HEADER HOVER, HERO PRECIO, RUBROS IMÁGENES, HONEYPOT
   ========================================================= */

.so-nav-dropdown:hover .so-nav-dropdown__menu,
.so-nav-dropdown.active .so-nav-dropdown__menu{
    display:block;
}

.so-nav-dropdown:hover .so-nav-dropdown__btn span,
.so-nav-dropdown.active .so-nav-dropdown__btn span{
    transform:rotate(180deg);
}

.so-dashboard-stats{
    align-items:stretch;
}

.so-dashboard-stats div:first-child strong{
    color:#050505;
}

.so-dashboard-stats div:first-child span::after{
    content:"";
    display:block;
    width:42px;
    height:4px;
    margin-top:8px;
    border-radius:999px;
    background:#c9c9c9;
}

.so-dashboard-stats div:nth-child(2){
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#fff7a6,#ffe600)!important;
    border:1px solid rgba(5,5,5,.08);
    box-shadow:0 16px 34px rgba(255,230,0,.24);
}

.so-dashboard-stats div:nth-child(2)::before{
    content:"Oferta";
    position:absolute;
    top:12px;
    right:-34px;
    width:118px;
    text-align:center;
    transform:rotate(36deg);
    background:#050505;
    color:#fff;
    font-size:12px;
    font-weight:900;
    padding:5px 0;
    letter-spacing:.04em;
}

.so-dashboard-stats div:nth-child(2) strong{
    color:#050505;
    font-size:30px;
}

.so-dashboard-stats div:nth-child(2) span{
    color:#050505;
    font-weight:900;
}

.so-stats__grid{
    grid-template-columns:repeat(3,1fr);
}


/* ==============================
   RUBROS - imagen completa + textos encima
   ============================== */
.so-industries{
    background:
        radial-gradient(circle at top left,rgba(255,230,0,.16),transparent 31%),
        linear-gradient(180deg,#ffffff 0%,#f7f8fb 100%);
}

.so-industries__grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:28px!important;
    align-items:stretch!important;
}

.so-industries .so-industry-card{
    position:relative!important;
    min-height:330px!important;
    padding:0!important;
    border:1px solid rgba(224,228,235,.95)!important;
    border-radius:28px!important;
    overflow:hidden!important;
    isolation:isolate!important;
    text-align:left!important;
    box-shadow:0 18px 42px rgba(15,23,42,.08)!important;
    transition:transform .28s ease,box-shadow .28s ease!important;

    /* Imagen ocupando TODO el div/card */
    background-image:
        linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.10) 42%,rgba(255,255,255,.54) 68%,rgba(255,255,255,.94) 100%),
        var(--rubro-img)!important;
    background-size:cover!important;
    background-position:center!important;
    background-repeat:no-repeat!important;
    background-color:#f3f5f8!important;
}

.so-industries .so-industry-card:hover{
    transform:translateY(-8px)!important;
    box-shadow:0 28px 56px rgba(15,23,42,.14)!important;
}

/* Textos encima de la imagen, sin caja gris */
.so-industries .so-industry-card__content{
    position:absolute!important;
    left:24px!important;
    right:24px!important;
    bottom:34px!important;
    z-index:2!important;
    width:auto!important;
    height:auto!important;
    min-height:0!important;
    margin:0!important;
    padding:0!important;
    display:block!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    text-align:center!important;
    font-size:inherit!important;
}

.so-industries .so-industry-card__content h3,
.so-industries .so-industry-card h3{
    margin:0 0 8px!important;
    padding:0!important;
    color:#111111!important;
    font-size:23px!important;
    line-height:1.15!important;
    font-weight:900!important;
    text-align:center!important;
    text-shadow:0 2px 14px rgba(255,255,255,.88)!important;
}

.so-industries .so-industry-card__content p,
.so-industries .so-industry-card p{
    margin:0!important;
    padding:0!important;
    color:#536277!important;
    font-size:16.5px!important;
    line-height:1.48!important;
    font-weight:550!important;
    text-align:center!important;
    text-shadow:0 2px 12px rgba(255,255,255,.95)!important;
}

/* Detalle amarillo inferior */
.so-industries .so-industry-card::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:12px;
    z-index:3;
    width:126px;
    height:8px;
    transform:translateX(-50%);
    border-radius:999px;
    background:repeating-linear-gradient(90deg,#ffe600 0 7px,transparent 7px 11px);
    opacity:.95;
}

/* Bloqueos para que ningún CSS anterior vuelva a achicar elementos del card */
.so-industries .so-industry-card div{
    width:auto!important;
    height:auto!important;
    margin:0!important;
    border-radius:0!important;
    font-size:inherit!important;
}

.so-industries .so-industry-card img,
.so-industries .so-industry-card__image{
    display:none!important;
}

@media (max-width:960px){
    .so-stats__grid,
    .so-industries__grid{
        grid-template-columns:1fr 1fr!important;
    }

    .so-industries .so-industry-card{
        min-height:310px!important;
    }
}

@media (max-width:640px){
    .so-stats__grid,
    .so-industries__grid{
        grid-template-columns:1fr!important;
    }

    .so-industries__grid{
        gap:22px!important;
    }

    .so-industries .so-industry-card{
        min-height:300px!important;
    }

    .so-industries .so-industry-card__content{
        left:18px!important;
        right:18px!important;
        bottom:34px!important;
    }

    .so-industries .so-industry-card__content h3,
    .so-industries .so-industry-card h3{
        font-size:21px!important;
    }

    .so-industries .so-industry-card__content p,
    .so-industries .so-industry-card p{
        font-size:15.5px!important;
    }
}


.so-footer__phone{
    font-size:20px;
    font-weight:900;
    color:#fff!important;
    margin:0 0 12px!important;
}

.so-hp-field{
    position:absolute!important;
    left:-9999px!important;
    top:auto!important;
    width:1px!important;
    height:1px!important;
    overflow:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
}

@media (max-width:960px){
    .so-stats__grid,
    .so-industries__grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:640px){
    .so-stats__grid,
    .so-industries__grid{
        grid-template-columns:1fr;
    }

    .so-industry-card__image{
        height:160px!important;
    }
}

/* =========================================================
   FIX FINAL RUBROS - SIN CUADRO GRIS + IMAGEN EN TODO EL CARD
   IMPORTANTE: ESTE BLOQUE DEBE QUEDAR AL FINAL DEL CSS.
   ========================================================= */

.so-industries .so-industries__grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:24px !important;
    align-items:stretch !important;
}

.so-industries .so-industry-card{
    position:relative !important;
    min-height:360px !important;
    height:360px !important;
    padding:0 !important;
    overflow:hidden !important;
    border:1px solid var(--so-border) !important;
    border-radius:26px !important;
    background:#f3f4f6 !important;
    box-shadow:0 16px 36px rgba(15,23,42,.08) !important;
    text-align:center !important;
    isolation:isolate !important;
}

/* La imagen ahora ocupa TODO el bloque */
.so-industries .so-industry-card > img.so-industry-card__bg,
.so-industries .so-industry-card img.so-industry-card__bg{
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    display:block !important;
    object-fit:cover !important;
    object-position:center !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
}

/* Texto encima de la imagen, abajo. Sin caja gris. */
.so-industries .so-industry-card > .so-industry-card__overlay,
.so-industries .so-industry-card .so-industry-card__overlay{
    position:absolute !important;
    inset:0 !important;
    z-index:3 !important;

    width:100% !important;
    height:100% !important;
    min-width:0 !important;
    min-height:0 !important;
    max-width:none !important;
    max-height:none !important;

    margin:0 !important;
    padding:0 28px 38px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:center !important;
    place-items:unset !important;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.10) 38%,
        rgba(255,255,255,0.76) 76%,
        rgba(255,255,255,0.96) 100%
    ) !important;

    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    font-size:inherit !important;
    line-height:normal !important;
}

/* ANULA EL CUADRADO GRIS DE LA REGLA ANTIGUA: .so-industry-card div */
.so-industries .so-industry-card div.so-industry-card__overlay{
    width:100% !important;
    height:100% !important;
    margin:0 !important;
    padding:0 28px 38px !important;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.10) 38%,
        rgba(255,255,255,0.76) 76%,
        rgba(255,255,255,0.96) 100%
    ) !important;
    border-radius:0 !important;
    display:flex !important;
}

/* Por si algún estilo anterior le puso fondo al título o al párrafo */
.so-industries .so-industry-card__overlay h3,
.so-industries .so-industry-card__overlay p,
.so-industries .so-industry-card__overlay h3 *,
.so-industries .so-industry-card__overlay p *{
    background:transparent !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
}

.so-industries .so-industry-card__overlay h3{
    margin:0 0 8px !important;
    padding:0 !important;
    color:#111111 !important;
    font-size:24px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    text-align:center !important;
    text-shadow:0 2px 14px rgba(255,255,255,.90) !important;
}

.so-industries .so-industry-card__overlay p{
    max-width:260px !important;
    margin:0 auto !important;
    padding:0 !important;
    color:#536277 !important;
    font-size:17px !important;
    line-height:1.45 !important;
    font-weight:600 !important;
    text-align:center !important;
    text-shadow:0 2px 12px rgba(255,255,255,.95) !important;
}

.so-industries .so-industry-card:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 24px 50px rgba(15,23,42,.13) !important;
}

.so-industries .so-industry-card:hover img.so-industry-card__bg{
    transform:scale(1.04) !important;
}

@media(max-width:1100px){
    .so-industries .so-industries__grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media(max-width:680px){
    .so-industries .so-industries__grid{
        grid-template-columns:1fr !important;
    }

    .so-industries .so-industry-card{
        min-height:320px !important;
        height:320px !important;
    }

    .so-industries .so-industry-card > .so-industry-card__overlay,
    .so-industries .so-industry-card .so-industry-card__overlay,
    .so-industries .so-industry-card div.so-industry-card__overlay{
        padding:0 22px 34px !important;
    }

    .so-industries .so-industry-card__overlay h3{
        font-size:22px !important;
    }

    .so-industries .so-industry-card__overlay p{
        font-size:16px !important;
    }
}

/* =========================================================
   SUITEONE AUTH FIX - VALIDACIÓN, REDIRECCIÓN Y RESPONSIVE
   ========================================================= */
html,
body{
    max-width:100%;
    overflow-x:hidden;
}

input,
select,
textarea,
button{
    max-width:100%;
}

.so-field-error{
    display:block;
    margin-top:6px;
    color:#b91c1c;
    font-size:13px;
    line-height:1.3;
    font-weight:800;
}

.so-form-group.is-invalid input,
.so-form-group input.is-invalid{
    border-color:#ef4444 !important;
    background:#fff7f7 !important;
    box-shadow:0 0 0 4px rgba(239,68,68,.12) !important;
}

.so-form-group.is-invalid label,
.so-trial-field.is-invalid label{
    color:#991b1b !important;
}

.so-trial-field.is-invalid{
    border-color:#ef4444 !important;
    background:#fff7f7 !important;
    box-shadow:0 0 0 4px rgba(239,68,68,.12) !important;
}

.so-trial-field.is-invalid input,
.so-trial-field.is-invalid select{
    color:#111827 !important;
}

.so-auth-alert + .so-auth-card,
.so-trial-app-selected + .so-auth-alert{
    margin-top:14px;
}

.so-auth-card__foot{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-top:20px;
    color:var(--so-muted);
    font-weight:700;
}

.so-auth-card__foot a{
    color:#050505;
    font-weight:900;
    border-bottom:3px solid var(--so-yellow);
}

.so-redirect-body{
    min-height:100vh;
    background:linear-gradient(135deg,#ffffff 0%,#f6f7f9 58%,rgba(255,230,0,.22) 100%);
}

.so-redirect-page{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:28px;
}

.so-redirect-card{
    width:min(520px,100%);
    text-align:center;
    background:#ffffff;
    border:1px solid var(--so-border);
    border-radius:30px;
    padding:38px 34px 34px;
    box-shadow:0 28px 70px rgba(15,23,42,.14);
}

.so-redirect-logo{
    display:flex;
    justify-content:center;
    margin-bottom:22px;
}

.so-redirect-logo img{
    max-height:72px;
    width:auto;
    object-fit:contain;
}

.so-redirect-loader{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    min-height:42px;
    margin-bottom:10px;
}

.so-redirect-loader span{
    width:13px;
    height:13px;
    border-radius:999px;
    background:#050505;
    animation:soRedirectBounce .82s infinite ease-in-out both;
}

.so-redirect-loader span:nth-child(2){
    animation-delay:.12s;
    background:var(--so-yellow);
}

.so-redirect-loader span:nth-child(3){
    animation-delay:.24s;
}

.so-redirect-card h1{
    margin:10px 0 12px;
    color:#050505;
    font-size:clamp(30px,5vw,46px);
    line-height:1.05;
    letter-spacing:-1px;
}

.so-redirect-card p{
    margin:0 auto 14px;
    max-width:420px;
    color:var(--so-muted);
    font-size:18px;
    line-height:1.5;
}

.so-redirect-card small{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(255,230,0,.35);
    color:#050505;
    font-weight:900;
}

@keyframes soRedirectBounce{
    0%,80%,100%{
        transform:scale(.72);
        opacity:.55;
    }
    40%{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:1180px){
    .so-auth__grid,
    .so-trial-register__grid{
        gap:28px !important;
    }

    .so-trial-module-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media(max-width:900px){
    .so-auth__grid,
    .so-trial-register__grid{
        grid-template-columns:1fr !important;
    }

    .so-auth__intro,
    .so-trial-register__intro{
        position:static !important;
        text-align:center;
    }

    .so-auth__intro p,
    .so-trial-register__intro p{
        margin-left:auto;
        margin-right:auto;
    }

    .so-auth__logo-box{
        margin-left:auto;
        margin-right:auto;
    }
}

@media(max-width:780px){
    .so-header{
        z-index:1300;
    }

    .so-nav{
        width:auto;
        max-width:calc(100vw - 28px);
    }

    .so-nav-dropdown__menu{
        max-height:calc(100vh - 150px);
        overflow-y:auto;
    }

    .so-auth,
    .so-trial-select,
    .so-trial-register,
    .so-module-config{
        padding:42px 0 58px !important;
    }

    .so-auth-card,
    .so-trial-form-card,
    .so-module-config-card{
        border-radius:22px !important;
    }

    .so-trial-module-grid,
    .so-trial-form__row,
    .so-module-config__grid{
        grid-template-columns:1fr !important;
    }

    .so-trial-form__row{
        gap:0 !important;
        margin-bottom:0 !important;
    }

    .so-trial-field,
    .so-trial-field--full{
        margin-bottom:16px !important;
    }

    .so-auth-card__head{
        gap:12px;
    }

    .so-auth__intro h1,
    .so-trial-register__intro h1,
    .so-section-head--trial h1{
        font-size:clamp(34px,10vw,44px) !important;
        letter-spacing:-1px;
    }
}

@media(max-width:520px){
    .so-container{
        width:min(100% - 24px,1180px) !important;
    }

    .so-auth-card,
    .so-trial-form-card,
    .so-redirect-card{
        padding:22px 16px !important;
    }

    .so-trial-form{
        padding:20px 14px 24px !important;
    }

    .so-trial-app-selected{
        padding:16px !important;
    }

    .so-auth-card__head{
        flex-direction:column;
        align-items:flex-start;
    }

    .so-auth-card__head h2{
        font-size:25px;
    }

    .so-form-group input,
    .so-trial-field input,
    .so-trial-field select{
        font-size:16px !important;
    }

    .so-redirect-page{
        padding:18px;
    }
}

@media(max-width:380px){
    .so-container{
        width:min(100% - 18px,1180px) !important;
    }

    .so-logo{
        min-width:auto;
    }

    .so-logo__img{
        height:34px !important;
    }

    .so-menu-btn{
        width:42px;
        height:42px;
        flex:0 0 42px;
    }

    .so-auth-card,
    .so-trial-form-card,
    .so-redirect-card{
        border-radius:18px !important;
    }
}

@media(prefers-reduced-motion:reduce){
    .so-redirect-loader span{
        animation:none;
    }
}

/* =========================================================
   SUITEONE FIX - HERO RESPONSIVE, TACHADO Y SCROLL ÚNICO
   ========================================================= */
html{
    width:100%;
    min-width:0;
    overflow-x:hidden !important;
    overflow-y:auto;
}

body{
    width:100%;
    min-width:0;
    overflow-x:hidden !important;
    overflow-y:visible;
}

body,
main,
section,
.so-container,
.so-hero,
.so-hero__grid,
.so-hero__visual{
    max-width:100%;
}

.so-hero,
.so-hero *{
    box-sizing:border-box;
}

.so-hero__visual{
    isolation:isolate;
}

.so-dashboard-card--main{
    max-width:100%;
}

.so-dashboard-stats div:first-child{
    position:relative;
    overflow:hidden;
}

.so-dashboard-stats div:first-child::before{
    content:"";
    position:absolute;
    left:12px;
    right:12px;
    top:50%;
    height:4px;
    border-radius:999px;
    background:#ef1d1d;
    transform:rotate(-17deg);
    transform-origin:center;
    z-index:3;
    box-shadow:0 2px 6px rgba(239,29,29,.25);
    pointer-events:none;
}

.so-dashboard-stats div:first-child strong,
.so-dashboard-stats div:first-child span{
    position:relative;
    z-index:2;
}

.so-float-card{
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    gap:4px !important;
    white-space:normal !important;
    min-width:0 !important;
    max-width:100% !important;
    line-height:1.2;
}

.so-float-card strong,
.so-float-card span{
    display:block;
    max-width:100%;
    overflow-wrap:anywhere;
}

.so-float-card strong{
    font-size:clamp(18px,2.2vw,22px) !important;
}

.so-float-card span{
    font-size:clamp(14px,1.7vw,16px) !important;
    line-height:1.35;
}

@media(max-width:1100px){
    .so-hero__grid{
        gap:34px !important;
    }
}

@media(max-width:1024px){
    .so-hero__visual{
        display:grid;
        gap:14px;
        min-height:auto !important;
        padding-top:0 !important;
    }

    .so-hero__visual > .so-dashboard-card,
    .so-dashboard-card--main,
    .so-float-card,
    .so-float-card--one,
    .so-float-card--two{
        position:relative !important;
        inset:auto !important;
        top:auto !important;
        right:auto !important;
        bottom:auto !important;
        left:auto !important;
        transform:none !important;
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
    }

    .so-float-card{
        min-height:auto !important;
        padding:18px 20px !important;
        border-radius:20px !important;
    }
}

@media(max-width:780px){
    .so-hero{
        padding:50px 0 58px !important;
    }

    .so-hero__grid{
        gap:28px !important;
    }

    .so-hero__content{
        min-width:0;
    }

    .so-dashboard-card--main{
        padding:22px !important;
        border-radius:24px !important;
    }

    .so-dashboard-title strong{
        font-size:clamp(24px,8vw,30px) !important;
    }

    .so-dashboard-stats{
        grid-template-columns:1fr !important;
        gap:12px !important;
    }

    .so-dashboard-stats div{
        min-width:0;
        padding:16px !important;
    }

    .so-dashboard-line{
        margin-top:20px !important;
    }
}

@media(max-width:520px){
    .so-container{
        width:calc(100% - 24px) !important;
    }

    .so-hero h1{
        font-size:clamp(36px,11vw,46px) !important;
        line-height:1 !important;
    }

    .so-hero__text{
        font-size:17px !important;
    }

    .so-hero__actions{
        gap:10px !important;
    }

    .so-dashboard-card--main{
        padding:18px !important;
        border-radius:20px !important;
    }

    .so-card-top{
        margin-bottom:20px !important;
    }

    .so-float-card{
        padding:16px 18px !important;
        border-radius:18px !important;
    }
}


/* =========================================================
   SUITEONE FINAL FIX - TACHADO NEGRO Y MENÚ MÓVIL SIN DOBLE SCROLL
   ========================================================= */
html{
    width:100%;
    max-width:100%;
    min-height:100%;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    overscroll-behavior-y:auto;
}

body{
    width:100%;
    max-width:100%;
    min-height:100%;
    overflow-x:hidden !important;
    overflow-y:visible !important;
}

.so-nav__mobile-actions{
    display:none;
}

.so-dashboard-stats div:first-child{
    overflow:visible !important;
}

.so-dashboard-stats div:first-child::before{
    content:none !important;
    display:none !important;
}

.so-dashboard-stats div:first-child strong{
    display:inline-flex !important;
    width:max-content;
    max-width:100%;
    position:relative !important;
    line-height:1 !important;
    padding:0 2px;
}

.so-dashboard-stats div:first-child strong::after{
    content:"";
    position:absolute;
    left:-3px;
    right:-3px;
    top:54%;
    height:3px;
    border-radius:999px;
    background:#050505;
    transform:rotate(-8deg) translateY(-50%);
    transform-origin:center;
    z-index:5;
    pointer-events:none;
    box-shadow:0 1px 0 rgba(255,255,255,.5);
}

@media(max-width:780px){
    html.so-menu-open,
    body.so-menu-open{
        overflow:hidden !important;
        overscroll-behavior:none;
    }

    body.so-menu-open{
        height:auto !important;
        touch-action:none;
    }

    body.so-menu-open .so-header{
        position:fixed !important;
        top:0;
        left:0;
        right:0;
        width:100%;
    }

    body.so-menu-open main,
    body.so-menu-open footer{
        pointer-events:none;
    }

    .so-header{
        overflow:visible !important;
    }

    .so-header__inner{
        position:relative;
    }

    .so-nav{
        position:fixed !important;
        top:78px !important;
        left:14px !important;
        right:14px !important;
        bottom:auto !important;
        width:auto !important;
        max-width:calc(100vw - 28px) !important;
        max-height:none !important;
        overflow:visible !important;
        z-index:1600 !important;
    }

    .so-nav.active{
        max-height:calc(100dvh - 96px) !important;
        overflow-x:hidden !important;
        overflow-y:auto !important;
        overscroll-behavior:contain;
        -webkit-overflow-scrolling:touch;
    }

    .so-nav-dropdown__menu{
        max-height:none !important;
        overflow:visible !important;
    }

    .so-nav__mobile-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        padding:14px;
        margin-top:8px;
        border-top:1px solid var(--so-border);
    }

    .so-nav__mobile-actions .so-link-login{
        width:100%;
        min-height:46px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border:1px solid var(--so-border);
        border-radius:12px;
        background:#fff;
        color:#050505;
        font-weight:900;
    }

    .so-nav__mobile-actions .so-btn{
        width:100%;
        min-height:46px;
        border-radius:12px;
    }

    .so-header__actions{
        display:none !important;
    }
}

@supports not (overflow:clip){
    html,
    body{
        overflow-x:hidden !important;
    }
}


/* =========================================================
   SUITEONE SCROLL REAL FIX 20260605
   Un solo contenedor vertical: HTML. BODY no genera scroll propio.
   ========================================================= */
html{
    overflow-x:hidden !important;
    overflow-y:auto !important;
    background-color:#fff;
}

body{
    overflow-x:hidden !important;
    overflow-y:visible !important;
    min-height:100%;
}

main,
.so-header,
.so-footer{
    max-width:100%;
    overflow-x:clip;
    overflow-y:visible;
}

@media(max-width:780px){
    html.so-menu-open,
    body.so-menu-open{
        overflow:hidden !important;
        overscroll-behavior:none;
    }

    body.so-menu-open{
        height:auto !important;
    }
}
