:root {
    --spax-green: #0d6e3a;
    --spax-light-green: #158b4b; 
    --spax-dark: #1a1a1a;
    --text-main: #333333;
    --text-muted: #666666;
    --shadow-soft: 0 15px 35px rgba(0,0,0,0.05);
    --shadow-hard: 0 20px 40px rgba(0,0,0,0.15);
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.saas-hero {
    position: relative;
    padding: 200px 0 120px 0;
    background-color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-torx-watermark {
    position: absolute;
    left: -250px;
    top: 20%;
    width: 500px;
    transform: rotate(35deg);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.bg-circle-right {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background-color: rgba(13, 110, 58, 0.02);
    border: 1px solid rgba(13, 110, 58, 0.05);
    z-index: 0;
    pointer-events: none;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 2;
}

.main-photo {
    position: absolute;
    top: 0;
    right: 5%;
    width: 85%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-hard);
    z-index: 1;
}

.screw-3d-render {
    position: absolute;
    bottom: -15%;
    right: 0%;
    width: 50%; /* Sobresale de la caja */
    transform: rotate(-164deg);
    z-index: 2;
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.3));
}

.floating-badge {
    position: absolute;
    bottom: 8%;
    right: 10%;
    background-color: var(--spax-green);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(13, 110, 58, 0.3);
    z-index: 3;
}
.floating-badge img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
}
.floating-badge p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.benefits-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 5;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.benefit-text h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--spax-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.benefit-col {
    position: relative;
}
@media (min-width: 992px) {
    .benefit-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #f0f0f0;
    }
}

@media (max-width: 991.98px) {
    .saas-hero {
        padding: 130px 0 60px 0;
        min-height: auto;
    }
    .hero-visual-wrapper {
        height: 350px;
        margin-top: 40px;
    }
    .main-photo {
        width: 100%;
        right: 0;
        height: 100%;
    }
    .screw-3d-render {
        width: 65%;
        bottom: -5%;
        right: 0;
    }
}
