:root {
    --main: #2aa1b3;
}

html {
    overflow-x: hidden;
    scrollbar-gutter: auto;
}

html::-webkit-scrollbar-horizontal,
body::-webkit-scrollbar-horizontal {
    display: none;
    height: 0;
}

body {
    font-family: system-ui;
    background: #f6fbfc;
    padding-top: 100px;
    overflow-x: hidden;
}

.section {
    padding: 0px 0;
}

/*NAVBAR*/
.nav-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 16px 20px;
    z-index: 1000;
    transition: padding .3s;
}
.nav-wrapper.scrolled {
    padding: 8px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 18px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: box-shadow .3s, padding .3s;
}
.nav-wrapper.scrolled .nav-container {
    box-shadow: 0 6px 30px rgba(0,0,0,.12);
    padding: 8px 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-logo img { height: 30px; }

/* Desktop menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-menu li { display: flex; align-items: center; }

.nav-link-item {
    display: block;
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.nav-link-item:hover {
    background: #f1f5f9;
    color: #1e3a4a;
}
.nav-link-item.active {
    background: #e8f7fa;
    color: #2aa1b3;
    font-weight: 600;
}

/* Right actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Cart button */
.nav-cart-btn {
    position: relative;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #f4f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #475569;
    text-decoration: none;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.nav-cart-btn:hover {
    background: #e8f7fa;
    color: #2aa1b3;
}
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
}

/* CTA button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2aa1b3;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.nav-cta:hover {
    background: #228fa0;
    color: white;
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    padding: 8px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #475569;
    transition: transform .25s, opacity .25s, width .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu (slide down) */
.nav-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s cubic-bezier(0.4, 0, 0.2, 1),
                padding    .32s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 0 0 18px 18px;
    padding: 0 20px;
}
.nav-mobile.open {
    max-height: 420px;
    padding: 12px 20px 18px;
    border-top: 1px solid #f1f5f9;
}
.nav-mobile ul {
    list-style: none;
    margin: 0 0 12px; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-mobile ul li {
    opacity: 0;
    transform: translateY(-6px);
}
.nav-mobile.open ul li {
    animation: navItemIn .22s ease forwards;
}
.nav-mobile.open ul li:nth-child(1) { animation-delay: .04s; }
.nav-mobile.open ul li:nth-child(2) { animation-delay: .08s; }
.nav-mobile.open ul li:nth-child(3) { animation-delay: .12s; }
.nav-mobile.open ul li:nth-child(4) { animation-delay: .16s; }
.nav-mobile.open ul li:nth-child(5) { animation-delay: .20s; }
@keyframes navItemIn {
    to { opacity: 1; transform: translateY(0); }
}
.nav-mobile ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nav-mobile ul li a:hover  { background: #f1f5f9; color: #1e3a4a; }
.nav-mobile ul li a.active { background: #e8f7fa; color: #2aa1b3; font-weight: 600; }

.nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px;
    background: #2aa1b3;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s;
    opacity: 0;
}
.nav-mobile.open .nav-cta-mobile {
    animation: navItemIn .22s ease .22s forwards;
}
.nav-cta-mobile:hover { background: #228fa0; color: white; }

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.25);
    z-index: 999;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-wrapper { padding: 10px 12px; }
    .nav-wrapper.scrolled { padding: 6px 12px; }
    .nav-container { border-radius: 14px; }
    .nav-mobile { border-radius: 0 0 14px 14px; }
}

@media (min-width: 769px) and (max-width: 992px) {
    .nav-link-item { padding: 7px 10px; font-size: 13px; }
    .nav-cta { padding: 7px 12px; }
}

/*FOOTER*/
/* ── PRE-FOOTER CTA (unused, kept for compat) ── */
.prefooter-cta {
    background: linear-gradient(135deg, #0e7a8c 0%, #2aa1b3 100%);
    padding: 40px 0;
    color: white;
}
.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.prefooter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
    letter-spacing: .3px;
}
.prefooter-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.2;
}
.prefooter-sub {
    font-size: 13.5px;
    opacity: .8;
    margin: 0;
}
.prefooter-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.prefooter-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 11px;
    background: white;
    color: #0e7a8c;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
    white-space: nowrap;
}
.prefooter-btn-primary:hover { opacity: .9; color: #0e7a8c; }
.prefooter-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 11px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.prefooter-btn-secondary:hover { background: rgba(255,255,255,.25); color: white; }

/* ── FOOTER ── */
.footer {
    background: #111827;
    color: white;
    padding: 52px 0 0;
}

/* main 3-col grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* brand col */
.footer-logo-wrap {
    display: inline-flex;
    background: white;
    border-radius: 9px;
    padding: 6px 14px;
    margin-bottom: 16px;
    text-decoration: none;
    transition: opacity .15s;
}
.footer-logo-wrap:hover { opacity: .85; }
.footer-brand-logo { height: 26px; width: auto; display: block; }

.footer-brand-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    margin: 0 0 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.footer-social-btn:hover { background: #2aa1b3; color: white; border-color: #2aa1b3; }

/* links group: two sub-cols side by side */
.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-col-label {
    font-size: 11px;
    font-weight: 700;
    color: #2aa1b3;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 14px;
}

.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a {
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}
.footer-nav a:hover { color: white; }

/* contact list */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    margin-bottom: 13px;
    line-height: 1.55;
}
.footer-contact-list li:last-child { margin-bottom: 0; }
.footer-contact-list li i { color: #2aa1b3; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-contact-list a:hover { color: white; }

/* lower: payment + copyright */
.footer-lower {
    padding: 22px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.footer-pay-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-pay-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.footer-pay-row img {
    height: 22px;
    width: auto;
    background: rgba(255,255,255,.9);
    padding: 2px 7px;
    border-radius: 4px;
    object-fit: contain;
    opacity: .85;
    transition: opacity .15s;
}
.footer-pay-row img:hover { opacity: 1; }
.footer-pay-sep {
    width: 1px; height: 18px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
    margin: 0 2px;
}
.footer-pay-chip {
    background: rgba(255,255,255,.9);
    color: #111;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 3px 7px;
    border-radius: 4px;
    line-height: 16px;
    height: 22px;
    display: flex;
    align-items: center;
}
.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    margin: 0;
}

/* responsive */
@media (max-width: 992px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
    .footer-pay-section { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 576px) {
    .footer { padding-top: 36px; }
    .footer-main { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand { grid-column: span 1; }
    .footer-links-group { grid-template-columns: 1fr 1fr; }
    .footer-pay-row img { height: 20px; }
}

/*CONTACT*/
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-section {
    padding-bottom: 60px;
}

.contact-map iframe {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: #2aa1b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #5f6b75;
}

.contact-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-sub {
    color: #6b7b85;
}

.btn-main {
    display: inline-block;
    margin-top: 20px;
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #2aa1b3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: #5f6b75;
}

.highlight {
    color: #2aa1b3;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map iframe {
        height: 350px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 32px;
    }
    .contact-section {
        padding-bottom: 60px;
    }

    .footer {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .contact-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .contact-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .contact-sub {
        font-size: 14px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-map iframe {
        height: 260px;
        border-radius: 12px;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .btn-main {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/*HERO*/
.hero {
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    padding: 160px 0;
    color: white;
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
}

.hero-desc {
    max-width: 480px;
    margin-bottom: 30px;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0;
        background-position: center;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero:before {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3)
        );
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 14px;
        margin: 0 auto 20px;
    }

    .hero .row {
        justify-content: center;
    }

    .hero .col-lg-6 {
        width: 100%;
    }

    .btn-main {
        width: 100%;
        max-width: 250px;
    }
}

/*PROBLEM*/
.problem-section {
    padding: 100px 0;
    background: #f7fbfc;
}

.problem-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.problem-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.problem-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a2a30;
    line-height: 1.2;
    margin-bottom: 12px;
}

.problem-sub {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
}

.problem-section { overflow-x: hidden; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8f0f3;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: transform .22s, box-shadow .22s;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
}

.problem-img-wrap {
    overflow: hidden;
}

.problem-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.problem-card:hover .problem-img {
    transform: scale(1.04);
}

.problem-content {
    padding: 22px 24px 26px;
}

.problem-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a30;
    margin-bottom: 8px;
    line-height: 1.35;
}

.problem-content p {
    font-size: 13.5px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .problem-section {
        padding: 80px 0;
    }

    .problem-header {
        margin-bottom: 36px;
        padding: 0 4px;
    }

    .problem-title {
        font-size: 26px;
    }

    .problem-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding: 8px 4px 28px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .problem-grid::-webkit-scrollbar { display: none; }

    .problem-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
        flex-direction: column;
    }

    .problem-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .problem-section {
        padding: 56px 0;
    }

    .problem-title {
        font-size: 22px;
    }

    .problem-sub {
        font-size: 13.5px;
    }

    .problem-card {
        flex: 0 0 80vw;
    }

    .problem-img {
        height: 170px;
    }

    .problem-card-title {
        font-size: 14.5px;
    }

    .problem-content p {
        font-size: 13px;
    }
}

/*SOLUTION*/
.solution-section {
    padding: 100px 0;
    background: #fff;
}

.solution-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.solution-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a2a30;
    line-height: 1.2;
    margin-bottom: 14px;
}

.solution-desc {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-icon {
    color: #2aa1b3;
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
}

.solution-item p {
    font-size: 14.5px;
    font-weight: 500;
    color: #2d4a56;
    margin: 0;
    line-height: 1.4;
}

/* image frame with decorative bg */
.solution-img-frame {
    position: relative;
    padding: 0 0 28px 28px;
}

.solution-img-frame::before {
    content: '';
    position: absolute;
    inset: 28px 0 0 28px;
    background: linear-gradient(135deg, #2aa1b3, #3bbdcf);
    border-radius: 20px;
    opacity: .1;
    z-index: 0;
}

.solution-img-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 52px rgba(0,0,0,.1);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 992px) {
    .solution-section {
        padding: 80px 0;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .solution-section {
        padding: 64px 0;
    }

    .solution-img-frame {
        padding: 0 0 18px 18px;
        margin-bottom: 8px;
    }

    .solution-img-frame::before {
        inset: 18px 0 0 18px;
        border-radius: 14px;
    }

    .solution-img-frame img {
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .solution-section {
        padding: 52px 0;
    }

    .solution-img-frame {
        padding: 0 0 12px 12px;
    }

    .solution-img-frame::before {
        inset: 12px 0 0 12px;
    }

    .solution-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .solution-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .solution-list {
        gap: 10px;
        margin-bottom: 24px;
    }

    .solution-item p {
        font-size: 13.5px;
    }

    .btn-main {
        width: 100%;
        justify-content: center;
    }
}

/*SERVICE*/
.service-section {
    padding: 100px 0;
    background: #fff;
}

.service-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a2a30;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-sub {
    font-size: 15px;
    color: #6b7b85;
    margin: 0;
    max-width: 480px;
}

/* segmented control tabs */
.service-tabs {
    display: inline-flex;
    background: #f0f4f6;
    border-radius: 12px;
    padding: 4px;
    gap: 2px;
    flex-shrink: 0;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 9px 18px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: #6b7b85;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, color .2s, box-shadow .2s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #2aa1b3;
}

.tab-btn.active {
    background: #fff;
    color: #2aa1b3;
    box-shadow: 0 2px 8px rgba(0,0,0,.09);
}

/* panels */
.service-panel {
    display: none;
}

.service-panel.active {
    display: block;
    animation: panelFadeIn .28s ease;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* image */
.service-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 52px rgba(0,0,0,.1);
}

.service-img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    transition: transform .4s ease;
}

.service-img-wrap:hover .service-img {
    transform: scale(1.03);
}

/* panel text */
.service-panel-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2aa1b3;
    margin-bottom: 12px;
}

.service-panel-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a2a30;
    line-height: 1.25;
    margin-bottom: 14px;
}

.service-panel-desc {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #2d4a56;
    font-weight: 500;
}

.service-list li i {
    color: #2aa1b3;
    font-size: 15px;
    flex-shrink: 0;
}

.catalog-layout > div:first-child {
    height: fit-content;
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 992px) {
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .service-title {
        font-size: 26px;
    }

    /* tabs full width on tablet/mobile */
    .service-tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .service-section {
        padding: 64px 0;
    }

    /* kurangi gap Bootstrap g-5 (3rem) jadi lebih compact */
    .service-panel .row {
        --bs-gutter-y: 1.75rem;
    }

    .service-panel-title {
        font-size: 22px;
    }

    .btn-main {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 52px 0;
    }

    .service-header {
        margin-bottom: 28px;
    }

    .service-title {
        font-size: 21px;
    }

    .service-sub {
        font-size: 13.5px;
    }

    /* sembunyikan icon tab, beri lebih ruang teks */
    .tab-btn i {
        display: none;
    }

    .tab-btn {
        font-size: 13px;
        padding: 9px 12px;
    }

    .service-panel .row {
        --bs-gutter-y: 1.25rem;
    }

    .service-img-wrap {
        border-radius: 14px;
    }

    .service-img {
        border-radius: 14px;
    }

    .service-panel-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .service-panel-desc {
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .service-list {
        gap: 8px;
        margin-bottom: 22px;
    }

    .service-list li {
        font-size: 13.5px;
    }
}

/* CATALOG */
.catalog-section {
    padding: 80px 0 60px;
    background: #fff;
}

.catalog-header {
    max-width: 580px;
    margin: 0 auto 52px;
}

.catalog-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.catalog-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a2a30;
    line-height: 1.2;
    margin-bottom: 12px;
}

.catalog-sub {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.catalog-layout > div:first-child {
    height: fit-content;
}

.catalog-sidebar {
    background: white;
    padding: 20px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    border: 1px solid #e8f0f3;
    position: sticky;
    top: 90px;
}

.catalog-sidebar h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9aacb5;
    margin-bottom: 12px;
    padding: 0 4px;
}

.catalog-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog-menu li {
    padding: 9px 12px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: background .15s, color .15s;
    margin-bottom: 0;
}

.catalog-menu li:hover {
    background: #f0fafa;
    color: #2aa1b3;
}

.catalog-menu li.active {
    background: #e8f7fa;
    color: #2aa1b3;
    font-weight: 600;
}

/* product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #eef2f4;
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.product-card.hidden {
    display: none !important;
}

/* product image */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.product-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: capitalize;
    letter-spacing: .3px;
    z-index: 1;
}

.rental-chips-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 1;
}

