/* =============================================
   BlueClean Homepage – Premium Redesign
   ============================================= */

/* ---- HERO SECTION ---- */
.hero-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.hero-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1440;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    animation: heroZoom 35s ease-in-out infinite alternate;
    filter: saturate(1.15) contrast(1.08);
}

@keyframes heroZoom {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.22);
    }
}

.hero-overlay {
    display: none;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 85% 15%, rgba(0, 200, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(11, 94, 215, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hp {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: hpFloat linear infinite;
}

.hp1 {
    width: 6px;
    height: 6px;
    left: 10%;
    top: 20%;
    animation-duration: 12s;
}

.hp2 {
    width: 4px;
    height: 4px;
    left: 60%;
    top: 80%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.hp3 {
    width: 10px;
    height: 10px;
    left: 80%;
    top: 10%;
    animation-duration: 16s;
    animation-delay: 2s;
    background: rgba(0, 200, 255, 0.4);
}

.hp4 {
    width: 5px;
    height: 5px;
    left: 30%;
    top: 90%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.hp5 {
    width: 3px;
    height: 3px;
    left: 50%;
    top: 50%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.hp6 {
    width: 7px;
    height: 7px;
    left: 90%;
    top: 60%;
    animation-duration: 15s;
    animation-delay: 2.5s;
    background: rgba(0, 200, 255, 0.35);
}

@keyframes hpFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    50% {
        transform: translate(-15px, -70px) scale(1.2);
        opacity: 0.5;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        transform: translate(10px, -140px) scale(0.7);
        opacity: 0;
    }
}

/* Decorative Lines */
.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.h-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    width: 1px;
    height: 100%;
}

.hl1 {
    left: 25%;
    animation: lineGlow 4s ease-in-out infinite;
}

.hl2 {
    left: 50%;
    animation: lineGlow 4s ease-in-out infinite 1.3s;
}

.hl3 {
    left: 75%;
    animation: lineGlow 4s ease-in-out infinite 2.6s;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 48px 60px 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

/* Hero Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.25);
    animation: pulseDotHero 2s infinite;
}

@keyframes pulseDotHero {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-size: clamp(32px, 3.6vw, 50px);
    font-weight: 900;
    line-height: 1.18;
    color: #fff;
    margin: 24px 0 20px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.1s;
    white-space: normal;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #82e4ff 40%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero-desc {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 540px;
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.2s;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.3s;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.hero-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(4px);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0b5ed7 0%, #1e88ff 50%, #00b3ff 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 16px 40px rgba(11, 94, 215, 0.4),
        0 0 24px rgba(0, 179, 255, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 20px 55px rgba(11, 94, 215, 0.55),
        0 0 35px rgba(0, 179, 255, 0.4);
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.hero-btn-glass:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.45s;
}

.hero-stat {
    text-align: left;
}

.hs-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hs-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* ---- HERO RIGHT: VISUAL ---- */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 24px 0;
}

/* Main card */
.hv-card.hv-main {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeSlideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.35s;
}

.hv-card.hv-main:hover {
    transform: translateY(-6px) scale(1.02);
}

.hv-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0b5ed7, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 12px 24px rgba(0, 179, 255, 0.35);
}

.hv-icon-wrap svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.hv-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.hv-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 18px;
}

/* Progress bar */
.hv-progress {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.hv-progress-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.hv-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.hv-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #0b5ed7, #00d4ff);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hv-bar-fill.animate {
    width: 98%;
}

.hv-progress-val {
    font-size: 14px;
    font-weight: 900;
    color: #00d4ff;
    margin-top: 6px;
    text-align: right;
}

/* Floating badges */
.hv-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    color: #fff;
    z-index: 4;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hv-float:hover {
    transform: translateY(-4px) scale(1.04) !important;
}

.hv-float1 {
    top: -10px;
    left: -10px;
    animation: fadePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.5s;
}

.hv-float2 {
    bottom: -10px;
    right: -8px;
    animation: fadePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.65s;
}

.hv-float-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hv-float-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.hv-float-text strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hv-float-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Decorative ring */
.hv-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    z-index: 1;
    animation: ringRotate 60s linear infinite;
}

.hv-ring-inner {
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: ringRotate 40s linear infinite reverse;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: fadeIn 1.2s ease both 1.5s;
}

.hero-mouse {
    width: 26px;
    height: 42px;
    border-radius: 13px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: border-color 0.3s;
}

.hero-mouse:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-wheel {
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 8px;
    margin-left: -2px;
    animation: scrollBounceHome 2s ease-in-out infinite;
}

@keyframes scrollBounceHome {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* ---- TRUST SECTION (PILL BAR) ---- */
.trust-section {
    padding: 28px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #060d2e 0%, #0b3a8a 50%, #0968d2 100%);
    border-bottom: none;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(11, 94, 215, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(11, 94, 215, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 8px 28px rgba(0, 212, 255, 0.18),
        0 0 0 1px rgba(0, 212, 255, 0.10);
}

.trust-pill:hover::before {
    opacity: 1;
}

.tp-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.20), rgba(11, 94, 215, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.trust-pill:hover .tp-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(11, 94, 215, 0.40));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.30);
    transform: scale(1.1);
}

.tp-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.90);
    filter: drop-shadow(0 0 3px rgba(0, 212, 255, 0.40));
}

