/* --- CORE STYLES --- */
:root {
            --blue-deep:  #1a3fa4;
            --blue-mid:   #2563eb;
            --blue-light: #dbeafe;
            --blue-pale:  #eff6ff;
            --accent:     #f59e0b;
            --accent-lt:  #fef3c7;
            --green:      #16a34a;
            --green-lt:   #dcfce7;
            --text-dark:  #0f172a;
            --text-mid:   #334155;
            --text-muted: #64748b;
            --border:     #e2e8f0;
            --white:      #ffffff;
            --offwhite:   #f8fafc;
        }

* { box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* --- COMMON CLASSES --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

section { padding: 72px 0; }

.section-label {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    margin-bottom: .5rem;
}
.section-label::before, .section-label::after {
    content: '';
    width: 18px; height: 2px;
    background: var(--blue-mid);
    border-radius: 2px;
}
h2.sec-title, h2.section-title, h2.block-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--text-dark);
}

/* --- Styles from index.php --- */
/* --- Navbar Core --- */
        .navbar {
            background: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 30px;
        }

        /* --- Nav Link Styling (Underline Effect) --- */
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            font-size: 15px;
            margin: 0 12px;
            padding: 5px 0 !important;
            position: relative;
            transition: color 0.3s ease;
        }

        /* Hilangkan panah dropdown bawaan bootstrap */
        .dropdown-toggle::after {
            display: none !important;
        }

        /* Efek Garis Bawah Biru */
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -18px; /* Menyesuaikan posisi garis di bawah navbar */
            left: 0;
            background-color: var(--maxwell-blue);
            transition: width 0.3s ease;
        }

        /* Muncul saat Hover atau Aktif */
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after,
        .navbar-nav .nav-link.show::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.show {
            color: var(--maxwell-blue) !important;
        }

        /* --- Mega Menu (Desktop) --- */
        @media (min-width: 992px) {
            .mega-menu {
                position: absolute;
                width: 100%;
                left: 0;
                top: 100%;
                background: #ffffff;
                border: none;
                border-top: 1px solid var(--border-color);
                box-shadow: 0 15px 30px rgba(0,0,0,0.05);
                padding: 40px 0;
                margin-top: 0;
                border-radius: 0;
            }

            .menu-column {
                border-right: 1px solid var(--border-color);
                padding: 0 30px;
            }

            .menu-column:last-child {
                border-right: none;
            }
        }

        /* --- Menu Content --- */
        .menu-header {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 15px;
            display: block;
        }

        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .menu-list li {
            margin-bottom: 8px;
        }

        .menu-list a {
            text-decoration: none;
            color: var(--text-gray);
            font-size: 14px;
            transition: color 0.2s;
        }

        .menu-list a:hover {
            color: var(--maxwell-blue);
        }

        .spec-link {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
        }

        .spec-link:hover {
            color: var(--maxwell-blue);
        }

        /* --- Mobile Adjustments --- */
        @media (max-width: 991px) {
            .navbar-nav .nav-link::after {
                display: none; /* Sembunyikan garis bawah di mobile agar lebih bersih */
            }
            .mega-menu {
                border: none;
                padding: 20px;
            }
            .menu-column {
                margin-bottom: 25px;
            }
            .right-icons {
                margin-top: 20px;
                padding-left: 12px;
            }
        }

        .right-icons i {
            font-size: 20px;
            margin-left: 20px;
            color: var(--text-dark);
            cursor: pointer;
        }

    .main-footer {
        background-color: #3C3C3C;
        padding-top: 40px;
        border-top: 1px solid #eee;
        font-family: 'Inter', sans-serif;
        color: #d4d4d4;
    }

    .footer-logo {
        height: 35px;
        margin-bottom: 20px;
    }

    .footer-info-text {
        font-size: 14px;
        color: #d4d4d4;
        line-height: 1.6;
    }

    /* Container utama daftar sosial media */
    .social-list {
        display: flex;
        flex-direction: column; /* Berjajar ke bawah */
        gap: 15px; /* Jarak antar list */
        margin-top: 15px;
    }

    /* Styling untuk setiap baris link */
    .social-item {
        display: flex;
        align-items: center; /* Ikon dan teks sejajar di tengah secara vertikal */
        text-decoration: none;
        color: #d4d4d4; /* Warna teks default */
        transition: all 0.3s ease;
    }

    /* Ukuran Ikon lebih besar */
    .social-item i {
        font-size: 18px; /* Ukuran ikon */
        width: 30px; /* Lebar tetap agar teks di sampingnya rata kiri */
        height: 30px;
        background-color: #333;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }

    /* Teks di samping ikon */
    .social-item span {
        font-size: 16px;
        font-weight: 500;
        margin-left: 10px;
    }

    /* Efek Hover */
    .social-item:hover {
        color: #0d6efd; /* Warna teks berubah biru saat hover */
    }

    .social-item:hover i {
        background-color: #0d6efd; /* Warna background ikon berubah biru */
        transform: scale(1.1); /* Ikon sedikit membesar */
    }

    .bottom-bar {
        margin-top: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        color: #888;
        background-color: #2e2e2e;
    }

    .bottom-links {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
    }

    .bottom-links a {
        color: #888;
        text-decoration: none;
    }

    /* Floating Chat Bot Icon */
    .chatbot-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 65px;
        height: 65px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
    }

    .chatbot-button img {
        width: 45px;
    }

