/* =========================================================
    BRAND COLORS
    - Navy   : #153560
    - Blue   : #07579C
    - Deep   : #013C83
    - Orange : #EA791A
    - Gold   : #EBD7A0
========================================================= */
:root {
    --brand-ink: #153560;
    --brand-primary: #07579c;
    --brand-primary-dark: #013c83;
    --brand-accent: #ea791a;
    --brand-gold: #ebd7a0;

    --tblr-primary: var(--brand-primary);
    --tblr-primary-rgb: 7, 87, 156;

    --tblr-warning: var(--brand-accent);
    --tblr-warning-rgb: 234, 121, 26;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f6f8fb;
}

/* ================= UTILITIES ================= */
.brand-title {
    letter-spacing: 1px;
}

.gap-12 {
    gap: 12px;
}

section {
    scroll-margin-top: 92px;
}

#top {
    scroll-margin-top: 0 !important;
    height: 0;
}

/* ================= GLASS NAVBAR ================= */
.navbar-glass {
    backdrop-filter: blur(12px);
    background: rgba(10, 24, 48, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.25s ease;
}

.navbar-solid {
    background: rgba(10, 24, 48, 0.92) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* ================= NAV ACTIVE INDICATOR ================= */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: 0.18s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.is-active {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.navbar-nav .nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(235, 215, 160, 0.95),
        rgba(255, 217, 90, 0.95)
    );
    box-shadow: 0 10px 22px rgba(235, 215, 160, 0.28);
}

.navbar-nav .nav-link:focus-visible {
    outline: 3px solid rgba(235, 215, 160, 0.55);
    outline-offset: 2px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 92vh;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            900px 520px at 20% 15%,
            rgba(234, 121, 26, 0.22),
            transparent 60%
        ),
        radial-gradient(
            720px 420px at 88% 30%,
            rgba(235, 215, 160, 0.18),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            var(--brand-primary-dark),
            var(--brand-primary)
        );
}

.hero-title {
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-subtitle {
    max-width: 44rem;
    font-size: 1.15rem;
    opacity: 0.92;
}

.hero-badges .badge {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff;
    font-weight: 700;
}

/* ================= SECTION TITLE ================= */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(7, 87, 156, 0.1);
    color: var(--brand-primary);
    font-weight: 800;
}

/* ================= FEATURE / ADV CARD ================= */
.feature-card {
    border: none;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(7, 87, 156, 0.12);
    color: var(--brand-primary);
    font-size: 1.6rem;
}

.feature-icon.accent {
    background: rgba(234, 121, 26, 0.14);
    color: var(--brand-accent);
}

/* ================= WHY / ADVANTAGES ================= */
.why-strip {
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    background:
        radial-gradient(
            700px 240px at 12% 10%,
            rgba(234, 121, 26, 0.12),
            transparent 60%
        ),
        radial-gradient(
            700px 260px at 88% 20%,
            rgba(7, 87, 156, 0.12),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.8)
        );
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}

.why-stat {
    height: 100%;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
}

.why-stat .ic {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(7, 87, 156, 0.1);
    color: var(--brand-primary-dark);
    font-size: 1.2rem;
}

.why-stat .ttl {
    margin: 0;
    color: rgba(15, 23, 42, 0.92);
    font-weight: 1000;
    letter-spacing: -0.2px;
}

.why-stat .sub {
    margin: 4px 0 0;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 700;
    line-height: 1.35;
}

.adv-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.adv-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.03);
    color: rgba(15, 23, 42, 0.74);
    font-size: 0.78rem;
    font-weight: 900;
}

.adv-pill i {
    color: var(--brand-primary);
}

/* ================= FITUR ================= */
.fitur-panel {
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    background:
        radial-gradient(
            700px 250px at 10% 10%,
            rgba(234, 121, 26, 0.1),
            transparent 55%
        ),
        radial-gradient(
            700px 260px at 90% 20%,
            rgba(7, 87, 156, 0.12),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.82)
        );
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.06);
}

.fitur-panel h3 {
    color: var(--brand-ink);
    font-weight: 1000;
    letter-spacing: -0.4px;
}

.fitur-bullets {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.fitur-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 800;
}

.fitur-bullets i {
    margin-top: 2px;
    color: var(--brand-primary);
}

.feature2-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.feature2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
}

.feature2-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-accent)
    );
}

