:root {
    --primary: #0b1f4d;
    --primary-light: #132a63;
    --secondary: #ff6b00;
    --accent: #f7931e;
    --bg: #ffffff;
    --section-bg: #f8f9fa;
    --text: #1e293b;
    --radius: 20px;
    --shadow-soft: 0 10px 40px rgba(11, 31, 77, 0.08);
    --shadow-strong: 0 20px 60px rgba(11, 31, 77, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    font-weight: 400;
    background: var(--bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.fw-800 {
    font-weight: 800;
}

.fw-600 {
    font-weight: 600;
}

.text-secondary-brand {
    color: var(--secondary) !important;
}

.bg-primary-brand {
    background: var(--primary) !important;
}

.bg-section {
    background: var(--section-bg);
}

.radius-brand {
    border-radius: var(--radius) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--secondary);
    display: inline-block;
}

section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }
}

/* Buttons */
.btn-brand {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
    transition: 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 107, 0, 0.45);
    color: #fff;
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--primary) !important;
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s ease;
    padding: 14px 0;
}

.navbar.scrolled {
    box-shadow: 0 6px 30px rgba(11, 31, 77, 0.1);
    padding: 8px 0;
}

.navbar .nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0 6px;
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary) !important;
    font-size: 1.4rem;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-brand .logo-cube {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #1c3a86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar i {
    color: var(--secondary);
}

/* Hero */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background:
        radial-gradient(
            1200px 600px at 90% -10%,
            rgba(255, 107, 0, 0.08),
            transparent
        ),
        linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(11, 31, 77, 0.06),
        transparent 70%
    );
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1 {
    font-size: 2.9rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 70px 0 60px;
    }
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
    width: 100%;
    object-fit: cover;
    height: 520px;
}

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-card .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-card .num {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1;
}

.float-card .lbl {
    font-size: 0.75rem;
    color: #64748b;
}

.float-1 {
    top: -24px;
    left: -24px;
    animation-delay: 0.2s;
}

.float-2 {
    bottom: -20px;
    right: -20px;
    animation-delay: 1s;
}

.float-3 {
    bottom: 110px;
    left: -40px;
    animation-delay: 1.6s;
}

@media (max-width: 991px) {
    .float-card {
        position: static;
        margin-top: 12px;
        display: inline-flex;
    }

    .hero-visual img {
        height: 340px;
    }
}

/* trust badges */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: 0.3s;
}

.trust-badge:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.trust-badge .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(11, 31, 77, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.client-logo:hover {
    filter: none;
    opacity: 1;
}

/* About */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    min-width: 160px;
}

.about-badge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

@media (max-width: 991px) {
    .about-badge {
        left: 10px;
        bottom: -20px;
        padding: 16px;
        min-width: 130px;
    }
}

.about-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.about-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Product cards Premium Redesign */
.product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 50px rgba(11, 31, 77, 0.14);
    border-color: rgba(255, 107, 0, 0.35);
}

.product-img {
    overflow: hidden;
    height: 210px;
    position: relative;
}

.product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(11, 31, 77, 0.5) 100%
    );
    pointer-events: none;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.12);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff6b00, #f7931e);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
    letter-spacing: 0.3px;
}