.rental-chip-overlay {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    color: white;
    white-space: nowrap;
}

/* product body */
.product-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h5 {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

.product-brand {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: #2aa1b3;
    margin-bottom: 8px;
}

.product-price span {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
}

.product-features {
    padding-left: 18px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-features li {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
}

.product-stock {
    background: #e8f7ee;
    color: #1a8f4c;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.product-stock-out {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

.btn-detail {
    padding: 0 14px;
    height: 36px;
    border: 1.5px solid #c0e9f0;
    border-radius: 10px;
    background: #f0fafb;
    color: #2aa1b3;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    flex-grow: 1;
    justify-content: center;
}

.btn-detail:hover {
    background: #2aa1b3;
    color: white;
    border-color: #2aa1b3;
}

.btn-sewa-full {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #2aa1b3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
}

.btn-sewa-full:hover { background: #228fa0; color: white; }

.catalog-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.catalog-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #f0fafb;
    border: 1.5px dashed #2aa1b3;
    border-radius: 12px;
    color: #2aa1b3;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.catalog-more-btn:hover {
    background: #2aa1b3;
    color: #fff;
    border-color: #2aa1b3;
    text-decoration: none;
}

.catalog-date .form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
}

.catalog-date .form-control:focus {
    border-color: #2aa1b3;
    box-shadow: 0 0 0 2px rgba(42, 161, 179, 0.1);
}

@media (max-width: 992px) {
    .catalog-section {
        padding: 64px 0 40px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .catalog-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .catalog-section {
        padding: 52px 0 32px;
    }

    .catalog-header {
        margin-bottom: 32px;
    }

    .catalog-title {
        font-size: 22px;
    }

    .catalog-sub {
        font-size: 13.5px;
    }

    .catalog-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .catalog-menu li {
        padding: 7px 13px;
        border-radius: 20px;
        background: #f1f7f9;
        font-size: 13px;
        white-space: nowrap;
    }

    .catalog-menu li.active {
        background: #e8f7fa;
        color: #2aa1b3;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .product-body {
        padding: 10px;
    }

    .product-body h5 {
        font-size: 14px;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-features {
        padding-left: 14px;
        margin-bottom: 8px;
    }

    .product-features li {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .product-stock {
        font-size: 11px;
        text-align: center;
        padding: 4px;
    }
}

/*PROCESS*/
.process-section {
    padding: 100px 0;
    background: #f7fbfc;
}

.process-header {
    max-width: 560px;
    margin: 0 auto 56px;
}

.process-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.process-title-main {
    font-size: 36px;
    font-weight: 800;
    color: #1a2a30;
    margin-bottom: 12px;
    line-height: 1.2;
}

.process-sub {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
}

.process-section { overflow-x: hidden; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    display: none;
}

.process-card {
    background: white;
    padding: 0 0 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    border: 1px solid #e8f0f3;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42,161,179,.1);
}

.process-step-num {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.process-step-num span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2aa1b3, #0e8fa3);
    color: white;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(42,161,179,.35);
    border: 3px solid white;
}

.process-image {
    padding: 0;
    margin-bottom: 20px;
    background: none;
}

.process-image img {
    width: 100%;
    max-width: none;
    margin: 0;
    display: block;
    border-radius: 0;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: none;
}

.process-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a30;
    margin-bottom: 8px;
    padding: 4px 20px 0;
    line-height: 1.3;
}

.process-card p {
    font-size: 13.5px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .process-grid::before { display: none; }
}

@media (max-width: 576px) {
    .process-section {
        padding: 64px 0;
    }

    .process-header {
        margin-bottom: 36px;
    }

    .process-title-main {
        font-size: 24px;
    }

    .process-sub {
        font-size: 14px;
    }

    .process-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding: 8px 4px 28px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .process-grid::-webkit-scrollbar { display: none; }

    .process-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
    }

    .process-image img {
        max-width: none;
    }

    .process-card-title {
        font-size: 15px;
    }

    .process-card p {
        font-size: 13px;
    }
}

/*TRUST*/
.trust-section {
    padding: 100px 0 0;
    background: #fff;
}

.trust-header {
    max-width: 580px;
    margin: 0 auto 52px;
}

.trust-badge {
    display: inline-block;
    background: #e8f7fa;
    color: #2aa1b3;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.trust-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a2a30;
    margin-bottom: 12px;
    line-height: 1.2;
}

.trust-sub {
    font-size: 15px;
    color: #6b7b85;
    line-height: 1.65;
    margin: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

.trust-card {
    background: #fff;
    border: 1px solid #e8f0f3;
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .22s, box-shadow .22s, border-color .22s;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2aa1b3, #3bbdcf);
    opacity: 0;
    transition: opacity .22s;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42,161,179,.12);
    border-color: #b8e4ec;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2aa1b3, #0e8fa3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(42,161,179,.25);
}

.trust-text {
    flex: 1;
}

.trust-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a30;
    margin-bottom: 7px;
    line-height: 1.3;
}

.trust-text p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #6b7b85;
    margin: 0;
}

/* CTA Banner */
.trust-cta {
    background: linear-gradient(135deg, #0d6e7e 0%, #2aa1b3 55%, #3bbdcf 100%);
    border-radius: 20px 20px 0 0;
    padding: 44px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.trust-cta-text {
    flex: 1;
}

.trust-cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}

.trust-cta h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
}

.trust-cta p {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    margin: 0;
}

.trust-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2aa1b3;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    transition: background .2s, transform .15s;
}