/* --- Styles from home.php --- */
/* ══════════════════════════════
           HERO CAROUSEL
        ══════════════════════════════ */
        .hero-carousel-wrap {
            position: relative;
        }


        #heroCarousel .carousel-item img {
            width: 100%;
            height: 100%;
            /* object-fit: cover;
            object-position: center; */
        }

        /* Gradient overlay on slides */
        #heroCarousel .carousel-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(10, 24, 50, 0.72) 0%,
                rgba(10, 24, 50, 0.35) 0%,
                rgba(10, 24, 50, 0.05) 0%
            );
        }

        /* Hero text overlay */
        .hero-caption {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 10;
            padding: 0 2rem;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-size: .68rem;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255,255,255,.55);
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px;
            padding: .3rem 1rem;
            margin-bottom: 1.2rem;
            backdrop-filter: blur(4px);
        }

        .hero-heading {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.2rem, 5.5vw, 4rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            letter-spacing: -.025em;
            margin-bottom: 1rem;
        }

        .hero-heading span { color: #93c5fd; }

        .hero-sub {
            font-size: .92rem;
            color: rgba(255,255,255,.6);
            font-weight: 300;
            line-height: 1.8;
            max-width: 440px;
            margin-bottom: 1.8rem;
        }

        .btn-hero-primary {
            background: var(--blue-mid);
            border: none;
            border-radius: 10px;
            padding: .7rem 1.6rem;
            font-weight: 600;
            font-size: .875rem;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background .25s, transform .2s, box-shadow .2s;
            box-shadow: 0 4px 20px rgba(37,99,235,.4);
            text-decoration: none;
        }
        .btn-hero-primary:hover {
            background: var(--blue-deep);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-hero-wa {
            background: rgba(255,255,255,.1);
            border: 1.5px solid rgba(255,255,255,.25);
            border-radius: 10px;
            padding: .68rem 1.5rem;
            font-weight: 500;
            font-size: .875rem;
            color: rgba(255,255,255,.85);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background .2s, border-color .2s;
            text-decoration: none;
            backdrop-filter: blur(4px);
        }
        .btn-hero-wa:hover {
            background: rgba(37,211,102,.15);
            border-color: #25d366;
            color: #fff;
        }

        /* Carousel indicators – dot style */
        #heroCarousel .carousel-indicators {
            bottom: 24px;
            gap: 6px;
        }
        #heroCarousel .carousel-indicators [data-bs-target] {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,.35);
            border: none;
            transition: background .3s, transform .3s;
        }
        #heroCarousel .carousel-indicators .active {
            background: #fff;
            transform: scale(1.3);
        }

        /* Carousel controls */
        #heroCarousel .carousel-control-prev,
        #heroCarousel .carousel-control-next {
            width: 44px; height: 44px;
            top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 50%;
            backdrop-filter: blur(6px);
            opacity: 1;
            transition: background .2s;
        }
        #heroCarousel .carousel-control-prev { left: 20px; }
        #heroCarousel .carousel-control-next { right: 20px; }
        #heroCarousel .carousel-control-prev:hover,
        #heroCarousel .carousel-control-next:hover { background: rgba(255,255,255,.2); }
        #heroCarousel .carousel-control-prev-icon,
        #heroCarousel .carousel-control-next-icon { width: 16px; height: 16px; }

        /* Scroll hint */
        .scroll-hint {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .scroll-hint span {
            width: 1px; height: 40px;
            background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
            animation: scrollDown 1.6s ease-in-out infinite;
        }
        @keyframes scrollDown {
            0%,100%{opacity:1;transform:scaleY(1);}
            50%{opacity:.3;transform:scaleY(.5);}
        }

        /* --- News Section Buttons --- */
        .btn-news-more {
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            padding: 1rem 3.5rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--blue-mid) 0%, #3b82f6 100%);
            border: none;
            border-radius: 50px;
            text-decoration: none !important;
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(37,99,235,0.3);
            position: relative;
            overflow: hidden;
        }
        .btn-news-more::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.7s ease;
        }
        .btn-news-more:hover {
            color: #fff !important;
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 35px rgba(37,99,235,0.5);
        }
        .btn-news-more:hover::before {
            left: 100%;
        }
        .btn-news-more i {
            font-size: 1.2rem;
            transition: transform .3s ease;
        }
        .btn-news-more:hover i {
            transform: translateX(8px);
        }
        .btn-news-more:active {
            transform: translateY(-2px) scale(1);
        }

        /* ══════════════════════════════
           STAT TICKER
        ══════════════════════════════ */
        .stat-ticker {
            background: var(--blue-deep);
            padding: 1.2rem 0;
        }
        .ticker-inner {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .ticker-item {
            display: flex;
            align-items: center;
            gap: .75rem;
            flex-shrink: 0;
        }
        .ticker-icon {
            width: 36px; height: 36px;
            border-radius: 9px;
            background: rgba(255,255,255,.08);
            display: flex; align-items: center; justify-content: center;
            font-size: .95rem;
            color: #93c5fd;
        }
        .ticker-num {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .ticker-num sup { font-size: .7rem; color: var(--accent); }
        .ticker-label {
            font-size: .72rem;
            color: rgba(255,255,255,.45);
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .ticker-divider {
            width: 1px; height: 32px;
            background: rgba(255,255,255,.1);
            flex-shrink: 0;
        }

        @media (max-width: 767.98px) {
            .ticker-inner {
                gap: 1rem;
                justify-content: flex-start;
            }
            .ticker-divider {
                display: none;
            }
            .ticker-item {
                box-sizing: border-box;
                flex: 1 1 48%;
                max-width: 48%;
                min-width: 48%;
                justify-content: flex-start;
            }
            .ticker-item .ticker-icon {
                min-width: 36px;
            }
        }

        /* ══════════════════════════════
           SECTION COMMONS
        ══════════════════════════════ */
        

        .section-label {
            font-size: .68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--blue-mid);
            display: flex;
            align-items: center;
            gap: .5rem;
            justify-content: center;
            margin-bottom: .5rem;
        }
        .section-label::before, .section-label::after {
            content: '';
            width: 18px; height: 2px;
            background: var(--blue-mid);
            border-radius: 2px;
        }
        

        /* ══════════════════════════════
           NEW PRODUCT
        ══════════════════════════════ */
        .product-section { background: var(--offwhite); }

        .product-card-new {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s, border-color .3s;
            cursor: pointer;
            height: 100%;
        }
        .product-card-new:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(15,23,42,.10);
            border-color: var(--blue-light);
        }

        .prod-img-wrap {
            height: 190px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        .prod-img-wrap img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform .4s ease;
        }
        .product-card-new:hover .prod-img-wrap img { transform: scale(1.08); }

        .prod-body { padding: 1.1rem 1.3rem 1.3rem; text-align: center; }
        .prod-title {
            font-family: 'Syne', sans-serif;
            font-size: .9rem;
            font-weight: 800;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: .04em;
            margin-bottom: .2rem;
        }
        .prod-sub {
            font-size: .72rem;
            color: var(--text-muted);
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        /* Product carousel controls */
        #productCarousel { position: relative; padding: 0 40px; }
        #productCarousel .carousel-control-prev,
        #productCarousel .carousel-control-next {
            width: 36px; height: 36px;
            top: 50%; transform: translateY(-50%);
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 50%;
            opacity: 1;
            transition: border-color .2s, box-shadow .2s;
        }
        #productCarousel .carousel-control-prev { left: 0; }
        #productCarousel .carousel-control-next { right: 0; }
        #productCarousel .carousel-control-prev:hover,
        #productCarousel .carousel-control-next:hover {
            border-color: var(--blue-mid);
            box-shadow: 0 4px 12px rgba(37,99,235,.15);
        }
        .prod-ctrl-icon { font-size: 1rem; color: var(--text-dark); }

        /* Pagination dots */
        #productCarousel .carousel-indicators {
            position: static;
            margin-top: 1.5rem;
            gap: 5px;
        }
        #productCarousel .carousel-indicators [data-bs-target] {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            transition: background .25s, transform .25s;
        }
        #productCarousel .carousel-indicators .active {
            background: var(--blue-mid);
            transform: scale(1.3);
        }

        /* ══════════════════════════════
           SERVICES
        ══════════════════════════════ */
        .services-section { background: var(--white); }

        .service-card {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform .35s, box-shadow .35s;
            cursor: pointer;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(15,23,42,.10);
        }
        .service-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform .45s ease;
        }
        .service-card:hover img { transform: scale(1.06); }
        .service-img-wrap { overflow: hidden; }

        /* ══════════════════════════════
           CERTIFICATE
        ══════════════════════════════ */
        .cert-section { background: var(--offwhite); }

        .cert-card {
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            background: var(--white);
            transition: transform .3s, box-shadow .3s;
        }
        .cert-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(15,23,42,.08);
        }
        .cert-card img { width: 100%; display: block; }

        .cert-badge {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .7rem;
            font-weight: 600;
            color: var(--green);
            background: var(--green-lt);
            border-radius: 50px;
            padding: .25rem .75rem;
            margin-bottom: .5rem;
        }

        /* ══════════════════════════════
           NEWS & EVENT
        ══════════════════════════════ */
        .news-section { background: var(--white); }

        .news-card-new {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform .35s, box-shadow .35s, border-color .3s;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card-new:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(15,23,42,.10);
            border-color: var(--blue-light);
        }

        .news-img-wrap {
            overflow: hidden;
            height: 190px;
            flex-shrink: 0;
        }
        .news-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
            display: block;
        }
        .news-card-new:hover .news-img-wrap img { transform: scale(1.07); }

        .news-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }

        .news-date {
            font-size: .7rem;
            font-weight: 500;
            color: var(--blue-mid);
            background: var(--blue-pale);
            border-radius: 50px;
            padding: .2rem .65rem;
            display: inline-block;
            margin-bottom: .75rem;
        }

        .news-title {
            font-family: 'Syne', sans-serif;
            font-size: .95rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: .4rem;
            line-height: 1.4;
        }

        .news-desc {
            font-size: .8rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
            flex: 1;
        }

        .news-arrow {
            margin-top: 1rem;
            font-size: .78rem;
            font-weight: 600;
            color: var(--blue-mid);
            display: flex;
            align-items: center;
            gap: .3rem;
            transition: gap .2s;
        }
        .news-card-new:hover .news-arrow { gap: .55rem; }

        /* ══════════════════════════════
           CTA STRIP
        ══════════════════════════════ */
        .cta-
        .cta-wrap {
            background: var(--blue-deep);
            border-radius: 22px;
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .cta-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
            background-size: 24px 24px;
        }
        .cta-wrap::after {
            content: '';
            position: absolute;
            width: 380px; height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
            top: -140px; right: -80px;
        }
        .cta-inner { position: relative; z-index: 1; }
        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
        }
        .cta-title span { color: #93c5fd; }
        .btn-wa-big {
            background: #25d366;
            border: none;
            border-radius: 12px;
            padding: .8rem 1.8rem;
            font-weight: 600;
            font-size: .9rem;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background .25s, transform .2s, box-shadow .25s;
            box-shadow: 0 4px 20px rgba(37,211,102,.3);
            text-decoration: none;
        }
        .btn-wa-big:hover {
            background: #1ebe5d;
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-mail-big {
            background: rgba(255,255,255,.08);
            border: 1.5px solid rgba(255,255,255,.2);
            border-radius: 12px;
            padding: .78rem 1.8rem;
            font-weight: 500;
            font-size: .9rem;
            color: rgba(255,255,255,.8);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background .2s, border-color .2s;
            text-decoration: none;
        }
        .btn-mail-big:hover { border-color: rgba(255,255,255,.5); color: #fff; }

        /* Reveal animation */
        .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Styles from about.php --- */
/* ── NAV BAR (minimal branding strip) ── */
        .topbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: .75rem 0;
        }
        .topbar-brand {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--blue-deep);
            text-decoration: none;
            letter-spacing: -.01em;
        }
        .topbar-link {
            font-size: .8rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color .2s;
        }
        .topbar-link:hover { color: var(--blue-mid); }

        /* ── HERO ── */
        .hero {
            background: var(--offwhite);
            position: relative;
            overflow: hidden;
            padding: 80px 0 100px;
        }

        /* Decorative blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            opacity: .45;
        }
        .blob-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, #bfdbfe, #dbeafe);
            top: -120px; right: -100px;
        }
        .blob-2 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, #fde68a, #fef3c7);
            bottom: -80px; left: -60px;
        }

        /* Dot grid texture */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: .45;
        }

        .hero-chip {
            display: inline-flex; align-items: center; gap: .45rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: .3rem 1rem;
            font-size: .72rem;
            font-weight: 500;
            color: var(--blue-mid);
            letter-spacing: .07em;
            text-transform: uppercase;
            box-shadow: 0 1px 4px rgba(0,0,0,.06);
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 4vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -.03em;
            color: var(--text-dark);
        }

        .hero-title .highlight {
            color: var(--blue-mid);
            position: relative;
            display: inline-block;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            left: 0; right: 0;
            bottom: 4px;
            height: 6px;
            background: var(--accent);
            border-radius: 4px;
            z-index: -1;
            opacity: .55;
        }

        .hero-sub {
            font-size: .98rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 460px;
            font-weight: 300;
        }

        .btn-primary-custom {
            background: var(--blue-mid);
            border: none;
            border-radius: 10px;
            padding: .7rem 1.8rem;
            font-weight: 600;
            font-size: .88rem;
            color: var(--white);
            transition: background .25s, transform .2s, box-shadow .25s;
            box-shadow: 0 4px 16px rgba(37,99,235,.25);
        }
        .btn-primary-custom:hover {
            background: var(--blue-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37,99,235,.3);
            color: #fff;
        }

        .btn-outline-custom {
            background: transparent;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: .68rem 1.6rem;
            font-weight: 500;
            font-size: .88rem;
            color: var(--text-mid);
            transition: border-color .2s, color .2s;
        }
        .btn-outline-custom:hover { border-color: var(--blue-mid); color: var(--blue-mid); }

        /* Hero card floating */
        .hero-card {
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 12px 48px rgba(15,23,42,.10);
            overflow: hidden;
        }

        .hero-card-head {
            background: var(--blue-pale);
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid var(--blue-light);
            display: flex;
            align-items: center;
            gap: .6rem;
        }
        .dot { width:10px;height:10px;border-radius:50%; }

        .card-row {
            display: flex;
            align-items: center;
            gap: .8rem;
            padding: .8rem 1.5rem;
            border-bottom: 1px solid var(--border);
            font-size: .82rem;
        }
        .card-row:last-child { border-bottom: none; }

        .card-icon-sm {
            width: 34px; height: 34px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            font-size: .9rem;
        }

        .badge-pill {
            font-size: .68rem;
            padding: .2rem .65rem;
            border-radius: 50px;
            font-weight: 500;
        }

        /* ── STAT BAR ── */
        .stat-bar {
            background: var(--blue-deep);
            padding: 2.5rem 0;
        }
        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }
        .stat-num sup { font-size: 1.3rem; color: var(--accent); }
        .stat-label {
            font-size: .75rem;
            color: rgba(255,255,255,.5);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-top: .35rem;
        }
        .stat-divider { border-left: 1px solid rgba(255,255,255,.1); }

        /* ── SECTION LABELS ── */
        .section-label {
            font-size: .7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--blue-mid);
            margin-bottom: .6rem;
            display: flex;
            align-items: center;
            gap: .4rem;
        }
        .section-label::before {
            content: '';
            display: block;
            width: 20px; height: 2px;
            background: var(--blue-mid);
            border-radius: 2px;
        }

        

        /* ── PILLAR CARDS ── */
        .pillar-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 2rem;
            transition: transform .3s, box-shadow .3s, border-color .3s;
            position: relative;
            overflow: hidden;
        }
        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-mid), #60a5fa);
            opacity: 0;
            transition: opacity .3s;
        }
        .pillar-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(37,99,235,.12);
            border-color: transparent;
        }
        .pillar-card:hover::before { opacity: 1; }

        .pillar-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 1.2rem;
        }

        .tag-sm {
            display: inline-block;
            font-size: .68rem;
            font-weight: 500;
            padding: .2rem .65rem;
            border-radius: 50px;
            letter-spacing: .05em;
        }

        /* ── VISION ── */
        .vision-section {
            background: var(--blue-deep);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .vision-section::after {
            content: '"';
            position: absolute;
            top: -20px; right: 40px;
            font-size: 18rem;
            line-height: 1;
            color: rgba(255,255,255,.04);
            font-family: Georgia, serif;
            pointer-events: none;
        }
        .vision-quote {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-style: italic;
            font-weight: 300;
            color: rgba(255,255,255,.85);
            line-height: 1.85;
        }
        .vision-quote strong { color: #93c5fd; font-style: normal; font-weight: 600; }

        /* ── WHY LIST ── */
        .why-row {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            padding: 1.1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .why-row:last-child { border-bottom: none; }

        .why-num {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--blue-light);
            width: 36px;
            flex-shrink: 0;
            line-height: 1;
            padding-top: 2px;
        }

        .why-content strong {
            display: block;
            font-size: .92rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: .2rem;
        }
        .why-content span { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

        /* ── DISTRIBUTOR ── */
        .dist-box {
            background: var(--offwhite);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .dist-box::before {
            content: '';
            position: absolute;
            top: -30px; right: -30px;
            width: 160px; height: 160px;
            border-radius: 50%;
            background: var(--blue-pale);
            pointer-events: none;
        }
        .dist-logo-text {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blue-deep);
            letter-spacing: .05em;
        }

        /* ── FOOTER ── */
        .footer-strip {
            background: var(--offwhite);
            border-top: 1px solid var(--border);
            padding: 1.2rem 0;
            font-size: .78rem;
            color: var(--text-muted);
        }

        /* ── REVEAL ── */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Styles from solution.php --- */
/* ── BANNER ── */
        .page-banner {
            height: 280px;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #1e40af 55%, #2563eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
            background-size: 28px 28px;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%);
            top: -180px; right: -100px;
        }
        .banner-blob2 {
            position: absolute;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,158,11,.1), transparent 70%);
            bottom: -120px; left: -60px;
        }
        .banner-content { position: relative; z-index: 1; text-align: center; }
        .banner-chip {
            display: inline-block;
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(255,255,255,.6);
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px;
            padding: .3rem 1rem;
            margin-bottom: 1rem;
        }
        .banner-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.2rem, 5.5vw, 3.5rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.025em;
            margin: 0;
            line-height: 1.1;
        }
        .banner-title span { color: #93c5fd; }
        .banner-sub {
            font-size: .88rem;
            color: rgba(255,255,255,.5);
            margin-top: .6rem;
            font-weight: 300;
        }

        /* ── SECTION LABEL ── */
        .section-label {
            font-size: .68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--blue-mid);
            display: flex;
            align-items: center;
            gap: .5rem;
            justify-content: center;
        }
        .section-label::before, .section-label::after {
            content: '';
            width: 20px; height: 2px;
            background: var(--blue-mid);
            border-radius: 2px;
        }
        

        /* ── SOLUTION CARD ── */
        .solution-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: transform .35s ease, box-shadow .35s ease, border-color .3s;
        }
        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 56px rgba(15,23,42,.11);
            border-color: transparent;
        }

        /* Image area */
        .sol-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .sol-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .solution-card:hover .sol-img-wrap img {
            transform: scale(1.07);
        }

        /* Image overlay gradient */
        .sol-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,.45) 100%);
        }

        /* Number badge top-right */
        .sol-num {
            position: absolute;
            top: 14px; right: 14px;
            font-family: 'Syne', sans-serif;
            font-size: .7rem;
            font-weight: 800;
            color: rgba(255,255,255,.7);
            background: rgba(0,0,0,.25);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px;
            padding: .2rem .7rem;
            letter-spacing: .08em;
        }

        /* Floating icon that bridges image & body */
        .sol-icon-bridge {
            width: 54px; height: 54px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
            border: 3px solid var(--white);
            box-shadow: 0 4px 16px rgba(15,23,42,.14);
            margin-top: -27px;
            margin-left: 24px;
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }

        /* Body */
        .sol-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

        .sol-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: .5rem;
        }

        .sol-desc {
            font-size: .83rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 1.2rem;
        }

        /* Feature list */
        .sol-list {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: .45rem;
            margin-top: auto;
        }
        .sol-list li {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-size: .8rem;
            color: var(--text-mid);
        }
        .sol-list li::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ── BOTTOM CTA STRIP ── */
        .cta-strip {
            background: var(--blue-deep);
            border-radius: 22px;
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
            background-size: 24px 24px;
        }
        .cta-strip::after {
            content: '';
            position: absolute;
            width: 350px; height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
            top: -120px; right: -80px;
        }
        .cta-content { position: relative; z-index: 1; }
        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
        }
        .cta-title span { color: #93c5fd; }

        .btn-wa-cta {
            background: #25d366;
            border: none;
            border-radius: 12px;
            padding: .75rem 1.8rem;
            font-weight: 600;
            font-size: .9rem;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background .25s, transform .2s, box-shadow .25s;
            box-shadow: 0 4px 20px rgba(37,211,102,.3);
            text-decoration: none;
        }
        .btn-wa-cta:hover {
            background: #1ebe5d;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(37,211,102,.35);
            color: #fff;
        }

        .btn-contact-cta {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,.25);
            border-radius: 12px;
            padding: .74rem 1.8rem;
            font-weight: 500;
            font-size: .9rem;
            color: rgba(255,255,255,.8);
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: border-color .2s, color .2s;
            text-decoration: none;
        }
        .btn-contact-cta:hover {
            border-color: rgba(255,255,255,.6);
            color: #fff;
        }

        /* Reveal */
        .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Styles from contact.php --- */
