/* ============================================
   HERO SPLIT SECTION
   R Web Solutions Inspired – Blue Version
   ============================================ */

.hero-split-section {
    position: relative;
    background: var(--sn-gradient-hero);
    min-height: 600px;
    padding: 130px 0 160px;
    overflow: hidden;
}

/* ---- Left: Text Zone ---- */
.hero-text-col {
    position: relative;
    z-index: 5;
    padding-right: 40px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.hero-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-headline-accent {
    color: #ffffff;
    display: inline-block;
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
}

/* ---- CTA Buttons ---- */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--sn-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    background: var(--sn-primary);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ---- Right: Visual Zone ---- */
.hero-visual-col {
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-device-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-device-frame {
    background: transparent;
    border: none;
}

.hero-device-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
    mix-blend-mode: luminosity;
}

/* ---- Floating Badges ---- */
.hero-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sn-primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1.1rem;
    color: var(--sn-primary);
}

.hero-badge-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.hero-badge-2 {
    top: 50%;
    right: -50px;
    animation-delay: 1.5s;
}

.hero-badge-3 {
    bottom: -20px;
    left: 10px;
    animation-delay: 0.8s;
}

@keyframes float {

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

    50% {
        transform: translateY(-12px);
    }
}

/* ---- Circle Accent (decorative bg blob) ---- */
.hero-circle-accent {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ---- Diagonal Clip ---- */
.hero-diagonal-clip {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 4;
}

/* ============================================
   SERVICES STRIP (Below Hero)
   ============================================ */
.services-strip {
    background: #ffffff;
    border-bottom: 2px solid #f1f4fa;
    padding: 22px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.strip-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.strip-item:hover {
    color: var(--sn-primary);
}

.strip-item i {
    font-size: 1.4rem;
    color: var(--sn-primary);
    transition: transform 0.3s ease;
}

.strip-item:hover i {
    transform: scale(1.2);
}

.strip-divider {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-split-section {
        padding: 110px 0 130px;
        text-align: center;
    }

    .hero-text-col {
        padding-right: 0;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-diagonal-clip {
        height: 70px;
    }

    .strip-track {
        justify-content: center;
        gap: 16px;
    }

    .strip-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-split-section {
        padding: 60px 0 120px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .strip-item {
        font-size: 0.8rem;
    }
}