.trust-cta-btn:hover {
    background: #f0fafa;
    color: #2aa1b3;
    transform: translateY(-2px);
}

.btn-main {
    background: #2aa1b3;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

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

    .trust-cta {
        padding: 36px 36px;
    }

    .trust-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 64px 0 0;
    }

    .trust-header {
        margin-bottom: 32px;
    }

    .trust-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .trust-sub {
        font-size: 14px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 36px;
    }

    .trust-card {
        padding: 20px 18px;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .trust-card-title {
        font-size: 14px;
    }

    .trust-text p {
        font-size: 13px;
    }

    .trust-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
        gap: 20px;
    }

    .trust-cta h3 {
        font-size: 18px;
    }

    .trust-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .btn-main {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px;
    }
}

/* MICRO */
.btn-main {
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42,161,179,.25);
}

.btn-main:active {
    transform: scale(0.96);
}

.btn-main::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.2);
    top: 0;
    left: -100%;
    transition: left .4s;
}

.btn-main:hover::after {
    left: 0;
}

.hidden-init {
    opacity: 0;
    transform: translateY(30px);
}

.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}

.hero-title { animation: fadeUp .8s ease; }
.hero-desc  { animation: fadeUp 1s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.skeleton {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 10px;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: system-ui, sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    transition: transform .18s, box-shadow .18s;
}
.wa-float i { font-size: 20px; line-height: 1; }
.wa-float:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.wa-float:active { transform: scale(.97); }

@media (max-width: 768px) {
    .wa-float {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
        bottom: 20px;
        right: 16px;
    }
    .wa-text { display: none; }
    .wa-float i { font-size: 24px; }
    @supports (bottom: env(safe-area-inset-bottom)) {
        .wa-float { bottom: calc(20px + env(safe-area-inset-bottom)); }
    }
}
/* END MICRO */
/* CHECKOUT */
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}