.feature2-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 16px;
}

.feature2-ic {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(7, 87, 156, 0.1);
    color: var(--brand-primary-dark);
    font-size: 1.55rem;
}

.feature2-ic.accent {
    background: rgba(234, 121, 26, 0.12);
    color: var(--brand-accent);
}

.feature2-title {
    margin: 0;
    color: rgba(15, 23, 42, 0.92);
    font-weight: 1000;
    letter-spacing: -0.2px;
}

.feature2-desc {
    margin: 6px 0 0;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 700;
    line-height: 1.35;
}

.feature2-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 16px;
}

.feature2-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
}

.feature2-tag i {
    color: var(--brand-primary);
}

/* ================= LOGO STRIP ================= */
.logo-pill {
    padding: 0.65rem 1rem;
    border: 1px dashed rgba(16, 24, 40, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: rgba(16, 24, 40, 0.7);
    font-weight: 800;
    text-align: center;
}

/* ================= CTA ================= */
.cta {
    border-radius: 1.75rem;
    color: #fff;
    background:
        radial-gradient(
            900px 500px at 10% 10%,
            rgba(235, 215, 160, 0.18),
            transparent 60%
        ),
        radial-gradient(
            800px 520px at 90% 20%,
            rgba(234, 121, 26, 0.22),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            var(--brand-ink),
            var(--brand-primary)
        );
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.text-accent {
    color: var(--brand-accent) !important;
}

/* ================= DASHBOARD MOCK ================= */
.dash-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.dash-main {
    padding: 14px;
    color: #0f172a;
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    margin-bottom: 12px;
    padding: 0 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
}

.dash-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-logo {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #fff;
    object-fit: cover;
}

.dash-title {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.dash-title strong {
    font-weight: 900;
    letter-spacing: 0.2px;
}

.dash-title small {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 700;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-user .role {
    text-align: right;
    line-height: 1.05;
}

.dash-user .role strong {
    font-weight: 900;
}

.dash-user .role small {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 800;
}

.dash-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-accent)
    );
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(7, 87, 156, 0.18);
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 12px;
}

.dash-card {
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
}

.dash-card h6 {
    margin: 0;
    font-weight: 900;
}

.dash-muted {
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
}

.dash-progress {
    height: 10px;
    margin: 10px 0 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

.dash-progress > div {
    width: var(--progress, 36%);
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-accent)
    );
}

.dash-mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
}

.dash-pill {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dash-filter {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.dash-select {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.03);
}

.dash-select .lbl {
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.78rem;
    font-weight: 800;
}

.dash-select .val {
    color: rgba(15, 23, 42, 0.86);
    font-weight: 900;
}

.dash-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.dash-fin {
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
}

.dash-fin .label {
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.85rem;
    font-weight: 800;
}

.dash-fin .value {
    margin-top: 2px;
    font-size: 1.2rem;
    font-weight: 1000;
    letter-spacing: -0.2px;
}

.dash-fin.green {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), #fff 60%);
}

.dash-fin.red {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.1), #fff 60%);
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.dash-kpi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.03);
}

.dash-kpi .n {
    color: rgba(15, 23, 42, 0.92);
    font-size: 1.05rem;
    font-weight: 1000;
}

.dash-kpi .t {
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.dash-kpi .ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fff;
    color: var(--brand-primary);
}

.dash-donut {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 10px auto 6px;
    border-radius: 999px;
    background: var(
        --donut,
        conic-gradient(
            rgba(7, 87, 156, 0.95) 0 42%,
            rgba(234, 121, 26, 0.9) 42% 75%,
            rgba(15, 23, 42, 0.12) 75% 100%
        )
    );
}

.dash-donut::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #fff;
}

.dash-donut-center {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
}

.dash-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.8rem;
    font-weight: 900;
}

.dash-desktop {
    display: block;
}

.dash-mobile {
    display: none;
}

.dash-mobile-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.dash-mobile-card img {
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.dash-mobile-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 4px 0;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .dash-desktop {
        display: none;
    }

    .dash-mobile {
        display: block;
    }
}

.mock-stack {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 520px;
}

/* ================= PRICING CARD ================= */
.pricing2-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.25s ease;
}

.pricing2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.12);
}

