
    
    /* =========================================================
       1. GLOBAL RESET & ORIGINAL MASTER VARIABLES
       ========================================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }


    :root {
        --primary: #f9961e;       /* Jingga Kebanggaan */
        --accent-red: #dc2626;    /* Merah Premium */
        --gold: #d4af37;          /* Emas Klasik */
        --dark-slate: #111111;    /* Hitam Mewah */
        --text-muted: #555555;    /* Abu Kontras */
        --bg-ambient: #fffaf5;    /* Cream Halus */

        --shadow-premium:
            0 15px 30px rgba(17, 17, 17, 0.02),
            0 35px 70px rgba(17, 17, 17, 0.04),
            0 65px 100px rgba(249, 150, 30, 0.03);

        --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }


    html { scroll-behavior: smooth; }

    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--dark-slate);
        background: #ffffff;
        line-height: 1.75;
        overflow-x: hidden;
    }


    .container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }

    section { padding: 110px 0; position: relative; }

    img { width: 100%; display: block; height: auto; }


    /* Premium Badge System */
    .premium-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: rgba(220, 38, 38, 0.06);
        border: 1px solid rgba(220, 38, 38, 0.1);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        border-radius: 50px;
        text-transform: uppercase;
        margin-bottom: 25px;
    }


    .left-heading h2, .center-heading h2 {
        font-size: 40px;
        font-weight: 900;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .left-heading h2 span, .center-heading h2 span { color: var(--accent-red); }

    .center-heading { text-align: center; max-width: 800px; margin: 0 auto 60px; }


    /* Luxury Buttons */
    .btn-lux {
        display: inline-block;
        padding: 16px 36px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: var(--transition-smooth);
        text-align: center;
    }

    .btn-lux.primary { background: var(--accent-red); color: #fff; box-shadow: 0 10px 25px rgba(220,38,38,0.2); }

    .btn-lux.primary:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(249,150,30,0.3); }

    .btn-lux.outline { border: 2px solid var(--dark-slate); color: var(--dark-slate); background: transparent; }

    .btn-lux.outline:hover { background: var(--dark-slate); color: #fff; transform: translateY(-3px); }


    /* =========================================================
       2. NAVBAR COMPONENT
       ========================================================= */
    .main-header {
        position: fixed;
        top: 0; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(17, 17, 17, 0.03);
        transition: var(--transition-smooth);
    }

    .main-header.scrolled { background: #ffffff; box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06); }

    .navbar { height: 90px; display: flex; justify-content: space-between; align-items: center; }

    .main-header.scrolled .navbar { height: 75px; }


    .navbar-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }

    .navbar-brand-wrap { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }

    .navbar-logo-img { height: 50px; width: auto; object-fit: contain; transition: var(--transition-smooth); }

    .main-header.scrolled .navbar-logo-img { height: 42px; }

    .navbar-brand-text { font-size: 19px; font-weight: 800; color: var(--dark-slate); letter-spacing: -0.5px; }

    .navbar-brand-text span { color: var(--accent-red); }

    .navbar-brand-sub {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--gold);
        margin-top: 3px;
    }


    /* Nav Item + Dropdown Layanan Korporasi */
    .nav-item { position: relative; list-style: none; }

    .nav-caret { display: inline-block; font-size: 10px; margin-left: 4px; color: var(--gold); transition: transform 0.3s ease; vertical-align: middle; }

    .nav-item:hover .nav-caret { transform: rotate(180deg); }

    .dropdown-menu {
        list-style: none;
        position: absolute;
        top: 100%;
        left: 50%;
        min-width: 285px;
        padding: 10px;
        margin: 18px 0 0 -142.5px;
        background: #ffffff;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(17, 17, 17, 0.14), 0 40px 90px rgba(249, 150, 30, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(14px);
        transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
        z-index: 100;
    }

    .dropdown-menu::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }

    .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(4px);
    }

    .dropdown-menu li { margin: 0; }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-slate);
        transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
    }

    .dropdown-menu a::before {
        content: "";
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.5;
        flex-shrink: 0;
        transition: opacity 0.25s ease;
    }

    .dropdown-menu a::after { display: none; }

    .dropdown-menu a:hover { background: rgba(249, 150, 30, 0.1); color: var(--accent-red); padding-left: 20px; }

    .dropdown-menu a:hover::before { opacity: 1; }


    /* Offset anchor agar tidak tertutup navbar fixed */
    [id] { scroll-margin-top: 130px; }


    .nav-menu { display: flex; align-items: center; gap: 32px; }

    .nav-menu a { font-size: 15px; font-weight: 600; color: var(--dark-slate); text-decoration: none; position: relative; transition: 0.3s; }

    .nav-menu a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--accent-red); transition: 0.3s ease; }

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

    .nav-menu a:hover, .nav-menu a.active { color: var(--accent-red); }


    .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10000; }

    .menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--dark-slate); border-radius: 2px; transition: var(--transition-smooth); }


    /* Language Toggle ID / EN */
    .lang-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 50px;
        border: 1.5px solid rgba(212, 175, 55, 0.4);
        background: rgba(212, 175, 55, 0.06);
        cursor: pointer;
        user-select: none;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
        transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .lang-toggle:hover { border-color: var(--gold); box-shadow: 0 0 18px rgba(212, 175, 55, 0.25); transform: translateY(-1px); }

    .lang-opt { color: rgba(17, 17, 17, 0.35); transition: color 0.3s ease; }

    .lang-opt.active { color: var(--accent-red); }

    .lang-divider { color: rgba(17, 17, 17, 0.25); font-weight: 500; }


    /* =========================================================
       3. HERO SECTION (ASYMMETRIC GRID)
       ========================================================= */
    .premium-hero-cikarang { padding-top: 180px; padding-bottom: 90px; background: linear-gradient(180deg, #ffffff 0%, var(--bg-ambient) 100%); }

    .hero-layout-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }

    .hero-title-large { font-size: 50px; font-weight: 900; line-height: 1.2; letter-spacing: -1px; margin-bottom: 25px; }

    .hero-title-large span { color: var(--accent-red); }

    .hero-subtitle-text { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }

    .hero-action-buttons { display: flex; gap: 15px; }

    .hero-media-wrapper { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-premium); border: 1px solid rgba(249,150,30,0.1); }


    /* Trust Statistics Banner */
    .trust-metrics-bar { background: #ffffff; padding: 35px 0; border-top: 1px solid rgba(17,17,17,0.05); border-bottom: 1px solid rgba(17,17,17,0.05); }

    .metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }

    .metric-card h3 { font-size: 34px; font-weight: 900; color: var(--accent-red); margin-bottom: 5px; }

    .metric-card p { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }


    /* =========================================================
       4. TENTANG KAMI SECTION
       ========================================================= */
    .about-section { background: var(--bg-ambient); }

    .about-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }

    .about-showcase { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-premium); }

    .about-desc { color: var(--text-muted); margin-bottom: 25px; font-size: 18px; }


    /* =========================================================
       5. LAYANAN KAMI (MODERN MINIMALIST PREMIUM CARDS)
       ========================================================= */
    .services-section { background: #ffffff; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

    .service-card { background: #ffffff; border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 20px; padding: 45px 35px; box-shadow: var(--shadow-premium); transition: var(--transition-smooth); }

    .service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(249,150,30,0.08); }


    .service-icon-wrap {
        width: 60px; height: 60px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 16px;
        display: flex; align-items: center; justify-content: center;
        color: var(--gold); margin-bottom: 25px;
        transition: var(--transition-smooth);
    }

    .service-icon-wrap svg { width: 28px; height: 28px; stroke-linecap: round; stroke-linejoin: round; }

    .service-card:hover .service-icon-wrap { background: rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.2); color: var(--accent-red); transform: scale(1.05); }


    .service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 15px; color: var(--dark-slate); line-height: 1.3; }

    .service-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }


    /* =========================================================
       5.1 PREMIUM WORKFLOW SECTION (SCROLL-DRIVEN FADE-UP)
       ========================================================= */
    .workflow-section {
        background: var(--bg-ambient);
        position: relative;
        overflow: hidden;
    }


    .workflow-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
    }


    .workflow-grid::before {
        content: "";
        position: absolute;
        top: 35px; left: 40px; right: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-red) 0%, var(--primary) 50%, rgba(212,175,55,0.2) 100%);
        z-index: 1;
    }


    .workflow-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: var(--shadow-premium);
        position: relative;
        z-index: 2;
        border: 1px solid rgba(17,17,17,0.02);
        transition: var(--transition-smooth);

        view-timeline-name: --fadeUpTimeline;
        view-timeline-axis: block;
        animation-timeline: --fadeUpTimeline;
        animation-name: cssFadeUp;
        animation-range: entry 10% cover 30%;
        animation-fill-mode: both;
    }


    .workflow-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 25px 50px rgba(249,150,30,0.1);
    }


    .workflow-step-num {
        width: 54px; height: 54px;
        background: var(--dark-slate);
        color: #ffffff;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; font-size: 16px;
        margin-bottom: 25px;
        border: 4px solid #ffffff;
        box-shadow: 0 0 0 2px var(--accent-red);
        transition: var(--transition-smooth);
    }


    .workflow-card:hover .workflow-step-num {
        background: var(--accent-red);
        box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
    }


    .workflow-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; color: var(--dark-slate); }

    .workflow-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }


    @keyframes cssFadeUp {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }


    @media (max-width: 991px) {
        .workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        .workflow-grid::before { display: none; }
    }

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


    /* =========================================================
       6. HIGH IMPACT SOLID CTA SECTION (BACKGROUND OVERLAY)
       ========================================================= */
    .premium-solid-cta {
        background: linear-gradient(rgba(17, 17, 17, 0.65), rgba(17, 17, 17, 0.65)),
                    url('asset/ikhwan-konsultan1.jpeg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        color: #ffffff;
        text-align: center;
        padding: 100px 0;
        position: relative;
    }

    .cta-container { position: relative; z-index: 2; }

    .cta-container h2 { font-size: 40px; font-weight: 900; margin-bottom: 20px; color: #ffffff; letter-spacing: -0.5px; }

    .cta-container p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto 35px; line-height: 1.8; }


    .btn-lux.btn-gold-accent { background: var(--gold); color: var(--dark-slate); font-weight: 800; }

    .btn-lux.btn-gold-accent:hover { background: #ffffff; color: var(--dark-slate); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255,255,255,0.15); }


    /* =========================================================
       7. FAQS SECTION (ACCORDION - STABLE & ROBUST)
       ========================================================= */
    .faq-section { background: var(--bg-ambient); }

    .faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

    .faq-item { background: #ffffff; border-radius: 16px; box-shadow: var(--shadow-premium); overflow: hidden; border: 1px solid rgba(17,17,17,0.03); }

    .faq-trigger { width: 100%; padding: 24px 30px; text-align: left; background: none; border: none; font-size: 17px; font-weight: 700; color: var(--dark-slate); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }

    .faq-icon { font-size: 20px; color: var(--accent-red); transition: var(--transition-smooth); }

    .faq-content { max-height: 0; overflow: hidden; transition: all 0.3s ease-out; padding: 0 30px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }


    .faq-item.active .faq-content { max-height: 1000px; padding-bottom: 24px; }

    .faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }


    /* =========================================================
       8. KLIEN CAROUSEL (INFINITE SMOOTH LOOP)
       ========================================================= */
    .clients-section { background: #ffffff; padding: 80px 0; border-bottom: 1px solid rgba(17,17,17,0.05); }

    .carousel-container { width: 100%; overflow: hidden; position: relative; }

    .carousel-track { display: flex; gap: 60px; width: max-content; animation: scrollInfinite 25s linear infinite; }

    .carousel-item { width: 150px; height: 60px; object-fit: contain; transition: transform 0.3s ease; }

    .carousel-item:hover { transform: scale(1.08); }


    @keyframes scrollInfinite {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }


    /* =========================================================
       9. MASTER FOOTER (BACKGROUND OPACITY OVERLAY)
       ========================================================= */
    .lux-footer {
        background: linear-gradient(rgba(12, 8, 2, 0.7), rgba(12, 8, 2, 0.8)),
                    url('asset/kota-tangerang.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        color: rgba(255, 255, 255, 0.73);
        padding: 100px 0 30px;
        font-size: 16px;
        border-top: 3px solid var(--primary);
        position: relative;
    }

    .footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr; gap: 60px; position: relative; z-index: 2; }

    .footer-col h3 { color: #ffffff; font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; }

    .footer-col h3::after { content: ""; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--primary); }

    .footer-links { list-style: none; }

    .footer-links li { margin-bottom: 14px; }

    .footer-links a { color: rgba(255, 255, 255, 0.73); text-decoration: none; transition: 0.3s; }

    .footer-links a:hover { color: var(--primary); padding-left: 5px; }

    .contact-list { list-style: none; }

    .contact-list li { margin-bottom: 15px; display: flex; gap: 10px; line-height: 1.6; }

    .contact-list a { color: var(--gold); text-decoration: none; position: relative; transition: color 0.3s ease; }

    .contact-list a:hover { color: var(--primary); }

    .footer-bottom { margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; position: relative; z-index: 2; }


    /* =========================================================
       4.1 TP DOC SECTION (DARK PREMIUM - TRANSFER PRICING)
       ========================================================= */
    .tpdoc-section {
        background: linear-gradient(160deg, #0c0802 0%, #171310 55%, #0c0802 100%);
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .tpdoc-section::before, .tpdoc-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.5;
        pointer-events: none;
    }

    .tpdoc-section::before {
        width: 420px; height: 420px;
        background: rgba(212, 175, 55, 0.35);
        top: -120px; right: -120px;
    }

    .tpdoc-section::after {
        width: 380px; height: 380px;
        background: rgba(220, 38, 38, 0.3);
        bottom: -140px; left: -120px;
    }

    .tpdoc-section .container { position: relative; z-index: 2; }

    .tpdoc-section .center-heading h2 { color: #ffffff; }


    .tpdoc-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.35);
        color: var(--gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        border-radius: 50px;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .tpdoc-intro {
        max-width: 820px;
        margin: -30px auto 55px;
        text-align: center;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.85;
    }


    .tpdoc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

    .tpdoc-card {
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 22px;
        padding: 40px 32px;
        backdrop-filter: blur(8px);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
    }

    .tpdoc-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 25px 50px rgba(212, 175, 55, 0.08);
    }

    .tpdoc-tier {
        align-self: flex-start;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 50px;
        padding: 6px 14px;
        margin-bottom: 22px;
    }

    .tpdoc-icon {
        width: 58px; height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(249,150,30,0.12));
        border: 1px solid rgba(212, 175, 55, 0.35);
        display: flex; align-items: center; justify-content: center;
        color: var(--gold);
        margin-bottom: 22px;
    }

    .tpdoc-icon svg { width: 27px; height: 27px; }

    .tpdoc-card h3 { font-size: 21px; font-weight: 800; color: #ffffff; margin-bottom: 12px; }

    .tpdoc-card p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; flex: 1; }

    .tpdoc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

    .tpdoc-chip {
        font-size: 12px;
        font-weight: 600;
        color: #f9a24a;
        background: rgba(249, 150, 30, 0.1);
        border: 1px solid rgba(249, 150, 30, 0.28);
        border-radius: 50px;
        padding: 6px 13px;
    }


    .tpdoc-risk {
        margin-top: 55px;
        background: rgba(220, 38, 38, 0.07);
        border: 1px solid rgba(220, 38, 38, 0.28);
        border-left: 4px solid var(--accent-red);
        border-radius: 16px;
        padding: 28px 34px;
    }

    .tpdoc-risk-head {
        display: flex; align-items: center; gap: 12px;
        font-size: 18px; font-weight: 800; color: #ffffff;
    }

    .tpdoc-risk-head svg { width: 22px; height: 22px; color: var(--accent-red); flex-shrink: 0; }

    .tpdoc-risk ul {
        list-style: none;
        margin-top: 18px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 30px;
    }

    .tpdoc-risk li {
        position: relative;
        padding-left: 22px;
        color: rgba(255,255,255,0.78);
        font-size: 14.5px;
        line-height: 1.7;
    }

    .tpdoc-risk li::before {
        content: "";
        position: absolute;
        left: 0; top: 10px;
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--accent-red);
        box-shadow: 0 0 10px rgba(220,38,38,0.8);
    }


    .tpdoc-solution { margin-top: 70px; }

    .tpdoc-solution h3 {
        text-align: center;
        font-size: 30px; font-weight: 900;
        color: #ffffff;
        letter-spacing: -0.5px;
    }

    .tpdoc-solution h3 span { color: var(--gold); }

    .tpdoc-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 45px;
    }

    .tpdoc-step {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 18px;
        padding: 30px 26px;
        transition: var(--transition-smooth);
    }

    .tpdoc-step:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-5px); }

    .tpdoc-step-num {
        font-size: 36px;
        font-weight: 900;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1.5px var(--gold);
        margin-bottom: 18px;
    }

    .tpdoc-step h5 { font-size: 17px; font-weight: 800; color: #ffffff; margin-bottom: 10px; }

    .tpdoc-step p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }


    .tpdoc-cta { margin-top: 65px; text-align: center; }


    @media (max-width: 1199px) {
        .tpdoc-steps { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 991px) {
        .tpdoc-grid { grid-template-columns: 1fr; }
        .tpdoc-risk ul { grid-template-columns: 1fr; }
    }

    @media (max-width: 767px) {
        .tpdoc-steps { grid-template-columns: 1fr; }
        .tpdoc-solution h3 { font-size: 24px; }
        .tpdoc-intro { font-size: 15.5px; }
    }


    /* =========================================================
       10. RESPONSIVE MASTER SYSTEM
       ========================================================= */
    @media (max-width: 1199px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); }
        .menu-toggle { display: flex; }
        .nav-menu { position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh; background: #ffffff; box-shadow: 20px 0 60px rgba(0,0,0,0.08); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 100px 40px; gap: 25px; transition: var(--transition-smooth); }
        .nav-menu.active { left: 0; }
        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        .lang-toggle { padding: 7px 12px; font-size: 12px; margin-right: 12px; }
        .nav-item { width: 100%; }
        .nav-caret { margin-left: 8px; }
        .nav-item:hover .nav-caret { transform: none; }
        .dropdown-menu {
            position: static;
            width: 100%;
            min-width: 0;
            margin: 0;
            padding: 0;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            overflow: hidden;
            transform: none;
            box-shadow: none;
            border: 0;
            transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease, visibility 0.35s;
        }
        .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            max-height: 0;
        }
        .nav-item.open:hover .dropdown-menu, .nav-item.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            max-height: 480px;
            margin: 10px 0 0 0;
            padding: 8px;
            background: rgba(249, 150, 30, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
        .nav-item.open .nav-caret { transform: rotate(180deg); }
        .dropdown-menu a { padding: 9px 12px; }
    }

    @media (max-width: 991px) {
        section { padding: 90px 0; }


        .hero-layout-grid, .about-layout { grid-template-columns: 1fr; text-align: center; }
        .hero-subtitle-text, .about-desc { margin-left: auto; margin-right: auto; }
        .hero-action-buttons { justify-content: center; }
        .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    @media (max-width: 767px) {
        section { padding: 70px 0; }
        .container { padding: 0 20px; }
        .hero-title-large { font-size: 34px; }
        .left-heading h2, .center-heading h2 { font-size: 28px; }
        .hero-action-buttons { flex-direction: column; align-items: stretch; }
        .services-grid { grid-template-columns: 1fr; }
        .navbar-brand-text { font-size: 16px; }
        .navbar-brand-sub { font-size: 8.5px; letter-spacing: 2.5px; }
        .navbar-logo-img { height: 40px; }
    }


    /* =========================================================
       11. COOL ANIMATION SYSTEM (SCROLL REVEAL + MICRO EFFECTS)
       ========================================================= */

    /* ---- Scroll Reveal Base (class ditambahkan via JS) ---- */
    .reveal { opacity: 0; will-change: transform, opacity; }

    .reveal.reveal-up { transform: translateY(45px); }

    .reveal.reveal-down { transform: translateY(-45px); }

    .reveal.reveal-left { transform: translateX(-55px); }

    .reveal.reveal-right { transform: translateX(55px); }

    .reveal.reveal-scale { transform: scale(0.85); }

    .reveal.reveal-blur { filter: blur(10px); transform: translateY(30px); }

    .reveal.in-view {
        opacity: 1;
        transform: none;
        filter: none;
        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }


    /* ---- Animated Gradient Text (gemerlap emas/merah) ---- */
    .hero-title-large span, .left-heading h2 span, .center-heading h2 span, .tpdoc-solution h3 span {
        background: linear-gradient(90deg, var(--accent-red), var(--gold) 30%, var(--primary) 55%, var(--accent-red) 80%);
        background-size: 280% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: gradientShift 7s linear infinite;
        display: inline-block;
    }

    @keyframes gradientShift { to { background-position: 280% 0; } }


    /* ---- Navbar slide-in on load ---- */
    .main-header { animation: navbarSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }

    @keyframes navbarSlide { from { transform: translateY(-110%); } to { transform: translateY(0); } }


    /* ---- Hero Media: float + glow + sheen ---- */
    .hero-media-wrapper {
        animation: heroFloat 7s ease-in-out infinite, mediaGlow 4.5s ease-in-out infinite;
    }

    @keyframes heroFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-14px); }
    }

    @keyframes mediaGlow {
        0%, 100% { box-shadow: var(--shadow-premium); border-color: rgba(249, 150, 30, 0.1); }
        50% { box-shadow: 0 30px 70px rgba(249, 150, 30, 0.22), 0 60px 120px rgba(220, 38, 38, 0.14); border-color: rgba(249, 150, 30, 0.5); }
    }

    .hero-media-wrapper { position: relative; }

    .hero-media-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
        transform: translateX(-120%);
        animation: sheenSweep 4.5s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes sheenSweep {
        0% { transform: translateX(-120%); }
        55%, 100% { transform: translateX(120%); }
    }

    .btn-lux.primary { animation: btnGlow 2.6s ease-in-out infinite; }

    @keyframes btnGlow {
        0%, 100% { box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2); }
        50% { box-shadow: 0 12px 40px rgba(249, 150, 30, 0.45); transform: translateY(-2px); }
    }


    /* ---- Metrics: counter glow ---- */
    .metric-card h3 { animation: metricGlow 3s ease-in-out infinite; }

    @keyframes metricGlow {
        0%, 100% { text-shadow: 0 0 0 rgba(220, 38, 38, 0); }
        50% { text-shadow: 0 0 18px rgba(249, 150, 30, 0.45), 0 6px 30px rgba(220, 38, 38, 0.3); }
    }


    /* ---- Premium badge hover ---- */
    .premium-badge, .tpdoc-badge { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }

    .premium-badge:hover, .tpdoc-badge:hover { transform: scale(1.06); box-shadow: 0 8px 25px rgba(249, 150, 30, 0.25); }


    /* ---- Card sheen sweep + icon wiggle ---- */
    .service-card, .tpdoc-card, .tpdoc-step { position: relative; overflow: hidden; }

    .service-card::after, .tpdoc-card::after, .tpdoc-step::after {
        content: "";
        position: absolute;
        top: 0; left: -130%;
        width: 55%; height: 100%;
        background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
        transform: skewX(-18deg);
        transition: left 0.7s ease;
        pointer-events: none;
    }

    .service-card:hover::after, .tpdoc-card:hover::after, .tpdoc-step:hover::after { left: 140%; }

    .service-icon-wrap svg, .tpdoc-icon svg { transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

    .service-card:hover .service-icon-wrap svg { transform: rotate(-12deg) scale(1.15); }

    .tpdoc-card:hover .tpdoc-icon svg { transform: rotate(8deg) scale(1.2); }


    /* ---- Workflow: garis alur "marching ants" ---- */
    .workflow-grid::before {
        height: 3px;
        background: repeating-linear-gradient(90deg, rgba(220, 38, 38, 0.9) 0 16px, rgba(249, 150, 30, 0.3) 16px 18px, transparent 18px 34px);
        animation: lineMarch 1.1s linear infinite;
    }

    @keyframes lineMarch { to { background-position: 34px 0; } }

    .workflow-step-num { animation: ringPulse 2.4s ease-in-out infinite; }

    @keyframes ringPulse {
        0%, 100% { box-shadow: 0 0 0 2px var(--accent-red); }
        50% { box-shadow: 0 0 0 2px var(--accent-red), 0 0 22px rgba(220, 38, 38, 0.5); }
    }


    /* ---- CTA: sheen pada tombol emas + sweep cahaya ---- */
    .btn-gold-accent { position: relative; overflow: hidden; }

    .btn-gold-accent::after {
        content: "";
        position: absolute;
        top: 0; left: -130%;
        width: 50%; height: 100%;
        background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent);
        transform: skewX(-18deg);
        animation: sheenSweep 3.2s ease-in-out infinite;
        pointer-events: none;
    }

    .premium-solid-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.07) 50%, transparent 80%);
        background-size: 250% 250%;
        animation: bgSweep 9s linear infinite;
        pointer-events: none;
    }

    @keyframes bgSweep { 0% { background-position: 0% 50%; } 100% { background-position: 250% 50%; } }


    /* ---- TP Doc: icon glow + beacon risiko ---- */
    .tpdoc-icon { animation: iconPulse 3s ease-in-out infinite; }

    @keyframes iconPulse {
        0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
        50% { box-shadow: 0 0 26px rgba(212, 175, 55, 0.4); }
    }

    .tpdoc-risk li::before { animation: beacon 1.5s ease-in-out infinite; }

    @keyframes beacon {
        0%, 100% { box-shadow: 0 0 6px rgba(220, 38, 38, 0.6); }
        50% { box-shadow: 0 0 18px rgba(220, 38, 38, 1); }
    }

    .tpdoc-section::before { animation: glowDrift 12s ease-in-out infinite alternate; }

    @keyframes glowDrift { to { transform: translate(-30px, 30px) scale(1.15); } }


    /* =========================================================
       7.1 FAQS: SHADOW TEBAL + HOVER WARNA
       ========================================================= */
    .faq-item {
        position: relative;
        border: 1px solid rgba(17, 17, 17, 0.04);
        box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07), 0 28px 70px rgba(17, 17, 17, 0.05);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    box-shadow 0.45s ease,
                    border-color 0.45s ease,
                    background 0.45s ease;
    }

    .faq-item::before {
        content: "";
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 5px;
        background: linear-gradient(180deg, var(--gold), var(--accent-red));
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item:hover {
        border-color: var(--primary);
        background: linear-gradient(180deg, #ffffff, #fff7ec);
        transform: translateY(-5px) scale(1.005);
        animation: shadowPulse 2.2s ease-in-out infinite;
    }

    .faq-item.active {
        border-color: var(--gold);
        background: linear-gradient(180deg, #ffffff, #fffaf0);
        animation: shadowPulse 2.2s ease-in-out infinite;
    }

    .faq-item:hover::before, .faq-item.active::before { transform: scaleY(1); }

    .faq-trigger { transition: color 0.35s ease, background 0.35s ease; }

    .faq-trigger:hover { color: var(--accent-red); }

    .faq-item:hover .faq-trigger, .faq-item.active .faq-trigger { color: var(--accent-red); }

    .faq-item:hover .faq-icon, .faq-item.active .faq-icon { color: var(--primary); }

    @keyframes shadowPulse {
        0%, 100% { box-shadow: 0 22px 55px rgba(249, 150, 30, 0.22), 0 55px 110px rgba(220, 38, 38, 0.14); }
        50% { box-shadow: 0 32px 75px rgba(249, 150, 30, 0.4), 0 75px 150px rgba(220, 38, 38, 0.26); }
    }


    /* ---- Carousel: logo warna asli menyala + pause ---- */
    .carousel-item { filter: saturate(1.2) contrast(1.05); transition: filter 0.3s ease, transform 0.3s ease; }

    .carousel-item:hover { filter: saturate(1.5) contrast(1.1) drop-shadow(0 0 14px rgba(249, 150, 30, 0.5)); transform: scale(1.12); }

    .carousel-track:hover { animation-play-state: paused; }


    /* ---- Footer: underline slide ---- */
    .footer-links a { position: relative; }

    .footer-links a::after {
        content: "";
        position: absolute;
        left: 0; bottom: -2px;
        width: 100%; height: 1.5px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }


    /* ---- Floating WhatsApp ---- */
    .wa-float {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 999;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .wa-float .wa-btn {
        position: relative;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
        box-shadow: 0 10px 30px rgba(249, 150, 30, 0.4);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
        animation: waFloat 3.5s ease-in-out infinite;
    }

    .wa-float .wa-btn::before,
    .wa-float .wa-btn::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(249, 150, 30, 0.55);
        animation: waRing 2.4s ease-out infinite;
    }

    .wa-float .wa-btn::after { animation-delay: 1.2s; }

    .wa-float .wa-btn svg {
        width: 32px;
        height: 32px;
        fill: #ffffff;
        position: relative;
        z-index: 1;
    }

    .wa-float:hover .wa-btn,
    .wa-float:focus-visible .wa-btn {
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 14px 40px rgba(220, 38, 38, 0.5);
    }

    .wa-float .wa-tip {
        position: relative;
        margin-right: 12px;
        background: #ffffff;
        color: #1c1c1c;
        font-weight: 600;
        font-size: 14px;
        padding: 9px 16px;
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        opacity: 0;
        transform: translateX(12px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        white-space: nowrap;
    }

    .wa-float .wa-tip::after {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: #ffffff;
    }

    .wa-float:hover .wa-tip,
    .wa-float:focus-visible .wa-tip { opacity: 1; transform: translateX(0); }

    @keyframes waFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @keyframes waRing {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(1.7); opacity: 0; }
    }

    @media (max-width: 768px) {
        .wa-float { right: 16px; bottom: 16px; }
        .wa-float .wa-btn { width: 56px; height: 56px; }
        .wa-float .wa-btn svg { width: 28px; height: 28px; }
        .wa-float .wa-tip { display: none; }
    }


    /* ---- Aksesibilitas: nonaktifkan animasi bila diminta ---- */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.001s !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.001s !important;
        }
        html { scroll-behavior: auto; }
    }

    

    /* =========================================================
       LAYANAN: AMBIENT HERO (DARK PREMIUM)
       ========================================================= */
    .srv-hero {
        padding: 210px 0 120px;
        position: relative;
        color: #ffffff;
        overflow: hidden;
    }

    .srv-hero-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(21, 21, 21, 0.40), rgba(21, 21, 21, 0.40)),
                    url('asset/tangerang-apartemen.jpg') no-repeat center center;
        background-size: cover;
    }

    .srv-hero::before, .srv-hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.45;
        pointer-events: none;
    }

    .srv-hero::before {
        width: 420px; height: 420px;
        background: rgba(212, 175, 55, 0.3);
        top: -140px; right: -120px;
        animation: glowDrift 12s ease-in-out infinite alternate;
    }

    .srv-hero::after {
        width: 380px; height: 380px;
        background: rgba(220, 38, 38, 0.28);
        bottom: -140px; left: -120px;
    }

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

    .srv-hero-content { max-width: 800px; }

    .srv-hero-badge {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.22) !important;
    }

    .srv-hero-content h1 { font-size: 52px; font-weight: 900; line-height: 1.2; letter-spacing: -1px; margin-bottom: 20px; }

    .srv-hero-content h1 span { color: var(--primary); }

    .srv-hero-content p { font-size: 19px; color: rgba(255, 255, 255, 0.85); max-width: 660px; }


    /* =========================================================
       LAYANAN: CATALOG GRID (6 PREMIUM CARDS)
       ========================================================= */
    .catalog-section { background: #ffffff; }

    .catalog-section .center-heading p { margin-top: 15px; font-size: 16px; }

    .srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

    /* Blog listing: cards + pagination */
    .blog-card { overflow: hidden; }
    .blog-thumb { margin: -42px -34px 24px; }
    .blog-thumb img { width: 100%; height: 190px; object-fit: cover; display: block; }
    .blog-date {
        display: inline-block; font-size: 13px; font-weight: 700;
        color: var(--primary); letter-spacing: 1px; text-transform: uppercase;
        margin-bottom: 10px;
    }
    .blog-card .blog-body { margin-top: 0; }
    .blog-card h3 { margin-bottom: 10px; }
    .blog-card h3 a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
    .blog-card h3 a:hover { color: var(--primary); }

    .blog-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 60px;
    }
    .page-btn {
        min-width: 44px;
        height: 44px;
        padding: 0 6px;
        border-radius: 12px;
        border: 1px solid #e6ddcd;
        background: #ffffff;
        color: #4a463d;
        font-family: inherit;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    .page-btn:hover { border-color: var(--primary); color: var(--primary); }
    .page-btn.active { background: var(--primary); color: #ffffff; border-color: transparent; box-shadow: 0 6px 18px rgba(249, 150, 30, 0.35); }
    .page-btn.disabled { opacity: 0.35; cursor: default; pointer-events: none; }
    .page-btn.prev, .page-btn.next { border-radius: 14px; }
    .page-ellipsis { color: #9b9487; font-size: 15px; padding: 0 4px; user-select: none; }
    @media (max-width: 576px) {
        .blog-pagination { gap: 6px; margin-top: 40px; }
        .page-btn { min-width: 40px; height: 40px; font-size: 13px; border-radius: 10px; }
    }

    .srv-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 42px 34px;
        border: 1px solid rgba(17, 17, 17, 0.04);
        box-shadow: var(--shadow-premium);
        display: flex;
        flex-direction: column;
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }

    .srv-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent-red));
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition-smooth);
    }

    .srv-card:hover { transform: translateY(-8px); border-color: rgba(249, 150, 30, 0.25); box-shadow: 0 25px 50px rgba(249, 150, 30, 0.1); }

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

    .srv-icon-wrap {
        width: 62px; height: 62px;
        border-radius: 16px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--gold);
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 26px;
        transition: var(--transition-smooth);
    }

    .srv-card:hover .srv-icon-wrap { background: rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.2); color: var(--accent-red); transform: scale(1.06); }

    .srv-icon-wrap svg { width: 28px; height: 28px; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

    .srv-card:hover .srv-icon-wrap svg { transform: rotate(-10deg) scale(1.12); }

    .srv-card h3 { font-size: 21px; font-weight: 800; color: var(--dark-slate); margin-bottom: 14px; letter-spacing: -0.3px; }

    .srv-card .srv-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 8px; }

    .srv-output-list {
        list-style: none;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(17, 17, 17, 0.06);
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .srv-output-list li { font-size: 13.5px; font-weight: 600; color: var(--dark-slate); display: flex; align-items: center; gap: 10px; }

    .srv-output-list li::before { content: "\2726"; color: var(--accent-red); flex-shrink: 0; }

    .srv-card .btn-lux { width: 100%; margin-top: auto; }


    /* =========================================================
       LAYANAN: METHODOLOGY FLOW
       ========================================================= */
    .methodology-section { background: var(--bg-ambient); }

    .methodology-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }

    .method-card {
        position: relative;
        background: #ffffff;
        padding: 38px 30px;
        border-radius: 20px;
        box-shadow: var(--shadow-premium);
        border: 1px solid rgba(17, 17, 17, 0.02);
        overflow: hidden;
        transition: var(--transition-smooth);
    }

    .method-card::before {
        content: "";
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--gold), var(--accent-red));
        transform: scaleY(0);
        transform-origin: top;
        transition: var(--transition-smooth);
    }

    .method-card:hover { transform: translateY(-6px); }

    .method-card:hover::before { transform: scaleY(1); }

    .method-step { font-size: 13px; font-weight: 900; color: var(--accent-red); margin-bottom: 10px; display: block; letter-spacing: 1.5px; }

    .method-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--dark-slate); }

    .method-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }


    /* =========================================================
       LAYANAN: RESPONSIVE
       ========================================================= */
    @media (max-width: 1199px) {
        .srv-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 991px) {
        .methodology-grid { grid-template-columns: repeat(2, 1fr); }
        .srv-grid { grid-template-columns: 1fr; gap: 25px; }
    }

    @media (max-width: 767px) {
        .srv-hero { padding: 160px 0 80px; }
        .srv-hero-content h1 { font-size: 34px; }
        .methodology-grid { grid-template-columns: 1fr; }
    }