.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 14px;
    color: #333;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: 0.25s;
}

.select-wrapper select:hover,
.select-wrapper select:focus {
    border-color: #2aa1b3;
    background: #fff;
}

.select-wrapper select:focus {
    box-shadow: 0 0 0 2px rgba(42, 161, 179, 0.15);
}

.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9ca3af;
    pointer-events: none;
}

/* CART PAGE HEADER */
/* Cart Hero */
.cart-hero {
    background: linear-gradient(135deg, #0e7a8c 0%, #2aa1b3 55%, #3bbdcf 100%);
    padding: 44px 0 76px;
    color: white;
    position: relative;
    overflow: hidden;
}
.cart-hero-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.1); pointer-events: none; }
.cart-hr-1 { width: 500px; height: 500px; top: -200px; right: -120px; }
.cart-hr-2 { width: 300px; height: 300px; top:  -60px; right:   60px; }
.cart-hr-3 { width: 360px; height: 360px; bottom: -180px; left: -100px; }
.cart-hero-dot { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
.cart-hd-1 { width: 200px; height: 200px; top: -50px; right: 100px; }
.cart-hd-2 { width: 120px; height: 120px; bottom: 20px; left: 60px; }
.cart-hero-body { position: relative; z-index: 2; }

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 14px;
}
.cart-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.cart-breadcrumb a:hover { color: white; }
.cart-breadcrumb span { color: rgba(255,255,255,.65); }
.cart-breadcrumb i { font-size: 10px; color: rgba(255,255,255,.4); }