.pricing2-card.recommended {
    transform: translateY(-8px);
    border-color: rgba(234, 121, 26, 0.35);
    box-shadow: 0 26px 70px rgba(234, 121, 26, 0.18);
}

.pricing2-head {
    position: relative;
    padding: 26px 22px 18px;
    color: #fff;
    background: linear-gradient(135deg, #1b49d2 0%, #0f3aa8 55%, #0b2f86 100%);
}

.pricing2-crown {
    color: #ffd95a;
    font-size: 2.75rem;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.pricing2-name {
    margin-top: 8px;
    font-size: 1.65rem;
    font-weight: 1000;
    letter-spacing: -0.4px;
}

.pricing2-price {
    margin-top: 6px;
    color: #73d0ff;
    font-size: 1.45rem;
    font-weight: 1000;
    letter-spacing: -0.2px;
    line-height: 1.15;
}

.pricing2-price span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 800;
}

.pricing2-body {
    padding: 14px 22px 22px;
}

.pricing2-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing2-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.pricing2-row:last-child {
    border-bottom: 0;
}

.pricing2-key {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 800;
}

.pricing2-val {
    color: rgba(15, 23, 42, 0.72);
    font-weight: 900;
}

.pricing2-flag {
    display: inline-flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-size: 14px;
}

.pricing2-flag.yes {
    background: rgba(34, 197, 94, 0.16);
    color: #22c55e;
}

.pricing2-flag.no {
    background: rgba(239, 68, 68, 0.16);
    color: #ef4444;
}

.pricing2-btn.btn {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #66bdf2 !important;
    border-color: transparent !important;
    color: #fff !important;
    font-weight: 1000;
}

.pricing2-btn.btn:hover,
.pricing2-btn.btn:focus,
.pricing2-btn.btn:active {
    background: #4aaeea !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(102, 189, 242, 0.28);
    filter: none !important;
}

.pricing2-btn.btn:focus-visible {
    outline: 3px solid rgba(235, 215, 160, 0.55);
    outline-offset: 2px;
}

.pricing2-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 1000;
}

.pricing2-card.recommended .pricing2-ribbon {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(
        135deg,
        rgba(235, 215, 160, 0.98),
        rgba(255, 217, 90, 0.98)
    );
    color: #2b1a00;
    box-shadow: 0 16px 30px rgba(235, 215, 160, 0.22);
}

/* ================= PRICING TABLE ================= */
.durasi-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.durasi-tabs .nav-link {
    padding: 10px 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: rgba(15, 23, 42, 0.78);
    font-weight: 1000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: 0.2s ease;
}

.durasi-tabs .nav-link:hover {
    transform: translateY(-1px);
}

.durasi-tabs .nav-link.active {
    border-color: rgba(7, 87, 156, 0.35);
    background: linear-gradient(
        135deg,
        rgba(7, 87, 156, 0.95),
        rgba(1, 60, 131, 0.95)
    );
    color: #fff;
    box-shadow: 0 18px 45px rgba(7, 87, 156, 0.18);
}

.pricing-table-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
    background:
        radial-gradient(
            600px 240px at 10% 10%,
            rgba(234, 121, 26, 0.25),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            rgba(7, 87, 156, 0.96),
            rgba(1, 60, 131, 0.96)
        );
}

.pricing-table-head .ttl {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 1000;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

.pricing-table-sub {
    margin-top: 2px;
    opacity: 0.92;
    font-size: 0.85rem;
    font-weight: 800;
}

.head-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 1000;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
}

.head-badge.flexible {
    background: linear-gradient(
        135deg,
        rgba(234, 121, 26, 0.98),
        rgba(255, 176, 90, 0.98)
    );
    color: #1b0f00;
}

.head-badge.hemat {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.98),
        rgba(134, 239, 172, 0.98)
    );
    color: #06220f;
}

.head-badge.saving {
    background: linear-gradient(
        135deg,
        rgba(235, 215, 160, 0.98),
        rgba(255, 217, 90, 0.98)
    );
    color: #2b1a00;
}

.pricing-table {
    margin: 0;
}

.pricing-table thead th {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(15, 23, 42, 0.03);
    color: rgba(15, 23, 42, 0.76);
    font-weight: 1000;
    letter-spacing: 0.2px;
}

.pricing-table tbody td {
    padding: 0.55rem 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
    line-height: 1.15;
    vertical-align: middle;
}