.product-spec-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(11, 31, 77, 0.85);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-body h5 a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.product-card:hover .product-body h5 a {
    color: var(--secondary);
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.product-chip {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-chip i {
    color: var(--secondary);
}

.product-body ul {
    padding-left: 0;
    list-style: none;
    margin: 12px 0 18px;
}

.product-body ul li {
    font-size: 0.86rem;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-body ul li i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.product-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.btn-card-brand {
    background: linear-gradient(135deg, var(--primary), #132a63);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-card-brand:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-card-wa {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-card-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* why choose */
.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: var(--shadow-soft);
    text-align: center !important;
    height: 100%;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.why-card .ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 18px;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 77, 0.08),
        rgba(255, 107, 0, 0.08)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--primary);
}

/* gallery */
.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(11, 31, 77, 0.85)
    );
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: 0.35s;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* process timeline */
.process-track {
    position: relative;
}

.process-step {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 26px 20px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.process-step .step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.process-step:nth-child(odd) .step-num {
    background: var(--secondary);
}

/* testimonial */
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.testi-stars {
    color: var(--secondary);
    margin-bottom: 12px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    color: var(--primary);
    border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 107, 0, 0.06);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button:focus {
    box-shadow: none;
}

/* contact form */
.contact-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    padding: 40px;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    background: #fbfbfc;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
    background: #fff;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-item .ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* final cta */
.final-cta {
    background: linear-gradient(120deg, var(--secondary), var(--accent));
    border-radius: 32px;
    color: #fff;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        400px 200px at 90% 10%,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* Footer */
footer {
    background: #ffffff;
    color: #475569;
    border-top: 1px solid #e5e7eb;
}

footer h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: #475569;
    text-decoration: none;
    transition: 0.2s;
}

footer a:hover {
    color: var(--secondary);
}

footer li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    font-size: 0.85rem;
}

.social-ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-ic:hover {
    background: var(--secondary);
}

/* ============ FLOATING WA WIDGET (THEME ALIGNED) ============ */
.wa-floating-widget {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1060;
}

.wa-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseWa 2.5s infinite;
}

.wa-toggle-btn:hover {
    transform: scale(1.08);
}

.wa-toggle-btn .icon-close {
    display: none;
    font-size: 1.4rem;
}

.wa-floating-widget.active .wa-toggle-btn {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(11, 31, 77, 0.45);
    animation: none;
    transform: rotate(180deg);
}

.wa-floating-widget.active .wa-toggle-btn .icon-wa {
    display: none;
}

.wa-floating-widget.active .wa-toggle-btn .icon-close {
    display: block;
}

@keyframes pulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-popup-card {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 31, 77, 0.22);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.wa-floating-widget.active .wa-popup-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-popup-header {
    background: linear-gradient(135deg, var(--primary), #1c3a86);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--secondary);
}

.wa-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.btn-close-wa {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-close-wa:hover {
    background: rgba(255, 255, 255, 0.25);
}

.wa-popup-body {
    padding: 18px;
}

.wa-notice-banner {
    background: #fff8f0;
    border: 1px solid #ffead5;
    color: #c2410c;
    font-size: 0.78rem;
    border-radius: 14px;
    padding: 10px 14px;
    line-height: 1.45;
    text-align: center;
}

.wa-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 14px;
    transition: all 0.25s ease;
}

.wa-contact-item:hover {
    background: #ffffff;
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
    transform: translateY(-2px);
}

.wa-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-grow: 1;
}

.wa-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.wa-details {
    line-height: 1.25;
}

.wa-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.wa-sub {
    font-size: 0.73rem;
    color: #64748b;
    margin-top: 2px;
}

.wa-call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.wa-call-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.5);
}

@media (max-width: 576px) {
    .wa-popup-card {
        width: calc(100vw - 32px);
        right: -10px;
    }

    .back-to-top {
        right: 88px !important;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 98px;
    z-index: 1050;
    background: var(--primary);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 576px) {
    .sticky-wa {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        font-size: 1.4rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 78px;
    }
}

/* counters */
.counter-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
}

/* mission/vision */
.mv-card {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 26px;
    height: 100%;
}

.mv-card i {
    color: var(--secondary);
    font-size: 1.6rem;
}

::selection {
    background: var(--secondary);
    color: #fff;
}

a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    z-index: 2000;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

section[id] {
    scroll-margin-top: 90px;
}
.text-secondary-brand {
    color: var(--secondary) !important;
}
.bg-primary-brand {
    background: var(--primary) !important;
}
.bg-section {
    background: var(--section-bg);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 10px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--secondary);
    display: inline-block;
    border-radius: 2px;
}
.section-lead {
    max-width: 640px;
    margin: 0 auto;
}
.breadcrumb-bar {
    background: var(--section-bg);
    border-bottom: 1px solid rgba(11, 31, 77, 0.06);
    padding: 10px 0;
    font-size: 0.85rem;
}
.breadcrumb-bar a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb-bar a:hover {
    color: var(--secondary);
}
.breadcrumb-bar .divider {
    color: #9aa5b1;
    margin: 0 6px;
}
.feature-mini {
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(11, 31, 77, 0.08);
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
    height: 100%;
}
.feature-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 107, 0, 0.25);
}
.trust-chip {
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
}
.trust-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}
.trust-chip i {
    font-size: 1.7rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}