.tp-label {
    position: relative;
    z-index: 1;
}

/* Stagger Reveal Animation for Pills */
.reveal-pill {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-pill.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays */
.trust-pill:nth-child(1) {
    transition-delay: 0s;
}

.trust-pill:nth-child(2) {
    transition-delay: 0.07s;
}

.trust-pill:nth-child(3) {
    transition-delay: 0.14s;
}

.trust-pill:nth-child(4) {
    transition-delay: 0.21s;
}

.trust-pill:nth-child(5) {
    transition-delay: 0.28s;
}

.trust-pill:nth-child(6) {
    transition-delay: 0.35s;
}

.trust-pill:nth-child(7) {
    transition-delay: 0.42s;
}

/* ---- SECTION HEADERS ---- */
.sec-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.sec-header h2 {
    margin-top: 14px;
}

.sec-header .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec-sub {
    font-size: 15px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.7;
}

/* ---- PREMIUM SERVICE CARDS ---- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 40, 85, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(10, 27, 51, 0.06);
    transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Animated gradient border on hover */
.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #0b5ed7, #00d4ff, #0b5ed7);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 60px rgba(11, 94, 215, 0.14),
        0 0 0 1px rgba(11, 94, 215, 0.08);
}

.svc-card:hover::before {
    opacity: 1;
}

/* Decorative orb */
.svc-orb {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.07) 0%, transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.svc-card:hover .svc-orb {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(0, 179, 255, 0.10) 0%, transparent 70%);
}

/* Popular badge */
.svc-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
    border: 1px solid rgba(255, 193, 7, 0.25);
    font-size: 12px;
    font-weight: 800;
    color: #b8860b;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Featured card */
.svc-card-featured {
    background: linear-gradient(165deg, rgba(11, 94, 215, 0.03) 0%, rgba(0, 179, 255, 0.04) 100%);
    border-color: rgba(11, 94, 215, 0.12);
    box-shadow: 0 12px 40px rgba(11, 94, 215, 0.10);
}

.svc-card-featured:hover {
    box-shadow:
        0 28px 70px rgba(11, 94, 215, 0.18),
        0 0 0 1px rgba(11, 94, 215, 0.12);
}

/* Badge row */
.svc-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(11, 94, 215, 0.30);
    transition: all 0.35s ease;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 14px 35px rgba(11, 94, 215, 0.40);
}

.svc-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.svc-num {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(11, 94, 215, 0.06) 0%, rgba(11, 94, 215, 0.02) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -3px;
}