.plan-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(15, 23, 42, 0.9);
    font-weight: 1000;
}

.plan-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
}

.dot-basic {
    background: rgba(7, 87, 156, 0.9);
}

.dot-reguler {
    background: rgba(234, 121, 26, 0.95);
}

.dot-pro {
    background: rgba(15, 23, 42, 0.85);
}

.dot-ent {
    background: rgba(34, 197, 94, 0.9);
}

.plan-row {
    transition: 0.18s ease;
}

.plan-row:hover {
    background: rgba(7, 87, 156, 0.05);
}

.plan-row.featured {
    background: linear-gradient(
        90deg,
        rgba(234, 121, 26, 0.1),
        transparent 55%
    );
}

/* ================= PHONE MOCKUP ================= */
.phone-mock {
    position: absolute;
    right: -14px;
    bottom: -14px;
    z-index: 5;
    width: 220px;
    max-width: 48%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2.2rem;
    background: #0b1220;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    transform: rotate(6deg);
    backdrop-filter: none;
}

.phone-frame {
    position: relative;
    padding: 10px;
    background: #0b1220;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 3;
    width: 92px;
    height: 22px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.phone-inner {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.8rem;
    background: #ffffff;
}

.phone-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    padding: 0;
    background: #ffffff;
}

.phone-screen img.phone-logo {
    width: 100%;
    height: 100%;
    padding: 22px;
    background: #ffffff;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .phone-mock {
        right: -10px;
        bottom: -10px;
        width: 200px;
    }

    .phone-screen {
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .phone-mock {
        display: none !important;
    }
}

.fitur-hero-img {
    display: block;
    width: 100%;
    height: 165px;
    object-fit: cover;
    object-position: center;
}

.footer-logo {
    display: block;
    width: 50%;
    height: 50%;
    object-fit: cover;
}

/* ================= SOCIAL ================= */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #6c757d;
    text-decoration: none;
    transition: 0.15s ease-in-out;
}

.social-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(13, 110, 253, 0.25);
    color: #0d6efd;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background: #fff;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text small {
    color: rgba(255, 217, 90, 0.98);
    font-weight: 600;
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

/* ================= FLOATING WHATSAPP ================= */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    color: #fff;
    filter: brightness(0.98);
}

.wa-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 4px;
    color: #fff;
}

.wa-float i {
    font-size: 1.85rem;
    line-height: 1;
}

.wa-float .wa-label {
    position: absolute;
    top: 50%;
    right: 72px;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    transition: 0.18s ease;
}

.wa-float:hover .wa-label,
.wa-float:focus-visible .wa-label {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .wa-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .wa-float i {
        font-size: 1.7rem;
    }

    .wa-float .wa-label {
        display: none;
    }
}

/* ================= BLOG ================= */
.blog-carousel {
    margin-top: 1rem;
}