/* ── PAGE BANNER ── */
        .page-banner {
            height: 260px;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #1e40af 50%, #2563eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
            background-size: 28px 28px;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
            top: -120px; right: -80px;
        }
        .banner-content { position: relative; z-index: 1; text-align: center; }
        .banner-chip {
            display: inline-block;
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: rgba(255,255,255,.6);
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px;
            padding: .3rem 1rem;
            margin-bottom: 1rem;
        }
        .banner-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
            margin: 0;
        }
        .banner-title span { color: #93c5fd; }
        .banner-sub {
            font-size: .88rem;
            color: rgba(255,255,255,.55);
            margin-top: .5rem;
            font-weight: 300;
        }

        /* ── SECTION LABEL ── */
        .section-label {
            font-size: .68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .15em;
            color: var(--blue-mid);
            display: flex;
            align-items: center;
            gap: .5rem;
            margin-bottom: .5rem;
        }
        .section-label::before {
            content: '';
            width: 18px; height: 2px;
            background: var(--blue-mid);
            border-radius: 2px;
            display: block;
        }
        

        /* ── FORM CARD ── */
        .form-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 2.5rem;
            box-shadow: 0 4px 32px rgba(15,23,42,.06);
        }

        .form-label-custom {
            font-size: .78rem;
            font-weight: 600;
            color: var(--text-mid);
            margin-bottom: .4rem;
            display: block;
        }

        .form-control-custom,
        .form-select-custom {
            width: 100%;
            background: var(--offwhite);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: .65rem 1rem;
            font-size: .875rem;
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color .2s, box-shadow .2s, background .2s;
            appearance: none;
        }
        .form-control-custom::placeholder { color: #cbd5e1; }
        .form-control-custom:focus,
        .form-select-custom:focus {
            border-color: var(--blue-mid);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(37,99,235,.1);
        }
        textarea.form-control-custom { resize: none; }

        /* Select custom arrow */
        .select-wrapper { position: relative; }
        .select-wrapper::after {
            content: '\F282';
            font-family: 'Bootstrap-icons';
            position: absolute;
            right: 1rem; top: 50%; transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            font-size: .8rem;
        }

        /* Solution pills */
        .solution-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
        .sol-pill {
            cursor: pointer;
            font-size: .75rem;
            font-weight: 500;
            padding: .35rem .9rem;
            border-radius: 50px;
            border: 1.5px solid var(--border);
            background: var(--white);
            color: var(--text-mid);
            transition: all .2s;
            user-select: none;
        }
        .sol-pill:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
        .sol-pill.active {
            background: var(--blue-pale);
            border-color: var(--blue-mid);
            color: var(--blue-mid);
            font-weight: 600;
        }

        /* WA Button */
        .btn-wa {
            background: #25d366;
            border: none;
            border-radius: 12px;
            padding: .8rem 2rem;
            font-weight: 600;
            font-size: .9rem;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            transition: background .25s, transform .2s, box-shadow .25s;
            box-shadow: 0 4px 20px rgba(37,211,102,.3);
        }
        .btn-wa:hover {
            background: #1ebe5d;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(37,211,102,.35);
            color: #fff;
        }
        .btn-wa i { font-size: 1.2rem; }

        /* ── MAP ── */
        .map-wrap {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(15,23,42,.07);
            transition: box-shadow .3s;
        }
        .map-wrap:hover { box-shadow: 0 10px 40px rgba(15,23,42,.12); }
        .map-wrap iframe { display: block; }

        /* ── INFO CARDS ── */
        .info-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 1.6rem;
            transition: border-color .3s, transform .3s, box-shadow .3s;
            height: 100%;
        }
        .info-card:hover {
            border-color: var(--blue-mid);
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(37,99,235,.10);
        }

        .contact-icon-wrap {
            width: 48px; height: 48px;
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-bottom: 1rem;
        }

        .info-title {
            font-family: 'Syne', sans-serif;
            font-size: .95rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: .5rem;
        }
        .info-text {
            font-size: .82rem;
            color: var(--text-muted);
            line-height: 1.75;
        }
        .info-text a { color: var(--blue-mid); text-decoration: none; }
        .info-text a:hover { text-decoration: underline; }

        /* Reveal */
        .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