.cart-page-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0 0 10px;
    line-height: 1.15;
}
.cart-page-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.85);
    margin: 0 0 20px;
    line-height: 1.65;
}
.cart-hero-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.cart-hero-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2); border-radius: 20px;
    padding: 4px 11px; font-size: 12px; font-weight: 500; color: white;
}
.cart-hero-illo {
    width: 200px; height: 200px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.cart-illo-ring { position: absolute; inset: 0; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2); }
.cart-illo-ring-inner { position: absolute; inset: 30px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18); }
.cart-illo-icon { position: relative; z-index: 2; font-size: 68px; color: white; opacity: .9; filter: drop-shadow(0 8px 24px rgba(0,0,0,.15)); }

@media (max-width: 576px) {
    .cart-hero { padding: 34px 0 68px; }
    .cart-page-title { font-size: 26px; }
    .cart-page-sub { font-size: 13px; margin-bottom: 16px; }
}
@media (max-width: 400px) {
    .cart-hero { padding: 28px 0 64px; }
    .cart-page-title { font-size: 22px; }
}

.cart-container {
    padding-top: 32px;
    padding-bottom: 60px;
}

/* checkout box & title */
.checkout-box {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    margin-bottom: 20px;
    border: 1px solid #eef2f4;
}

.checkout-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a30;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.checkout-title i {
    color: #2aa1b3;
}

