    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --blue-900: #0B1A33;
        --blue-800: #0F2444;
        --blue-700: #143566;
        --blue-600: #1A4B8C;
        --blue-500: #2563EB;
        --blue-400: #3B82F6;
        --blue-300: #60A5FA;
        --blue-200: #93C5FD;
        --blue-100: #DBEAFE;
        --blue-50: #EFF6FF;
        --white: #FFFFFF;
        --gray-50: #F8FAFC;
        --gray-100: #F1F5F9;
        --gray-200: #E2E8F0;
        --gray-300: #CBD5E1;
        --gray-400: #94A3B8;
        --gray-500: #64748B;
        --gray-600: #475569;
        --green-wa: #25D366;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
        --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
        --radius: 16px;
        --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Cairo', sans-serif;
        background: var(--white);
        color: var(--blue-900);
        overflow-x: hidden;
        line-height: 1.7;
    }

    body.locked {
        overflow: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
    }

    ul {
        list-style: none;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-100);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--blue-400);
        border-radius: 3px;
    }

    /* ===== PRELOADER ===== */
    .preloader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .preloader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .preloader-logo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: contain;
        background: #fff;
        border: 3px solid var(--blue-100);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3);
        animation: logoPulse 2s ease-in-out infinite, logoEntry 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @keyframes logoEntry {
        0% {
            transform: scale(0) rotate(-90deg);
            opacity: 0;
        }

        100% {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
    }

    @keyframes logoPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3);
        }

        50% {
            box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
        }
    }

    .preloader-text {
        margin-top: 24px;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--blue-700);
        opacity: 0;
        animation: fadeUp 0.6s 0.5s forwards;
    }

    .preloader-sub {
        font-size: 0.95rem;
        color: var(--gray-500);
        margin-top: 6px;
        opacity: 0;
        animation: fadeUp 0.6s 0.8s forwards;
    }

    .preloader-bar {
        width: 160px;
        height: 3px;
        background: var(--gray-200);
        border-radius: 2px;
        margin-top: 28px;
        overflow: hidden;
    }

    .preloader-bar span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
        border-radius: 2px;
        animation: loadBar 2s ease forwards;
    }

    @keyframes loadBar {
        0% {
            width: 0
        }

        100% {
            width: 100%
        }
    }

    @keyframes fadeUp {
        0% {
            transform: translateY(15px);
            opacity: 0
        }

        100% {
            transform: translateY(0);
            opacity: 1
        }
    }

    /* ===== NAVBAR ===== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        padding: 1rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
    }

    .navbar.solid {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow-sm);
        padding: 0.7rem 5%;
    }

    .logo-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-group img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: contain;
        background: var(--white);
        border: 2px solid var(--blue-200);
        transition: var(--transition);
    }

    .logo-group:hover img {
        transform: scale(1.08);
        border-color: var(--blue-400);
    }

    .logo-text h2 {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--blue-800);
        line-height: 1.2;
    }

    .logo-text span {
        font-size: 0.75rem;
        color: var(--blue-400);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu a {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--gray-600);
        position: relative;
        transition: var(--transition);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--blue-500);
        transition: var(--transition);
    }

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

    .nav-menu a:hover::after {
        width: 100%;
    }

    .nav-wa {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--blue-500);
        color: #fff;
        padding: 0.55rem 1.6rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .nav-wa:hover {
        transform: translateY(-2px);
        background: var(--blue-600);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .lang-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0.5rem 1rem;
        border-radius: 999px;
        background: var(--blue-100);
        color: var(--blue-700);
        font-weight: 800;
        font-size: 0.8rem;
        border: 1px solid var(--blue-200);
        transition: var(--transition);
        white-space: nowrap;
    }

    .lang-toggle:hover {
        background: var(--blue-200);
        transform: translateY(-2px);
    }

    .lang-toggle i {
        width: 16px;
        height: 16px;
    }

    .social-link {
        color: #fff;
        transition: var(--transition);
        font-size: 1.15rem;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
    }

    .social-link:hover {
        color: var(--blue-400);
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.12);
    }

    /* Mobile burger */
    .burger {
        display: none;
        background: none;
        border: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--blue-800);
        border-radius: 2px;
        transition: var(--transition);
    }

    /* ===== HERO ===== */
    .hero {
        min-height: 100vh;
        background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 40%, var(--blue-50) 100%);
        display: flex;
        align-items: center;
        padding: 7rem 5% 5rem;
        position: relative;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        width: 100%;
    }

    /* Decorative blobs */
    .blob {
        position: absolute;
        border-radius: 50%;
        opacity: 0.08;
        background: var(--blue-400);
        filter: blur(80px);
        pointer-events: none;
    }

    .blob-1 {
        width: 500px;
        height: 500px;
        top: -150px;
        right: -100px;
    }

    .blob-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        left: -80px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--blue-100);
        color: var(--blue-600);
        padding: 0.4rem 1.2rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero-tag i {
        width: 16px;
        height: 16px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        font-weight: 900;
        line-height: 1.2;
        color: var(--blue-900);
        margin-bottom: 1.5rem;
    }

    .hero h1 .accent {
        color: var(--blue-500);
    }

    .hero-desc {
        font-size: 1.15rem;
        color: var(--gray-500);
        max-width: 520px;
        margin-bottom: 2.5rem;
        line-height: 1.9;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-wa {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--green-wa);
        color: #fff;
        padding: 0.9rem 2.2rem;
        border-radius: 14px;
        font-weight: 800;
        font-size: 1.05rem;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        transition: var(--transition);
    }

    .btn-wa:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    }

    .btn-wa i {
        width: 22px;
        height: 22px;
    }

    .btn-blue {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--blue-500);
        color: #fff;
        padding: 0.9rem 2.2rem;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.05rem;
        transition: var(--transition);
    }

    .btn-blue:hover {
        background: var(--blue-600);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    }

    /* Hero Image */
    .hero-visual {
        position: relative;
        z-index: 2;
    }

    .hero-img-card {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--gray-200);
        position: relative;
    }

    .hero-img-card img {
        width: 100%;
        height: 420px;
        object-fit: contain;
        /* Ensures image is never cropped */
        background: var(--blue-50);
        padding: 5px;
    }

    /* Floating mini cards on the hero image */
    .float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        padding: 0.8rem 1.2rem;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 10px;
        animation: floatY 4s ease-in-out infinite;
    }

    .float-card i {
        color: var(--blue-500);
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .float-card .fc-text {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--blue-800);
    }

    .float-card .fc-sub {
        font-size: 0.7rem;
        color: var(--gray-400);
        font-weight: 600;
    }

    .fc-1 {
        top: 15%;
        left: -30px;
        animation-delay: 0s;
    }

    .fc-2 {
        bottom: 20%;
        right: -25px;
        animation-delay: 1.5s;
    }

    @keyframes floatY {

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

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

    /* ===== STATS ===== */
    .stats {
        padding: 4rem 5%;
        background: var(--blue-800);
        color: #fff;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .stat-card {
        text-align: center;
        padding: 1.5rem;
    }

    .stat-icon {
        margin: 0 auto 0.8rem;
    }

    .stat-icon i {
        width: 32px;
        height: 32px;
        color: var(--blue-300);
    }

    .stat-val {
        font-size: 2.5rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--blue-300);
        font-weight: 600;
    }

    /* ===== SECTION SHARED ===== */
    .sec {
        padding: 6rem 5%;
    }

    .sec-head {
        text-align: center;
        margin-bottom: 4rem;
    }

    .sec-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--blue-50);
        color: var(--blue-500);
        padding: 0.35rem 1rem;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }

    .sec-tag i {
        width: 14px;
        height: 14px;
    }

    .sec-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 900;
        color: var(--blue-900);
    }

    .sec-sub {
        color: var(--gray-500);
        margin-top: 0.8rem;
        font-size: 1.05rem;
        max-width: 600px;
        margin-inline: auto;
    }

    /* ===== SERVICES ===== */
    .srv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .srv-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        padding: 2.2rem 1.8rem;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .srv-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }

    .srv-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--blue-200);
    }

    .srv-card:hover::before {
        transform: scaleX(1);
    }

    .srv-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--blue-50);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .srv-icon i {
        width: 28px;
        height: 28px;
        color: var(--blue-500);
    }

    .srv-title {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--blue-800);
        margin-bottom: 0.6rem;
    }

    .srv-desc {
        color: var(--gray-500);
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* ===== BRAND SLIDER ===== */
    .brand-slider-container {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        height: 350px;
        overflow: hidden;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        background: var(--white);
    }

    .brand-slide {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 3rem 2rem;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        pointer-events: none;
    }

    .brand-slide.active-slide {
        opacity: 1;
        pointer-events: auto;
    }

    .brand-slide img {
        max-height: 140px;
        margin: 0 auto 1.5rem;
        object-fit: contain;
        border-radius: 12px;
    }

    .brand-slide h3 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--blue-800);
        margin-bottom: 0.6rem;
    }

    .brand-slide p {
        color: var(--gray-500);
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* ===== WHY US ===== */
    .why-bg {
        background: var(--blue-50);
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .why-img-wrap {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        position: relative;
    }

    .why-img-wrap img {
        width: 100%;
        height: 500px;
        object-fit: contain;
        /* Show the entire warehouse/product image */
        background: var(--white);
        padding: 10px;
    }

    .why-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid rgba(37, 99, 235, 0.15);
        border-radius: 20px;
        pointer-events: none;
    }

    .why-list {
        margin-top: 2rem;
    }

    .why-item {
        display: flex;
        gap: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        flex-shrink: 0;
        background: var(--blue-500);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-icon i {
        width: 22px;
        height: 22px;
    }

    .why-title {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--blue-800);
        margin-bottom: 2px;
    }

    .why-desc {
        font-size: 0.9rem;
        color: var(--gray-500);
    }

    /* ===== BRANDS ===== */
    .brands-sec {
        overflow: hidden;
        border-top: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
        padding: 2.5rem 0;
    }

    .brands-label {
        text-align: center;
        font-size: 0.82rem;
        color: var(--gray-400);
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .brands-row {
        display: flex;
        gap: 3rem;
        animation: marquee 25s linear infinite;
        white-space: nowrap;
    }

    .brand-item {
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--gray-300);
        transition: var(--transition);
        flex-shrink: 0;
    }

    .brand-item:hover {
        color: var(--blue-500);
    }

    @keyframes marquee {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(50%)
        }
    }

    /* ===== CTA ===== */
    .cta-sec {
        padding: 6rem 5%;
        text-align: center;
        background: linear-gradient(165deg, var(--blue-800) 0%, var(--blue-900) 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .cta-sec .blob {
        background: var(--blue-500);
        opacity: 0.1;
    }

    .cta-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 900;
        margin-bottom: 1rem;
    }

    .cta-desc {
        color: var(--blue-200);
        font-size: 1.1rem;
        max-width: 550px;
        margin: 0 auto 2.5rem;
        line-height: 1.8;
    }

    .cta-phone {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 2px;
        color: #fff;
        direction: ltr;
        margin-bottom: 2rem;
    }

    .cta-phone i {
        width: 28px;
        height: 28px;
        color: var(--blue-300);
    }

    /* ===== FLOATING WA BUTTON ===== */
    .wa-float {
        position: fixed;
        bottom: 28px;
        left: 28px;
        z-index: 500;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--green-wa);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
        animation: waFloat 3s ease-in-out infinite;
    }

    .wa-float i {
        width: 30px;
        height: 30px;
    }

    .wa-float:hover {
        transform: scale(1.12);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }

    @keyframes waFloat {

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

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

    /* ===== FOOTER ===== */
    .footer {
        padding: 2.5rem 5%;
        background: var(--blue-900);
        color: var(--blue-300);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .footer-logo span {
        font-weight: 700;
        color: #fff;
    }

    /* ===== REVEAL ===== */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.vis {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 900px) {
        .nav-menu {
            display: none;
        }

        .burger {
            display: flex;
        }

        .navbar {
            padding: 0.8rem 5%;
        }

        .hero {
            padding: 6rem 5% 3rem;
            min-height: auto;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

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

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

        .hero-visual {
            order: -1;
        }

        .hero-img-card img {
            height: 250px;
            object-fit: contain;
        }

        .float-card {
            display: none;
        }

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

        .stat-val {
            font-size: 1.8rem;
        }

        .sec {
            padding: 4rem 5%;
        }

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

        .brand-slider-container {
            height: auto;
            min-height: 380px;
            max-width: 100%;
            margin: 2rem 0;
        }

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

        .why-img-wrap img {
            height: 280px;
            object-fit: contain;
        }

        .why-img-wrap {
            order: -1;
        }

        .cta-phone {
            font-size: 1.3rem;
        }

        .footer {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

        .btn-wa,
        .btn-blue {
            width: 100%;
            justify-content: center;
            font-size: 1rem;
            padding: 0.85rem 1.5rem;
        }

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

        .nav-wa {
            padding: 0.45rem 1rem;
            font-size: 0.8rem;
        }

        .nav-actions {
            gap: 6px;
        }

        .lang-toggle {
            padding: 0.45rem 0.8rem;
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .stat-card {
            padding: 1rem 0.5rem;
        }

        .stat-val {
            font-size: 1.5rem;
        }

        .stat-label {
            font-size: 0.78rem;
        }

        .hero h1 {
            font-size: 1.7rem;
        }

        .sec-title {
            font-size: 1.5rem;
        }

        .cta-title {
            font-size: 1.5rem;
        }

        .brand-slider-container {
            min-height: 320px;
        }

        .brand-slide {
            padding: 1.5rem 1rem;
        }

        .brand-slide img {
            max-height: 110px;
            margin-bottom: 1rem;
        }

        .brand-slide h3 {
            font-size: 1.6rem;
            margin-bottom: 0.4rem;
        }

        .brand-slide p {
            font-size: 0.85rem;
        }

        .wa-float {
            width: 52px;
            height: 52px;
            bottom: 20px;
            left: 20px;
        }
    }