/* =========================================================
   WHATSAPP INVITE POPUP (PREMIUM)
   ========================================================= */
.wpop {
    position: fixed; right: 22px; bottom: 104px; width: 330px; z-index: 998;
    background: linear-gradient(160deg, rgba(26,20,9,.94), rgba(15,11,5,.97));
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 22px; padding: 20px 18px 16px;
    box-shadow: 0 24px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04) inset;
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    color: #fff; overflow: hidden;
    opacity: 0; transform: translateY(26px) scale(.94); pointer-events: none;
    transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}
.wpop.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wpop::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.9), rgba(220,38,38,.9), transparent);
    background-size: 200% 100%;
    animation: wpopShine 3.2s linear infinite;
    border-radius: 22px 22px 0 0;
}
@keyframes wpopShine { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
.wpop-close {
    position: absolute; top: 12px; right: 12px; width: 26px; height: 26px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.75);
    font-size: 11px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s ease;
}
.wpop-close:hover { background: rgba(220,38,38,.85); border-color: transparent; color: #fff; transform: rotate(90deg); }
.wpop-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wpop-avatar { position: relative; width: 52px; height: 52px; border-radius: 50%; padding: 2px; background: linear-gradient(135deg, #d4af37, #dc2626); }
.wpop-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 2px solid #141009; }
.wpop-online { position: absolute; right: 0; bottom: 0; width: 13px; height: 13px; border-radius: 50%; background: #22c55e; border: 2px solid #141009; }
.wpop-online::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(34,197,94,.6); animation: wpopPulse 1.8s ease-out infinite; }
@keyframes wpopPulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.wpop-info { display: flex; flex-direction: column; gap: 3px; }
.wpop-info strong { font-size: 15px; letter-spacing: .2px; }
.wpop-info > span { font-size: 12px; color: #22c55e; display: flex; align-items: center; gap: 6px; }
.wpop-live { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; animation: wpopBlink 1.4s ease-in-out infinite; }
@keyframes wpopBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.wpop-tag {
    display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
    color: #d4af37; border: 1px solid rgba(212,175,55,.4); padding: 4px 10px;
    border-radius: 999px; margin-bottom: 12px; background: rgba(212,175,55,.08);
}
.wpop-body h4 { margin: 0 0 8px; font-size: 19px; line-height: 1.3; }
.wpop-body h4 em { font-style: normal; color: #d4af37; }
.wpop-body p { margin: 0 0 14px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.72); }
.wpop-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
    padding: 13px 16px; border-radius: 14px; font-weight: 700; font-size: 14px; color: #fff;
    text-decoration: none; background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 10px 26px rgba(37,211,102,.28);
    transition: transform .25s ease, box-shadow .25s ease;
}
.wpop-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.42); }
.wpop-cta svg { width: 19px; height: 19px; fill: currentColor; }
.wpop-note { display: block; text-align: center; margin-top: 11px; font-size: 11px; color: rgba(255,255,255,.5); }
@media (max-width: 768px) {
    .wpop { right: 16px; bottom: 92px; width: min(320px, calc(100vw - 32px)); }
}