/* form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #4a5a64;
    margin-bottom: 6px;
    letter-spacing: .01em;
}

.cart-input {
    padding: 10px 13px;
    border: 1.5px solid #dde4e8;
    border-radius: 9px;
    font-size: 14px;
    color: #1a2a30;
    background: #fafcfc;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    font-family: inherit;
    resize: vertical;
}

.cart-input:focus {
    border-color: #2aa1b3;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42,161,179,.12);
}

textarea.cart-input {
    min-height: 80px;
}

/* CART ITEMS */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f4f6;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f0f4f6;
}

.cart-content {
    flex: 1;
    min-width: 0;
}

.cart-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a2a30;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.cart-date {
    font-size: 12px;
    color: #6b7b85;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-date-error {
    color: #e74c3c;
}

.cart-duration-badge {
    font-size: 11px;
    font-weight: 600;
    color: #2aa1b3;
    background: #eaf7f9;
    border: 1px solid #b8e8ef;
    padding: 2px 9px;
    border-radius: 999px;
}

.cart-qty-line {
    font-size: 12px;
    color: #9aacb5;
}

.cart-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cart-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a30;
    white-space: nowrap;
}

.btn-hapus {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff0f0;
    color: #d94f4f;
    border: 1px solid #fcd5d5;
    padding: 5px 11px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}

.btn-hapus:hover {
    background: #ffe2e2;
    border-color: #f5b5b5;
}

/* empty cart */
.cart-empty {
    text-align: center;
    padding: 48px 20px;
    color: #9aacb5;
}

.cart-empty > i {
    font-size: 52px;
    margin-bottom: 14px;
    display: block;
    color: #c8d8de;
}

.cart-empty-title {
    font-size: 17px;
    font-weight: 600;
    color: #4a5a64;
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #9aacb5;
}

.cart-empty-btn {
    display: inline-block;
    background: #2aa1b3;
    color: #fff;
    padding: 10px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.cart-empty-btn:hover {
    background: #228fa0;
    color: #fff;
}

/* SUMMARY */
.summary-box {
    position: sticky;
    top: 80px;
}

.summary-rows {
    margin-bottom: 4px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    padding: 5px 0;
}

.summary-name {
    color: #4a5a64;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-val {
    color: #1a2a30;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.summary-deposit {
    border-top: 1px dashed #dde4e8;
    margin-top: 8px;
    padding-top: 8px;
}

.deposit-note {
    font-size: 11px;
    color: #2aa1b3;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 4px;
    line-height: 1.5;
}

.deposit-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #eef2f4;
    margin-top: 12px;
    padding-top: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1a2a30;
}