/* Card content */
.svc-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
}

.svc-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Feature checklist */
.svc-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    flex: 1;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(11, 94, 215, 0.04);
    border: 1px solid rgba(11, 94, 215, 0.06);
    transition: all 0.3s ease;
}

.svc-features li:hover {
    background: rgba(11, 94, 215, 0.08);
    border-color: rgba(11, 94, 215, 0.12);
    transform: translateX(4px);
}

.svc-features svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary);
}

/* CTA button */
.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px 20px;
    border-radius: 14px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 94, 215, 0.25);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    align-self: flex-start;
}

.svc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(11, 94, 215, 0.35);
    gap: 14px;
}

.svc-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.svc-cta:hover svg {
    transform: translateX(3px);
}

/* ---- CLIENTS / PARTNERS ---- */
.client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 40, 85, 0.06);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(10, 27, 51, 0.04);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 3px 0 0 3px;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 94, 215, 0.10);
    border-color: rgba(11, 94, 215, 0.12);
}

.client-card:hover::before {
    opacity: 1;
}

.client-card span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
    letter-spacing: 0.2px;
}

/* ---- WHY CHOOSE US ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--grad);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11, 94, 215, 0.15);
}

.why-card:hover::after {
    width: 60%;
}

.why-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(11, 94, 215, 0.04);
    line-height: 1;
    letter-spacing: -2px;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(11, 94, 215, 0.07);
    border: 1px solid rgba(11, 94, 215, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--grad);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.3);
    transform: scale(1.08);
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.why-card:hover .why-icon svg {
    color: #fff;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 10px;
}

.why-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ---- PROCESS STEPS ---- */
.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 36px;
}

.process-line {
    position: absolute;
    top: 53px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(11, 94, 215, 0.06),
            rgba(11, 94, 215, 0.20),
            rgba(11, 94, 215, 0.20),
            rgba(11, 94, 215, 0.06));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ps-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.30);
    margin-bottom: 18px;
    flex-shrink: 0;
    position: relative;
}

.ps-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(11, 94, 215, 0.12);
}

.ps-card {
    padding: 20px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(var(--blur));
    box-shadow: var(--shadow-soft);
    width: 100%;
    transition: all 0.3s ease;
}

.ps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 94, 215, 0.12);
}

.ps-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 8px;
}

.ps-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ---- CTA SECTION – AURORA PREMIUM ---- */
.cta-section {
    padding: 0;
}

.cta-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #020a2e 0%, #082068 30%, #0b53c0 60%, #0e7fe8 85%, #00c8ff 100%);
    width: 100%;
    padding: 0;
}

/* Aurora mesh blobs */
.cta-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-m1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.18);
    top: -30%;
    right: -5%;
    animation: ctaFloat1 8s ease-in-out infinite alternate;
}

.cta-m2 {
    width: 350px;
    height: 350px;
    background: rgba(120, 180, 255, 0.12);
    bottom: -20%;
    left: -5%;
    animation: ctaFloat2 10s ease-in-out infinite alternate;
}

.cta-m3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 255, 200, 0.06);
    top: 20%;
    left: 40%;
    animation: ctaFloat3 12s ease-in-out infinite alternate;
}

@keyframes ctaFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 20px) scale(1.15);
    }
}

@keyframes ctaFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -15px) scale(1.1);
    }
}

@keyframes ctaFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15px, -20px) scale(1.2);
    }
}

/* Grid overlay */
.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}

/* Inner content */
.cta-inner {
    position: relative;
    z-index: 2;
    padding: 72px 24px;
}

/* Glass card */
.cta-glass {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Glow dot */
.cta-glow-dot {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Kicker */
.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.cta-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    animation: pulseDotHero 2s infinite;
}

/* Heading */
.cta-glass h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 16px;
}