.cta-section { background: var(--offwhite); padding: 56px 0; }
.cta-wrap {
    background: var(--blue-deep);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 24px 24px;
}
.cta-wrap::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
    top: -140px; right: -80px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}
.cta-title span { color: #93c5fd; }
.btn-wa-big {
    background: #25d366;
    border: none;
    border-radius: 12px;
    padding: .8rem 1.8rem;
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
    text-decoration: none;
}
.btn-wa-big:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    color: #fff;
}
.btn-mail-big {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: .78rem 1.8rem;
    font-weight: 500;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}
.btn-mail-big:hover { border-color: rgba(255,255,255,.5); color: #fff; }

 / *   N e w s   S e e   A l l   B u t t o n   * / 
 . b t n - s e e - a l l   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   . 5 r e m ; 
         f o n t - s i z e :   . 8 8 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   v a r ( - - b l u e - m i d ) ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         b a c k g r o u n d :   v a r ( - - b l u e - p a l e ) ; 
         p a d d i n g :   . 6 r e m   1 . 2 5 r e m ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t r a n s i t i o n :   a l l   . 2 5 s   e a s e ; 
         b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 } 
 . b t n - s e e - a l l   i   { 
         f o n t - s i z e :   . 7 5 r e m ; 
         t r a n s i t i o n :   t r a n s f o r m   . 2 5 s   e a s e ; 
 } 
 . b t n - s e e - a l l : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - b l u e - m i d ) ; 
         c o l o r :   # f f f ; 
         b o r d e r - c o l o r :   v a r ( - - b l u e - m i d ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 3 7 , 9 9 , 2 3 5 , . 2 ) ; 
 } 
 . b t n - s e e - a l l : h o v e r   i   { 
         t r a n s f o r m :   t r a n s l a t e X ( 3 p x ) ; 
 } 
  
 
 / *   C e n t e r   N e w s   M o r e   B u t t o n   * / 
 . b t n - n e w s - m o r e   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   . 7 5 r e m ; 
         p a d d i n g :   . 8 r e m   2 . 5 r e m ; 
         f o n t - s i z e :   . 9 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   v a r ( - - b l u e - m i d ) ; 
         b a c k g r o u n d :   # f f f ; 
         b o r d e r :   2 p x   s o l i d   v a r ( - - b l u e - m i d ) ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         z - i n d e x :   1 ; 
 } 
 . b t n - n e w s - m o r e   i   { 
         t r a n s i t i o n :   t r a n s f o r m   . 3 s   e a s e ; 
 } 
 . b t n - n e w s - m o r e : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ;   l e f t :   0 ; 
         w i d t h :   0 % ;   h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   v a r ( - - b l u e - m i d ) ; 
         t r a n s i t i o n :   w i d t h   . 3 s   e a s e ; 
         z - i n d e x :   - 1 ; 
 } 
 . b t n - n e w s - m o r e : h o v e r   { 
         c o l o r :   # f f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 3 7 , 9 9 , 2 3 5 , . 2 ) ; 
 } 
 . b t n - n e w s - m o r e : h o v e r : : b e f o r e   { 
         w i d t h :   1 0 0 % ; 
 } 
 . b t n - n e w s - m o r e : h o v e r   i   { 
         t r a n s f o r m :   t r a n s l a t e X ( 5 p x ) ; 
 } 
  
 
 / *   U l t r a   P r e m i u m   N e w s   M o r e   B u t t o n   * / 
 . b t n - n e w s - m o r e   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   . 8 r e m ; 
         p a d d i n g :   . 9 r e m   3 r e m ; 
         f o n t - s i z e :   1 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # f f f ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   v a r ( - - b l u e - m i d ) ,   # 3 b 8 2 f 6 ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ; 
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 3 7 , 9 9 , 2 3 5 , 0 . 2 5 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 . b t n - n e w s - m o r e : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ;   l e f t :   - 1 0 0 % ; 
         w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ,   t r a n s p a r e n t ) ; 
         t r a n s i t i o n :   l e f t   0 . 6 s   e a s e ; 
 } 
 . b t n - n e w s - m o r e : h o v e r   { 
         c o l o r :   # f f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x )   s c a l e ( 1 . 0 2 ) ; 
         b o x - s h a d o w :   0   1 5 p x   3 0 p x   r g b a ( 3 7 , 9 9 , 2 3 5 , 0 . 4 ) ; 
 } 
 . b t n - n e w s - m o r e : h o v e r : : b e f o r e   { 
         l e f t :   1 0 0 % ; 
 } 
 . b t n - n e w s - m o r e   i   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         t r a n s i t i o n :   t r a n s f o r m   . 3 s   e a s e ; 
 } 
 . b t n - n e w s - m o r e : h o v e r   i   { 
         t r a n s f o r m :   t r a n s l a t e X ( 6 p x ) ; 
 } 
 . b t n - n e w s - m o r e : a c t i v e   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x )   s c a l e ( 1 ) ; 
 } 
  
 