.summary-tip {
    margin-top: 14px;
    background: #f0fafa;
    border: 1px solid #c8e8ed;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 12px;
    color: #2d7a88;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}

.summary-tip i {
    flex-shrink: 0;
    margin-top: 1px;
    color: #2aa1b3;
}

/* checkout status alerts */
.checkout-alert {
    margin-top: 12px;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.checkout-alert-success {
    background: #ecfdf5;
    color: #1a7a54;
    border: 1px solid #a7f3d0;
}

.checkout-alert-pending {
    background: #fffbeb;
    color: #92590a;
    border: 1px solid #fde68a;
}

.checkout-alert-error {
    background: #fff0f0;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.btn-checkout {
    width: 100%;
    background: #2aa1b3;
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 10px;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-checkout:hover:not(:disabled) {
    background: #228fa0;
    transform: translateY(-1px);
}

.btn-checkout:disabled {
    opacity: .7;
    cursor: not-allowed;
}

/* responsive */
@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        gap: 12px;
    }

    .cart-thumb {
        width: 68px;
        height: 68px;
    }

    .summary-box {
        position: static;
    }
}

.modal-content {
    border-radius: 16px;
}

/* ICON BULAT */
.warning-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff4e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon i {
    font-size: 30px;
    color: #ff9800;
}

/* TEXT */
.modal-body h5 {
    font-size: 18px;
}

.modal-body p {
    line-height: 1.5;
}

/* BUTTON */
.btn-main {
    background: #2aa1b3;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
}

.btn-main:hover {
    background: #238a9a;
}

.modal.fade .modal-dialog {
    transform: translateY(20px);
    transition: 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* HERO WRAPPER */
.check-order-hero {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f7a8c, #2aa1b3);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.2),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 255, 255, 0.15),
            transparent 50%
        );
    filter: blur(40px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-inner h2 {
    font-size: 28px;
}

.hero-subtitle {
    opacity: 0.9;
    font-size: 14px;
}

.search-box {
    display: flex;
    align-items: center;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 60px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.search-box:hover {
    transform: translateY(-2px);
}

.search-box:focus-within {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.search-icon {
    padding: 0 14px;
    color: #e2e8f0;
    font-size: 16px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 14px 10px;
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box button {
    background: #fff;
    color: #2aa1b3;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.search-box button:hover {
    background: #f1f5f9;
}

.search-box button:active {
    transform: scale(0.95);
}

@media (max-width: 576px) {
    #hasilPesananModal .modal-dialog {
        margin: 10px;
    }

    #hasilPesananModal .modal-content {
        border-radius: 16px;
    }

    #hasilPesananModal .modal-body {
        padding-bottom: 20px;
    }

    #hasilPesananModal .btn-main {
        width: 100%;
        height: 48px;
        font-size: 15px;
        border-radius: 10px;
    }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99990;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.cart-drawer-title {
    font-weight: 700;
    font-size: 16px;
    color: #1e3a4a;
}
.cart-drawer-close {
    width: 34px;
    height: 34px;
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 15px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}
.cart-drawer-close:hover { background: #e5e7eb; color: #1e3a4a; }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}

.drawer-loading {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin: auto;
}

.drawer-empty {
    text-align: center;
    margin: auto;
    color: #9ca3af;
}
.drawer-empty i { font-size: 48px; display: block; margin-bottom: 12px; }
.drawer-empty p { font-size: 15px; font-weight: 600; color: #4b5563; margin-bottom: 4px; }
.drawer-empty small { font-size: 13px; }
.drawer-empty a { color: #2aa1b3; }

.drawer-items { flex: 1; }

.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.drawer-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name {
    font-weight: 600;
    font-size: 13px;
    color: #1e3a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.drawer-item-meta { font-size: 12px; color: #9ca3af; margin: 2px 0; }
.drawer-item-price { font-size: 13px; font-weight: 700; color: #2aa1b3; }
.drawer-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
}
.drawer-remove:hover { background: #dc2626; color: white; }

.drawer-summary {
    margin-top: 16px;
    padding: 14px;
    background: #f8fbfc;
    border-radius: 12px;
    border: 1px solid #e5f4f7;
}
.drawer-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #4b5563;
    padding: 3px 0;
}
.drawer-summary-row.deposit { color: #d97706; font-size: 12px; }
.drawer-summary-row.total {
    font-weight: 700;
    font-size: 15px;
    color: #1e3a4a;
    border-top: 1px solid #c0e9f0;
    margin-top: 6px;
    padding-top: 8px;
}
.drawer-deposit-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
    margin-bottom: 4px;
}

.drawer-actions {
    margin-top: 16px;
    padding-bottom: 8px;
}
.btn-drawer-checkout {
    display: block;
    width: 100%;
    padding: 13px;
    background: #2aa1b3;
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: .2s;
}
.btn-drawer-checkout:hover { background: #228fa0; color: white; }

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
}

/* ── STARTUP UPGRADES ── */

/* Inter + smooth rendering */
body {
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gradient primary button */
.btn-main {
    background: linear-gradient(135deg, #2aa1b3 0%, #1787a0 100%);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .01em;
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
}

/* Navbar CTA gradient */
.nav-cta,
.nav-cta-mobile {
    background: linear-gradient(135deg, #2aa1b3, #1787a0);
}

/* Gradient for drawer checkout button */
.btn-drawer-checkout {
    background: linear-gradient(135deg, #2aa1b3, #1787a0);
}
.btn-drawer-checkout:hover {
    background: linear-gradient(135deg, #229aab, #1280a0);
    color: white;
}

/* Gradient sewa button in catalog */
.btn-sewa-full {
    background: linear-gradient(135deg, #2aa1b3, #1787a0);
}
.btn-sewa-full:hover {
    background: linear-gradient(135deg, #229aab, #1280a0);
    color: white;
}

/* Tight headlines — modern startup kerning */
.problem-title,
.solution-title,
.service-title,
.service-panel-title,
.process-title-main,
.trust-title,
.catalog-title {
    letter-spacing: -0.025em;
}

/* Badge dot indicator */
.problem-badge,
.solution-badge,
.service-badge,
.process-badge,
.trust-badge,
.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.problem-badge::before,
.solution-badge::before,
.service-badge::before,
.process-badge::before,
.trust-badge::before,
.catalog-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Subtle dot-grid on light-bg sections */
.problem-section {
    background-image: radial-gradient(circle, rgba(42,161,179,.11) 1px, transparent 1px);
    background-size: 22px 22px;
}

.process-section {
    background-image: radial-gradient(circle, rgba(42,161,179,.11) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* Gradient text on key section titles */
.solution-title,
.trust-title {
    background: linear-gradient(90deg, #1a2a30 0%, #2aa1b3 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Teal-tinted colored card shadows */
.problem-card:hover {
    box-shadow: 0 20px 48px rgba(42,161,179,.16), 0 4px 12px rgba(0,0,0,.04);
}

.process-card:hover {
    box-shadow: 0 20px 48px rgba(42,161,179,.16), 0 4px 12px rgba(0,0,0,.04);
}

.trust-card:hover {
    box-shadow: 0 20px 48px rgba(42,161,179,.16), 0 4px 12px rgba(0,0,0,.04);
}

.product-card:hover {
    box-shadow: 0 20px 48px rgba(42,161,179,.13), 0 4px 12px rgba(0,0,0,.04);
}

/* ── END STARTUP UPGRADES ── */

/* ── PAYMENT SECTION ── */
.payment-section {
    background: #fff;
    padding-bottom: 72px;
}
.payment-hero {
    background: linear-gradient(135deg, #0d6e7e 0%, #2aa1b3 55%, #3bbdcf 100%);
    padding: 68px 0;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
/* Radial glow atas-kanan */
.payment-hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.13) 0%, transparent 70%);
    top: -120px;
    right: 15%;
    pointer-events: none;
}
/* Radial glow bawah-kiri */
.payment-hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 70%);
    bottom: -80px;
    left: 5%;
    pointer-events: none;
}
/* Dot grid pattern */
.payment-hero .container {
    position: relative;
    z-index: 1;
}
.payment-hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.payment-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
/* Ring dekorasi pojok kanan bawah */
.payment-hero-art::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.payment-hero-art::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.payment-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.payment-hero-text {
    flex: 1;
    max-width: 480px;
    position: relative;
    z-index: 1;
}
.payment-badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: .75rem;
}
.payment-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .4rem;
    line-height: 1.2;
}
.payment-sub {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin-bottom: 0;
    line-height: 1.6;
}
.payment-hero-art {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.payment-art-wallet {
    position: relative;
    display: inline-flex;
    z-index: 1;
}
.payment-art-wallet > i {
    font-size: 120px;
    color: rgba(255,255,255,.95);
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.25));
}
.payment-art-badge {
    position: absolute;
    bottom: -4px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.payment-art-badge i {
    font-size: 24px;
    color: #2aa1b3;
}
.payment-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: none;
    border: none;
    overflow: visible;
}
.payment-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: #fff;
    border: 1px solid #e8f0f3;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: box-shadow .2s;
}
.payment-group:hover {
    box-shadow: 0 6px 20px rgba(42,161,179,.1);
}
.payment-group-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #e8f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 30px;
    color: #2aa1b3;
}
.payment-group-body {
    flex: 1;
    min-width: 0;
}
.payment-group-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #9ca3af;
    margin-bottom: .65rem;
}
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    align-items: center;
}
.plogo {
    height: 28px;
    width: auto;
    max-width: 84px;
    object-fit: contain;
    display: block;
    transition: opacity .15s;
}
.plogo:hover { opacity: .7; }
@media (max-width: 768px) {
    .payment-hero-art { width: 130px; }
    .payment-art-wallet > i { font-size: 80px; }
}
@media (max-width: 575px) {
    .payment-section { padding-bottom: 56px; }
    .payment-hero { padding: 40px 0; margin-bottom: 24px; }
    .payment-hero-art { display: none; }
    .payment-hero-text { max-width: 100%; }
    .payment-groups { grid-template-columns: 1fr; gap: 10px; }
    .payment-group { padding: 1rem 1.2rem; }
    .payment-group-icon { width: 50px; height: 50px; font-size: 24px; border-radius: 12px; }
    .plogo { height: 24px; max-width: 72px; }
    .payment-logos { gap: .4rem .6rem; }
}
/* ── END PAYMENT SECTION ── */