.cta-highlight {
    background: linear-gradient(135deg, #fff, #82e4ff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-glass p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Trust stats row */
.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-trust {
    text-align: center;
}

.cta-trust strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cta-trust span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.cta-trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.10);
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #e8f4ff 100%);
    color: #0b47a8;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.18),
        0 0 30px rgba(255, 255, 255, 0.25);
}

.cta-btn-main svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-btn-main:hover svg {
    transform: translateX(4px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.cta-btn-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-btn-outline:hover svg {
    transform: translateX(4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1160px) {
    /* hero is already full-width */
}

@media (max-width: 980px) {
    .hero-section {
        padding: 12px;
        min-height: auto;
    }

    .hero-wrapper {
        border-radius: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 40px 24px 72px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-visual {
        max-width: 340px;
    }

    .hv-float1 {
        left: -12px;
        top: -8px;
    }

    .hv-float2 {
        right: -8px;
        bottom: -8px;
    }

    .hero-scroll {
        display: none;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .process-line {
        display: none;
    }

    .cta-wrapper {
        border-radius: 0;
    }

    .trust-pills {
        gap: 10px;
    }

    .trust-pill {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .hero-section {
        padding: 0;
    }

    .hero-wrapper {
        border-radius: 0;
    }

    .hero-content {
        padding: 28px 16px 56px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hv-float {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-bottom: 10px;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hv-ring {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        border-radius: 0;
    }

    .cta-inner {
        padding: 48px 12px;
    }

    .cta-glass {
        padding: 32px 20px;
    }

    .cta-glass h2 {
        font-size: 24px;
    }

    .cta-trust-row {
        gap: 16px;
    }

    .cta-trust-sep {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .cta-btn-main,
    .cta-actions .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Re-use existing keyframes from styles.css */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadePop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---- ABOUT PREVIEW (Homepage) ---- */
.ab-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ab-intro-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(11, 94, 215, 0.03);
    border: 1px solid rgba(15, 40, 85, 0.06);
    box-shadow: 0 8px 32px rgba(10, 27, 51, 0.06);
}

.ab-intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-intro-img-wrap:hover .ab-intro-img {
    transform: scale(1.04);
}

.ab-intro-body {
    padding: 8px 0;
}

.ab-intro-brand {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.ab-intro-company {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0 20px;
}

.ab-intro-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 16px;
}

.ab-intro-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 14px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 94, 215, 0.30);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-intro-readmore:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(11, 94, 215, 0.40);
}

.ab-intro-readmore svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ab-intro-readmore:hover svg {
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .ab-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .ab-intro-brand {
        font-size: 28px;
    }
}

/* ---- CLIENTS SECTION (Homepage) ---- */
.rf-clients {
    padding: 80px 0;
    background: linear-gradient(180deg,
            rgba(11, 94, 215, 0.02) 0%,
            rgba(0, 179, 255, 0.04) 50%,
            rgba(11, 94, 215, 0.02) 100%);
}

.rf-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.rf-client-card {
    padding: 18px 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(15, 40, 85, 0.06);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(10, 27, 51, 0.04);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 140px;
}

.rf-client-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.rf-client-card:hover img {
    transform: scale(1.08);
}

.rf-client-card span {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.3;
    display: block;
}

.rf-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 94, 215, 0.12);
    border-color: rgba(11, 94, 215, 0.12);
}

.rf-client-card:hover span {
    color: var(--primary);
}

@media (max-width: 980px) {
    .hero-section {
        min-height: 60vh;
    }

    .rf-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .hero-section {
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none;
        animation: none;
    }

    .rf-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rf-client-card {
        padding: 14px 10px 10px;
        min-height: 110px;
        gap: 6px;
    }

    .rf-client-card img {
        width: 56px;
        height: 56px;
    }

    .rf-client-card span {
        font-size: 10px;
    }

    .hp-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- HOMEPAGE PHOTO GRID ---- */
.hp-gallery-section {
    padding-left: 0;
    padding-right: 0;
}

.hp-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hp-photo-item {
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.hp-photo-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hp-photo-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .hp-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}