.blog-carousel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.blog-carousel-title {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(34, 54, 90, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #22365a;
    font-size: 1.15rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.blog-carousel-title i {
    color: #22365a;
}

.blog-carousel-more {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #22365a;
    border-radius: 999px;
    background: #22365a;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(34, 54, 90, 0.18);
    transition: 0.25s ease;
}

.blog-carousel-more:hover {
    transform: translateY(-2px);
    border-color: #1b2c49;
    background: #1b2c49;
    color: #fff;
    box-shadow: 0 12px 24px rgba(34, 54, 90, 0.24);
}

.blog-carousel-more i {
    color: #fff;
    font-size: 0.95rem;
}

.blog-carousel-line {
    flex: 1 1 auto;
    min-width: 80px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(34, 54, 90, 0.18),
        rgba(34, 54, 90, 0.05)
    );
}

.blog-carousel-actions {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.blog-carousel-shell {
    position: relative;
    padding-top: 12px;
    background: transparent;
}

.blog-carousel-viewport {
    position: relative;
    overflow: hidden;
    margin-top: -12px;
    padding-top: 12px;
    border-radius: 1.5rem;
}

.blog-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.blog-slide {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
    width: 100%;
    background: transparent;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    border: none;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.11);
}

.blog-cover {
    display: block;
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.blog-body {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 1.25rem 1.3rem 1.15rem;
}

.blog-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.blog-title {
    margin-bottom: 12px;
    color: var(--brand-ink);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.blog-summary {
    margin-bottom: 18px;
    color: rgba(15, 23, 42, 0.62);
    font-size: 1rem;
    line-height: 1.65;
}

.blog-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(15, 23, 42, 0.62);
    font-size: 0.92rem;
    line-height: 1.3;
}

.blog-meta-item i {
    flex: 0 0 auto;
    color: var(--brand-primary);
    font-size: 0.95rem;
}

.blog-readmore {
    color: var(--brand-primary);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.blog-readmore:hover {
    color: var(--brand-primary-dark);
}

.blog-carousel-nav {
    position: static;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transform: none;
    border: 1px solid rgba(34, 54, 90, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #22365a;
    box-shadow: 0 10px 24px rgba(34, 54, 90, 0.08);
    transition: 0.25s ease;
}

.blog-carousel-nav:hover:not(.is-hidden) {
    transform: translateY(-2px);
    background: rgba(34, 54, 90, 0.06);
    color: #22365a;
}

.blog-carousel-nav:disabled {
    cursor: default;
}

.blog-carousel-nav.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
}

.blog-carousel-nav-left,
.blog-carousel-nav-right {
    left: auto;
    right: auto;
}

@media (max-width: 1199.98px) {
    .blog-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .blog-carousel-head {
        gap: 12px;
    }

    .blog-carousel-title {
        padding: 0.6rem 0.9rem;
        font-size: 1rem;
    }

    .blog-carousel-more {
        height: 40px;
        padding: 0 13px;
        font-size: 0.92rem;
    }

    .blog-carousel-line {
        order: 4;
        flex: 0 0 100%;
    }

    .blog-carousel-actions {
        gap: 8px;
        margin-left: auto;
    }

    .blog-carousel-nav {
        width: 42px;
        height: 42px;
    }

    .blog-slide {
        grid-template-columns: 1fr;
    }

    .blog-cover {
        height: 220px;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-readmore {
        margin-top: 4px;
    }
}

/* ================= BLOG DETAIL POLISH ================= */
.blog-detail-page {
    padding-top: 110px;
    padding-bottom: 72px;
}

.blog-detail-breadcrumb {
    margin-bottom: 22px;
}

.blog-detail-breadcrumb .breadcrumb {
    gap: 2px;
}

.blog-detail-breadcrumb .breadcrumb-item,
.blog-detail-breadcrumb .breadcrumb-item a {
    color: rgba(21, 53, 96, 0.72);
    font-weight: 700;
    text-decoration: none;
}

.blog-detail-breadcrumb .breadcrumb-item a:hover {
    color: var(--brand-primary);
}

.blog-detail-breadcrumb .breadcrumb-item.active {
    color: var(--brand-ink);
    font-weight: 800;
}

.blog-detail-article {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.blog-detail-cover {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.blog-detail-body {
    padding: 32px 34px 36px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 18px;
}

.blog-detail-meta .meta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(15, 23, 42, 0.58);
    font-size: 0.95rem;
    font-weight: 700;
}

.blog-detail-meta .meta-inline i {
    color: var(--brand-primary);
}

.blog-detail-title {
    margin-bottom: 14px;
    color: var(--brand-ink);
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 1000;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.blog-detail-summary {
    margin-bottom: 28px;
    color: rgba(15, 23, 42, 0.62);
    font-size: 1.08rem;
    line-height: 1.85;
}

.blog-content {
    color: rgba(15, 23, 42, 0.78);
    font-size: 1.04rem;
    line-height: 1.95;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    color: var(--brand-ink);
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.blog-content p {
    margin-bottom: 1.1rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.blog-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--brand-accent);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.015));
    color: rgba(15, 23, 42, 0.72);
    font-style: italic;
}

.blog-detail-sidebar .card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.blog-detail-sidecard .card-body {
    padding: 24px 22px;
}

.blog-detail-side-label {
    margin-bottom: 8px;
    color: rgba(15, 23, 42, 0.5);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.blog-detail-side-value {
    color: rgba(15, 23, 42, 0.84);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.5;
}

.blog-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-detail-actions .btn {
    border-radius: 14px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .blog-detail-page {
        padding-top: 98px;
        padding-bottom: 56px;
    }

    .blog-detail-body {
        padding: 24px 20px 28px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }
}

/* ================= BLOG LIST TABLER POLISH FINAL ================= */
.blog-list-page {
    padding-top: 110px;
    padding-bottom: 72px;
}

.blog-list-head {
    margin-bottom: 2rem;
}

.blog-filter-form {
    top: 108px;
}

.blog-filter-card {
    padding: 24px;
    border: 1px solid rgba(21, 53, 96, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 53, 96, 0.06);
}

.blog-result-count {
    display: inline-flex;
    align-items: center;
    color: var(--brand-ink);
    font-size: 1.05rem;
    font-weight: 800;
}

.blog-list-row-card {
    overflow: hidden;
    border: 1px solid rgba(21, 53, 96, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(21, 53, 96, 0.05);
    transition: 0.22s ease;
}

.blog-list-row-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(21, 53, 96, 0.08);
}

.blog-list-thumb-link {
    display: block;
    padding: 18px 0 18px 18px; /* kasih nafas kiri & atas bawah */
    text-decoration: none;
}

.blog-list-thumb {
    display: block;
    width: 220px;
    min-width: 220px;
    height: 180px; /* lebih pendek supaya gak dominan */
    border-radius: 18px; /* biar tidak kotak keras */
    object-fit: cover;
    background: #f8fafc;
    box-shadow: 0 8px 22px rgba(21, 53, 96, 0.08);
}

.blog-list-thumb-placeholder {
    background:
        radial-gradient(600px 220px at 10% 10%, rgba(234, 121, 26, 0.10), transparent 55%),
        radial-gradient(600px 220px at 90% 10%, rgba(7, 87, 156, 0.12), transparent 55%),
        linear-gradient(180deg, #f8fafc, #eef3f9);
}

.blog-list-row-body {
    padding: 22px 24px 22px 18px; /* jangan terlalu nempel ke gambar */
}

.blog-list-row-title {
    color: var(--brand-ink);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-top: 4px;
}

.blog-list-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(21, 53, 96, 0.68);
    font-size: 0.94rem;
    font-weight: 700;
}

.blog-list-meta-item i {
    color: var(--brand-primary);
}

.blog-list-row-summary {
    max-width: 720px;
    color: rgba(21, 53, 96, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-list-row-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    min-width: 132px;
    height: 100%;
    white-space: nowrap;
}

.blog-list-row-side .btn-outline-primary {
    border-color: rgba(7, 87, 156, 0.3);
    color: var(--brand-primary);
    font-weight: 700;
}

.blog-list-row-side .btn-outline-primary:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.blog-list-page .badge {
    font-weight: 800;
}

.blog-list-page .page-link {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    border: 1px solid rgba(21, 53, 96, 0.12);
    color: var(--brand-ink);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(21, 53, 96, 0.04);
}

.blog-list-page .page-item.active .page-link {
    border-color: rgba(7, 87, 156, 0.35);
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-primary-dark)
    );
    color: #fff;
}

.blog-list-page .page-link:hover {
    color: var(--brand-primary-dark);
    background: rgba(7, 87, 156, 0.05);
}

@media (max-width: 991.98px) {
    .blog-list-page {
        padding-top: 98px;
        padding-bottom: 56px;
    }

    .blog-filter-form {
        position: static !important;
        top: auto;
    }

    .blog-list-thumb-link {
        padding: 16px 0 0 16px;
    }

    .blog-list-thumb {
        width: 180px;
        min-width: 180px;
        height: 150px;
    }

    .blog-list-row-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .blog-list-thumb-link {
        padding: 16px 16px 0 16px;
    }

    .blog-list-thumb {
        width: 100%;
        min-width: 100%;
        height: 210px;
    }

    .blog-list-row-body {
        padding: 18px;
    }

    .blog-list-row-side {
        align-items: flex-start;
        min-width: 0;
        white-space: normal;
    }
}

/* ================= PELANGGAN ================= */
#pelanggan {
    background:
        radial-gradient(
            700px 260px at 10% 10%,
            rgba(234, 121, 26, 0.05),
            transparent 55%
        ),
        radial-gradient(
            700px 260px at 90% 10%,
            rgba(7, 87, 156, 0.07),
            transparent 55%
        ),
        #f8fafc;
}

.customer-carousel {
    margin-top: 1rem;
}

.customer-carousel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.customer-carousel-title {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(34, 54, 90, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-ink);
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.customer-carousel-line {
    flex: 1 1 auto;
    min-width: 80px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(34, 54, 90, 0.18),
        rgba(34, 54, 90, 0.05)
    );
}

.customer-carousel-actions {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.customer-carousel-nav {
    position: static;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transform: none;
    border: 1px solid rgba(34, 54, 90, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #22365a;
    box-shadow: 0 10px 24px rgba(34, 54, 90, 0.08);
    transition: 0.25s ease;
}

.customer-carousel-nav:hover:not(.is-hidden) {
    transform: translateY(-2px);
    background: rgba(34, 54, 90, 0.06);
    color: #22365a;
}

.customer-carousel-nav:disabled {
    cursor: default;
}

.customer-carousel-nav.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
}

.customer-carousel-shell {
    position: relative;
}

.customer-carousel-viewport {
    overflow: hidden;
    border-radius: 1.75rem;
}

.customer-carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.customer-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
}

.customer-polish-card {
    display: grid;
    grid-template-columns: 32% 68%;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.customer-polish-thumb-col {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-height: 100%;
    padding: 0;
    background: transparent;
}

.customer-polish-thumb-wrap {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
}

.customer-polish-thumb,
.customer-polish-thumb--logo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: none;
    padding: 0;
    background: transparent;
    object-fit: cover;
    object-position: center;
}

.customer-polish-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
    border-left: 1px solid rgba(15, 23, 42, 0.05);
}

.customer-polish-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.customer-polish-type {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(7, 87, 156, 0.08);
    color: var(--brand-primary);
    font-size: 0.92rem;
    font-weight: 900;
}

.customer-polish-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(7, 87, 156, 0.12);
    border-radius: 999px;
    background: rgba(7, 87, 156, 0.08);
    color: var(--brand-primary);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s ease;
}

.customer-polish-map-btn:hover {
    transform: translateY(-1px);
    background: rgba(7, 87, 156, 0.12);
    color: var(--brand-primary-dark);
}

.customer-polish-name {
    margin-bottom: 1rem;
    color: var(--brand-ink);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 1000;
    letter-spacing: -0.6px;
    line-height: 1.08;
}

.customer-polish-address {
    margin-bottom: 1.35rem;
}

.customer-polish-address-label {
    margin-bottom: 0.45rem;
    color: rgba(15, 23, 42, 0.5);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.customer-polish-address-text {
    color: rgba(15, 23, 42, 0.72);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
}

.customer-polish-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 0.85rem;
}

.customer-polish-contact-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(15, 23, 42, 0.58);
    font-size: 0.92rem;
    font-weight: 800;
}