.trust-chip span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(11, 31, 77, 0.06);
    transition: 0.3s;
}
.why-card:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-5px);
}
.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #1c3a86);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
}
.stats-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px 400px at 10% 0%,
        rgba(255, 107, 0, 0.15),
        transparent
    );
}
.stat-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-num span {
    color: var(--accent);
}
.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 6px;
}
.compare-card {
    border-radius: 22px;
    overflow: visible;
    box-shadow: var(--shadow-strong);
    height: 100%;
    background: #fff;
}
.compare-head {
    padding: 26px 24px 20px;
    text-align: center;
    border-radius: 22px 22px 0 0;
}
.compare-bad .compare-head {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #fff;
}
.compare-good .compare-head {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
}
.compare-head .compare-icon-lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}
.compare-body {
    padding: 6px 26px 28px;
}
.compare-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(11, 31, 77, 0.12);
    font-size: 0.92rem;
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-row i {
    font-size: 1.1rem;
    margin-top: 2px;
}
.compare-bad .compare-row i {
    color: #ef4444;
}
.compare-good .compare-row i {
    color: #16a34a;
}
.compare-row strong {
    display: block;
    color: var(--primary);
}
.compare-row span {
    color: #64748b;
    font-size: 0.85rem;
}
.compare-vs-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(11, 31, 77, 0.35);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) {
    .compare-vs-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}