.customer-polish-contact-list i {
    color: var(--brand-primary);
}

.customer-polish-quote-wrap {
    position: relative;
    padding: 1.2rem 1.25rem 1.2rem 1.1rem;
    border-left: 4px solid var(--brand-accent);
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.025),
        rgba(15, 23, 42, 0.01)
    );
}

.customer-polish-quote-icon {
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(7, 87, 156, 0.18);
    font-size: 1.5rem;
}

.customer-polish-quote {
    margin: 0;
    color: rgba(15, 23, 42, 0.78);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.75;
}

.customer-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.customer-carousel-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(34, 54, 90, 0.18);
    transition: 0.3s ease;
}

.customer-carousel-dot.active {
    width: 34px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-accent)
    );
}

@media (max-width: 991.98px) {
    .customer-polish-card {
        grid-template-columns: 1fr;
    }

    .customer-polish-thumb-col,
    .customer-polish-content-col {
        padding: 0;
    }

    .customer-polish-thumb-wrap,
    .customer-polish-thumb,
    .customer-polish-thumb--logo {
        min-height: 280px;
    }

    .customer-polish-content-col {
        padding: 22px 20px;
        border-top: 1px solid rgba(15, 23, 42, 0.05);
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .customer-carousel-line {
        order: 4;
        flex: 0 0 100%;
    }

    .customer-carousel-actions {
        gap: 8px;
        margin-left: auto;
    }

    .customer-carousel-nav {
        width: 42px;
        height: 42px;
    }

    .customer-polish-name {
        font-size: 1.5rem;
    }

    .customer-polish-quote {
        font-size: 1rem;
        line-height: 1.7;
    }

    .customer-polish-thumb-wrap,
    .customer-polish-thumb,
    .customer-polish-thumb--logo {
        min-height: 220px;
    }
}