.gallery-card img {
    transition: transform 0.5s ease;
}
.gallery-card:hover img {
    transform: scale(1.08);
}
.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(11, 31, 77, 0.85), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(11, 31, 77, 0.06);
}
.testi-stars {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.testi-quote {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1c3a86);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.accordion-button {
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    padding: 18px 20px;
}
.accordion-button:not(.collapsed) {
    background: #fff3ea;
    color: var(--secondary);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 107, 0, 0.2);
}
.final-cta-lg {
    background: linear-gradient(135deg, var(--primary), #142a63);
    position: relative;
    overflow: hidden;
}
.final-cta-lg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        700px 350px at 85% 20%,
        rgba(255, 107, 0, 0.25),
        transparent
    );
}
.cta-strip {
    text-align: center;
    padding-top: 28px;
}
.btn-sm-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
    transition: 0.25s;
}
.btn-sm-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.ad-banner {
    background: linear-gradient(90deg, #ff6b00, #f7931e);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
}

/* Buttons */
.btn-brand {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 107, 0, 0.45);
    color: #fff;
}
.btn-wa-direct {
    background: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.btn-wa-direct:hover {
    background: #1eb856;
    color: #fff;
    transform: translateY(-3px);
}
.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-outline-brand:hover {
    background: var(--primary);
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-weight: 800;
    color: var(--primary) !important;
    font-size: 1.35rem;
}
.navbar-brand span {
    color: var(--secondary);
}
.logo-cube {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), #1c3a86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

/* Hero Ad */
.hero-ad {
    padding: 140px 0 80px;
    background:
        radial-gradient(
            1200px 600px at 90% -10%,
            rgba(255, 107, 0, 0.09),
            transparent
        ),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.hero-ad h1 {
    font-size: 2.7rem;
    line-height: 1.25;
}
@media (max-width: 768px) {
    .hero-ad h1 {
        font-size: 1.9rem;
    }
    .hero-ad {
        padding: 110px 0 50px;
    }
}

.hero-badge-ad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3ea;
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

/* Interactive Calculator Card */
.calc-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    padding: 32px;
    border: 2px solid rgba(255, 107, 0, 0.15);
    position: relative;
}
.calc-card::before {
    content: "PROMO IKLAN / KONSULTASI CEPAT";
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Table styling */
.table-spec {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.table-spec th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 16px;
    border: none;
}
.table-spec td {
    padding: 14px 16px;
    vertical-align: middle;
}

/* Compare Card */
.compare-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}
.vs-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Sticky WA & Top */
.sticky-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1050;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    text-decoration: none;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


    .feature-mini { padding: 16px; background: #fff; border-radius: 14px; border: 1px solid rgba(11,31,77,.08); box-shadow: var(--shadow-soft); transition: .25s; height: 100%; }
    .feature-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: rgba(255,107,0,.25); }

    .calc-card { background: #ffffff; border-radius: 24px; box-shadow: var(--shadow-strong); padding: 32px; border: 2px solid rgba(255, 107, 0, 0.15); position: relative; }
    .calc-card::before { content: "KALKULATOR METRASE PAGAR"; position: absolute; top: -14px; left: 28px; background: var(--secondary); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
    .calc-card .form-control, .calc-card .form-select { border-radius: 12px; padding: 12px 14px; border: 1.5px solid #E2E8F0; }
    .calc-card .form-control:focus, .calc-card .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 .2rem rgba(255,107,0,.15); }

    .result-box { background: #F1F5F9; border-radius: 16px; padding: 16px; border-left: 4px solid var(--secondary); }

    /* Trusted By */
    .trust-chip { background: #fff; border: 1px solid rgba(11,31,77,.08); border-radius: 16px; padding: 20px 12px; text-align: center; height: 100%; box-shadow: var(--shadow-soft); transition: .25s; }
    .trust-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
    .trust-chip i { font-size: 1.7rem; color: var(--secondary); margin-bottom: 8px; display: block; }
    .trust-chip span { font-weight: 600; font-size: .85rem; color: var(--primary); }

    /* Why Choose Us */
    .why-card { background: #fff; border-radius: 20px; padding: 28px 24px; height: 100%; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,31,77,.06); transition: .3s; }
    .why-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-5px); }
    .why-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), #1c3a86); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; margin-bottom: 16px; }

    /* Stats */
    .stats-section { background: var(--primary); position: relative; overflow: hidden; }
    .stats-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 10% 0%, rgba(255,107,0,.15), transparent); }
    .stat-box { text-align: center; position: relative; z-index: 1; }
    .stat-num { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
    .stat-num span { color: var(--accent); }
    .stat-label { color: rgba(255,255,255,.75); font-weight: 600; font-size: .9rem; margin-top: 6px; }

    /* Timeline */
    .timeline-wrap { position: relative; }
    .timeline-line { position: absolute; top: 26px; left: 0; right: 0; height: 3px; background: repeating-linear-gradient(90deg, rgba(255,107,0,.35) 0 10px, transparent 10px 18px); display: none; }
    @media (min-width: 992px) { .timeline-line { display: block; } }
    .timeline-step { text-align: center; position: relative; z-index: 1; }
    .timeline-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--accent)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 10px 25px rgba(255,107,0,.3); font-size: 1.1rem; }
    .timeline-step h6 { font-weight: 700; margin-bottom: 6px; }
    .timeline-step p { font-size: .85rem; color: #64748B; }

    /* Advantages */
    .adv-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(11,31,77,.07); }
    .adv-row:last-child { border-bottom: none; }
    .adv-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: #FFF3EA; color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

    /* Gallery */
    .gallery-card { position: relative; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-soft); }
    .gallery-card img { transition: transform .5s ease; }
    .gallery-card:hover img { transform: scale(1.08); }
    .gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(0deg, rgba(11,31,77,.85), transparent); color: #fff; font-weight: 600; font-size: .9rem; }

    /* Testimonials */
    .testi-card { background: #fff; border-radius: 20px; padding: 28px; height: 100%; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,31,77,.06); }
    .testi-stars { color: var(--secondary); font-size: .9rem; margin-bottom: 10px; }
    .testi-quote { color: #475569; font-size: .95rem; margin-bottom: 18px; }
    .testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #1c3a86); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }

    /* Coverage */
    .coverage-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid rgba(11,31,77,.1); border-radius: 50px; padding: 10px 20px; font-weight: 600; font-size: .88rem; color: var(--primary); margin: 6px; box-shadow: var(--shadow-soft); }
    .coverage-chip i { color: var(--secondary); }

    /* FAQ Accordion */
    .accordion-item { border: none; margin-bottom: 12px; border-radius: 14px !important; overflow: hidden; box-shadow: var(--shadow-soft); }
    .accordion-button { font-weight: 700; color: var(--primary); background: #fff; padding: 18px 20px; }
    .accordion-button:not(.collapsed) { background: #FFF3EA; color: var(--secondary); box-shadow: none; }
    .accordion-button:focus { box-shadow: none; border-color: rgba(255,107,0,.2); }
    .accordion-button::after { filter: hue-rotate(0deg); }

    /* Final CTA large */
    .final-cta-lg { background: linear-gradient(135deg, var(--primary), #142a63); position: relative; overflow: hidden; }
    .final-cta-lg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 350px at 85% 20%, rgba(255,107,0,.25), transparent); }

    .cta-strip { text-align: center; padding-top: 28px; }

    /* Sticky WhatsApp + floating buttons */
    .float-stack { position: fixed; bottom: 26px; right: 26px; z-index: 1050; display: flex; flex-direction: column; gap: 12px; align-items: center; }
    .sticky-wa { background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37, 211, 102, .5); animation: pulse 2s infinite; text-decoration: none; }
    .float-call { background: #fff; color: var(--primary); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-strong); text-decoration: none; border: 2px solid rgba(11,31,77,.1); }
    .float-call:hover { color: var(--secondary); }
    @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

    /* Perbandingan: Konvensional vs Panel Beton */
    .compare-card { border-radius: 22px; overflow: visible; box-shadow: var(--shadow-strong); height: 100%; background: #fff; }
    .compare-head { padding: 26px 24px 20px; text-align: center; border-radius: 22px 22px 0 0; }
    .compare-bad .compare-head { background: linear-gradient(135deg, #64748B, #475569); color: #fff; }
    .compare-good .compare-head { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: #fff; }
    .compare-head .compare-icon-lg { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 12px; }
    .compare-body { padding: 6px 26px 28px; }
    .compare-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px dashed rgba(11,31,77,.12); font-size: .92rem; }
    .compare-row:last-child { border-bottom: none; }
    .compare-row i { font-size: 1.1rem; margin-top: 2px; }
    .compare-bad .compare-row i { color: #EF4444; }
    .compare-good .compare-row i { color: #16A34A; }
    .compare-row strong { display: block; color: var(--primary); }
    .compare-row span { color: #64748B; font-size: .85rem; }
    .compare-vs-badge { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 10px 25px rgba(11,31,77,.35); font-size: .95rem; position: relative; z-index: 2; }
    @media (min-width: 992px) { .compare-vs-wrap { display: flex; align-items: center; justify-content: center; height: 100%; } }

    /* Artikel Terkait */
    .article-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,31,77,.06); overflow: hidden; height: 100%; transition: .3s; }
    .article-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-4px); }
    .article-icon-band { height: 8px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }
    .article-body { padding: 26px; }
    .article-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--secondary); background: #FFF3EA; padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }
    .article-title { font-size: 1.08rem; margin-bottom: 10px; }
    .article-excerpt, .article-full { color: #64748B; font-size: .9rem; line-height: 1.7; }
    .article-full { color: #475569; margin-top: 10px; }
    .article-readmore { border: none; background: none; padding: 0; color: var(--primary); font-weight: 700; font-size: .87rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }
    .article-readmore:hover { color: var(--secondary); }
    .article-readmore i { transition: .3s; }
    .article-readmore[aria-expanded="true"] i { transform: rotate(180deg); }
    .article-meta { display: flex; align-items: center; gap: 8px; color: #94A3B8; font-size: .78rem; margin-top: 16px; }

    /* Custom Pagination Styling */
    .pagination { gap: 6px; margin-bottom: 0; display: flex; align-items: center; }
    .pagination .page-item .page-link { color: var(--primary); border: 1px solid #e2e8f0; border-radius: 10px !important; padding: 8px 16px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s ease-in-out; background-color: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.03); }
    .pagination .page-item .page-link:hover { color: var(--secondary); background-color: #fff8f3; border-color: var(--secondary); transform: translateY(-2px); }
    .pagination .page-item.active .page-link { background: linear-gradient(135deg, var(--secondary), var(--accent)); border-color: var(--secondary); color: #ffffff !important; box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3); }
    .pagination .page-item.disabled .page-link { color: #94a3b8; background-color: #f8fafc; border-color: #f1f5f9; }
    .pagination svg, nav svg { max-width: 18px !important; max-height: 18px !important; display: inline-block; vertical-align: middle; }

