 /* ──────────────────────────────────────────────
       TOKENS
    ────────────────────────────────────────────── */
    :root {
        --brand:       #0F766E;
        --brand-mid:   #14B8A6;
        --brand-dark:  #0B4F49;
        --brand-light: #E6F5F2;
        --brand-soft:  #F0FDFA;
        --brand-text:  #0F766E;

        --navy:  #0F172A;
        --amber: #F59E0B;

        --ink:   #101828;
        --muted: #667085;
        --line:  #EAECF0;
        --cream: #F8F5EF;
    }

    /* ──────────────────────────────────────────────
       BASE
    ────────────────────────────────────────────── */
    *,
    *::before,
    *::after { box-sizing: border-box; }

    body {
        margin: 0;
        background: #fff;
        color: var(--ink);
        font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
        -webkit-font-smoothing: antialiased;
    }

    .home-wrap {
        overflow: hidden;
        background:
            radial-gradient(ellipse 60% 40% at 0% 0%, rgba(15,118,110,.1), transparent),
            radial-gradient(ellipse 40% 30% at 100% 5%, rgba(232,160,32,.09), transparent),
            #fff;
    }

    .container {
        max-width: 1160px;
        margin: 0 auto;
        padding-inline: 1.25rem;
    }
/* ──────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────── */
.glass-nav {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(234,236,240,.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.jasera-logo-img {
    width: 150px;
    height: 40px;
    object-fit: contain;
}

/* nav links versi desktop, inline di dalam navbar */
.nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .85rem;
    font-size: .82rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.btn-ghost:hover {
    background: #f1f5f9;
    color: var(--ink);
}

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-mid));
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15,118,110,.22);
    transition: transform .15s, box-shadow .15s;
}

.btn-cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15,118,110,.28);
}

.mobile-menu-btn,
.mobile-menu-close,
.mobile-menu-overlay,
.mobile-nav-panel {
    display: none;
}

/* ──────────────────────────────────────────────
   MOBILE MENU FULLSCREEN (elemen terpisah, sibling dari <nav>)
────────────────────────────────────────────── */
@media (max-width: 768px) {
    .jasera-logo-img {
        width: 135px;
        height: auto;
    }

    .nav-actions-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #0f172a;
        font-size: 22px;
        font-weight: 900;
        cursor: pointer;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15,23,42,.4);
        z-index: 10001;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    body.menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-panel {
        display: flex !important;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 10002;
        padding: 90px 24px 28px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        transform: translateX(100%);
        transition: transform .25s ease;
        overflow-y: auto;
    }

    body.menu-open .mobile-nav-panel {
        transform: translateX(0);
    }

    .mobile-menu-close {
        display: flex;
        position: absolute;
        top: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #0f172a;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-nav-panel a {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        font-size: .95rem !important;
        font-weight: 800 !important;
    }

    .mobile-nav-panel .btn-ghost {
        background: #f8fafc;
        color: #334155;
        border: 1px solid #e2e8f0;
    }

    .mobile-nav-panel .btn-cta-nav {
        margin-top: 6px;
        min-height: 48px;
        border-radius: 16px !important;
        color: #fff !important;
    }

    body.menu-open {
        overflow: hidden;
    }
}

    /* ──────────────────────────────────────────────
       HERO
    ────────────────────────────────────────────── */
    .hero {
        padding-block: 3.5rem 4rem;
    }

    @media (min-width: 600px) {
        .hero { padding-block: 5rem 6rem; }
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 900px) {
        .hero-grid {
            grid-template-columns: 1.1fr .9fr;
            gap: 4rem;
        }
    }

    /* Text side */
    .hero-text { text-align: center; }

    @media (min-width: 900px) {
        .hero-text { text-align: left; }
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .35rem .75rem;
        border-radius: 999px;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .02em;
        color: var(--brand-dark);
        background: var(--brand-light);
        border: 1px solid rgba(15,118,110,.14);
        margin-bottom: 1.2rem;
    }

    .eyebrow-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #10b981;
        flex-shrink: 0;
    }

    /* ── FONT SIZE YANG WAJAR DI MOBILE ── */
    .hero-title {
        font-size: clamp(2rem, 7vw, 4.2rem);
        line-height: 1.05;
        letter-spacing: -.03em;
        font-weight: 900;
        color: var(--ink);
        margin: 0 0 1.1rem;
    }

    @media (max-width: 599px) {
        .hero-title {
            font-size: 1.85rem;
            letter-spacing: -.02em;
            line-height: 1.15;
        }
    }

    .hero-title em {
        font-style: normal;
        color: var(--brand);
    }

    .hero-desc {
        font-size: clamp(.9rem, 2.2vw, 1.05rem);
        line-height: 1.8;
        color: var(--muted);
        max-width: 34rem;
        margin: 0 auto 1.8rem;
    }

    @media (min-width: 900px) {
        .hero-desc { margin-left: 0; }
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: .75rem;
        align-items: center;
    }

    @media (min-width: 440px) {
        .hero-actions { flex-direction: row; justify-content: center; }
    }

    @media (min-width: 900px) {
        .hero-actions { justify-content: flex-start; }
    }


    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .85rem 1.4rem;
        font-size: .9rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, var(--brand), var(--brand-mid));
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(15,118,110,.22);
        transition: transform .15s, box-shadow .15s;
        white-space: nowrap;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 36px rgba(15,118,110,.28);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .85rem 1.2rem;
        font-size: .9rem;
        font-weight: 700;
        color: var(--ink);
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(16,24,40,.06);
        transition: transform .15s, box-shadow .15s, border-color .15s;
        white-space: nowrap;
    }

    .btn-secondary:hover {
        transform: translateY(-1px);
        border-color: rgba(15,118,110,.3);
        box-shadow: 0 8px 20px rgba(16,24,40,.08);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2.2rem;
        max-width: 360px;
    }

    @media (max-width: 899px) {
        .hero-stats { margin-inline: auto; }
    }

    .stat-num {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--ink);
        letter-spacing: -.02em;
        line-height: 1;
    }

    .stat-label {
        font-size: .7rem;
        font-weight: 700;
        color: #94a3b8;
        margin-top: 3px;
    }

    /* Phone mockup */
    .phone-wrap {
        display: flex;
        justify-content: center;
    }

    .phone-frame {
        width: min(100%, 330px);
        padding: .7rem;
        border-radius: 2.2rem;
        background: #111827;
        box-shadow: 0 40px 80px rgba(16,24,40,.3), 0 0 0 1px rgba(255,255,255,.04) inset;
        position: relative;
    }

    @media (min-width: 900px) {
        .phone-frame { transform: rotate(1.5deg); }
    }

    .phone-screen {
        border-radius: 1.65rem;
        overflow: hidden;
        background: #F7F6F3;
        min-height: 580px;
    }

    .phone-banner {
        height: 120px;
        background: linear-gradient(135deg, #0B4F49 0%, var(--brand) 60%, var(--brand-mid) 100%);
        position: relative;
        overflow: hidden;
    }

    .phone-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
        background-size: 18px 18px;
    }

    .phone-banner-deco {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(245,158,11,.3);
    }

    .phone-card {
        margin: -38px 12px 0;
        position: relative;
        z-index: 1;
        background: #fff;
        border: 1px solid rgba(234,236,240,.9);
        border-radius: 1.2rem;
        padding: .9rem;
        box-shadow: 0 12px 28px rgba(16,24,40,.08);
    }

    .phone-avatar-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .phone-avatar {
        width: 62px;
        height: 62px;
        border-radius: 1rem;
        border: 3px solid #fff;
        box-shadow: 0 6px 14px rgba(16,24,40,.12);
        background: linear-gradient(135deg, var(--brand-dark), var(--brand));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 900;
    }

    .phone-badge {
        font-size: 9px;
        font-weight: 900;
        color: #fff;
        background: var(--navy);
        padding: 3px 8px;
        border-radius: 999px;
        letter-spacing: .05em;
    }

    .phone-name {
        font-size: .95rem;
        font-weight: 900;
        color: var(--ink);
        margin-top: .7rem;
    }

    .phone-loc {
        font-size: .65rem;
        color: #94a3b8;
        margin-top: 2px;
    }

    .phone-bio {
        font-size: .72rem;
        color: #64748b;
        line-height: 1.5;
        margin-top: .5rem;
        padding: .5rem .65rem;
        background: var(--brand-soft);
        border-radius: .6rem;
        border-left: 2.5px solid var(--brand);
    }

    .phone-contacts {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: .4rem;
        margin-top: .75rem;
    }

    .phone-contact-btn {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: .6rem;
        padding: .4rem 0;
        text-align: center;
        font-size: .6rem;
        font-weight: 800;
        color: #64748b;
    }

    .phone-items {
        padding: .75rem .75rem 0;
        display: flex;
        flex-direction: column;
        gap: .55rem;
    }

    .phone-item {
        background: #fff;
        border: 1px solid rgba(234,236,240,.95);
        border-radius: .9rem;
        padding: .6rem .75rem;
        display: flex;
        gap: .6rem;
        align-items: center;
    }

    .phone-item-icon {
        width: 38px;
        height: 38px;
        border-radius: .65rem;
        background: var(--brand-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .phone-item-name {
        font-size: .78rem;
        font-weight: 800;
        color: var(--ink);
    }

    .phone-item-price {
        font-size: .62rem;
        color: #94a3b8;
    }

    .phone-item-btn {
        margin-left: auto;
        font-size: .6rem;
        font-weight: 900;
        color: #fff;
        background: var(--brand);
        padding: 4px 9px;
        border-radius: 999px;
        flex-shrink: 0;
    }

    .phone-wa-btn {
        margin: .75rem;
        padding: .65rem;
        background: var(--navy);
        border-radius: 1rem;
        text-align: center;
    }

    .phone-wa-btn-text {
        font-size: .72rem;
        font-weight: 900;
        color: #fff;
    }

    .phone-wa-btn-sub {
        font-size: .58rem;
        color: #64748b;
        margin-top: 2px;
    }

    /* ──────────────────────────────────────────────
       SOCIAL PROOF TICKER
    ────────────────────────────────────────────── */
    .ticker-wrap {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: .85rem 0;
        overflow: hidden;
        background: var(--brand-soft);
    }

    .ticker-inner {
        display: flex;
        gap: 3rem;
        animation: ticker 22s linear infinite;
        width: max-content;
    }

    .ticker-inner:hover { animation-play-state: paused; }

    @keyframes ticker {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }

    .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        font-size: .78rem;
        font-weight: 700;
        color: var(--brand-dark);
        white-space: nowrap;
    }

    .ticker-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--brand);
        flex-shrink: 0;
    }

    /* ──────────────────────────────────────────────
       PROBLEM SECTION
    ────────────────────────────────────────────── */
    .section { padding-block: 4rem 5rem; }
    .section-lg { padding-block: 5rem 6rem; }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .3rem .7rem;
        border-radius: 999px;
        font-size: .7rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--brand-dark);
        background: var(--brand-light);
        border: 1px solid rgba(15,118,110,.14);
        margin-bottom: .9rem;
    }

    .section-title {
        font-size: clamp(1.65rem, 4vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -.03em;
        font-weight: 900;
        color: var(--ink);
    }

    .section-desc {
        color: var(--muted);
        line-height: 1.75;
        font-size: .97rem;
    }

    /* ──────────────────────────────────────────────
       FEATURE CARDS
    ────────────────────────────────────────────── */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.1rem;
    }

    .feature-card {
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 1.25rem;
        padding: 1.3rem 1.25rem;
        transition: transform .18s, box-shadow .18s, border-color .18s;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(16,24,40,.07);
        border-color: rgba(15,118,110,.25);
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: .9rem;
        display: block;
    }

    .feature-title {
        font-size: 1rem;
        font-weight: 900;
        color: var(--ink);
        margin: 0 0 .4rem;
    }

    .feature-desc {
        font-size: .83rem;
        color: var(--muted);
        line-height: 1.65;
        margin: 0;
    }
	

    @media (min-width: 900px) {
        .lg-faq { grid-template-columns: .7fr 1.3fr !important; }
    }


    /* ──────────────────────────────────────────────
       HOW IT WORKS
    ────────────────────────────────────────────── */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.2rem;
        margin-top: 3rem;
    }

    .step-card {
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 1.4rem;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
    }

    .step-num {
        font-size: 4rem;
        font-weight: 900;
        line-height: 1;
        color: var(--brand-light);
        margin-bottom: 1.2rem;
        letter-spacing: -.04em;
    }

    .step-title {
        font-size: 1.05rem;
        font-weight: 900;
        color: var(--ink);
        margin: 0 0 .4rem;
    }

    .step-desc {
        font-size: .83rem;
        color: var(--muted);
        line-height: 1.65;
        margin: 0;
    }

    /* ──────────────────────────────────────────────
       SHOWCASE
    ────────────────────────────────────────────── */
    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.1rem;
    }

    .showcase-card {
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 1.3rem;
        overflow: hidden;
        text-decoration: none;
        display: block;
        transition: transform .18s, box-shadow .18s, border-color .18s;
    }

    .showcase-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(16,24,40,.08);
        border-color: rgba(15,118,110,.2);
    }

    .showcase-banner {
        height: 130px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--navy) 0%, var(--brand) 100%);
    }

    .showcase-banner-deco {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px);
        background-size: 18px 18px;
    }

    .showcase-banner-circle {
        position: absolute;
        bottom: -24px;
        right: -24px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(245,158,11,.25);
    }

    .showcase-body {
        padding: 0 1rem 1rem;
    }

    .showcase-avatar-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-top: -40px;
        position: relative;
        z-index: 1;
    }

    .showcase-avatar {
        width: 72px;
        height: 72px;
        border-radius: 1.1rem;
        border: 3.5px solid #fff;
        box-shadow: 0 8px 16px rgba(16,24,40,.1);
        background: linear-gradient(135deg, var(--navy), var(--brand));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 900;
        overflow: hidden;
        flex-shrink: 0;
    }

    .showcase-name {
        font-size: .95rem;
        font-weight: 900;
        color: var(--ink);
        margin-top: .75rem;
    }

    .showcase-loc {
        font-size: .7rem;
        color: #94a3b8;
        margin-top: 2px;
    }

    .showcase-bio {
        font-size: .78rem;
        color: #64748b;
        line-height: 1.55;
        margin-top: .6rem;
        padding: .5rem .7rem;
        background: var(--brand-soft);
        border-radius: .65rem;
        border-left: 2.5px solid var(--brand);
    }

    .showcase-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: .9rem;
        padding-top: .75rem;
        border-top: 1px solid var(--line);
    }

    .showcase-cta-text {
        font-size: .72rem;
        font-weight: 800;
        color: var(--brand);
    }

    .showcase-arrow {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--brand-light);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .15s;
    }

    .showcase-card:hover .showcase-arrow {
        transform: translateX(3px);
    }

    /* ──────────────────────────────────────────────
       PRICING
    ────────────────────────────────────────────── */
    .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 1.1rem;
        max-width: 900px;
        margin-inline: auto;
        align-items: start;
    }

    .price-card {
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 1.4rem;
        padding: 1.5rem;
        position: relative;
    }

    .price-card.featured {
        background: var(--navy);
        border-color: transparent;
        box-shadow: 0 24px 56px rgba(15,118,110,.16);
    }

    .price-badge-popular {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
        background: var(--amber);
        color: var(--navy);
        padding: .25rem .65rem;
        border-radius: 999px;
    }

    .price-plan-name {
        font-size: .8rem;
        font-weight: 800;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: .5rem;
    }

    .price-plan-name.on-dark { color: var(--brand-mid); }

    .price-amount {
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--ink);
        letter-spacing: -.03em;
        line-height: 1;
    }

    .price-amount.on-dark { color: #fff; }

    .price-period {
        font-size: .75rem;
        color: var(--muted);
        margin-top: .2rem;
        margin-bottom: 1rem;
    }

    .price-period.on-dark { color: #64748b; }

    .price-desc {
        font-size: .82rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid var(--line);
    }

    .price-desc.on-dark {
        color: #94a3b8;
        border-color: rgba(255,255,255,.08);
    }

    .price-features {
        list-style: none;
        margin: 0 0 1.4rem;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: .55rem;
    }

    .price-feature {
        display: flex;
        align-items: flex-start;
        gap: .5rem;
        font-size: .82rem;
    }

    .price-feature.included { color: #334155; }
    .price-feature.excluded { color: #94a3b8; }
    .price-feature.on-dark.included { color: #cbd5e1; }
    .price-feature.on-dark.excluded { color: #475569; }

    .price-check {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
        font-size: .6rem;
        font-weight: 900;
    }

    .check-yes { background: var(--brand-light); color: var(--brand); }
    .check-no  { background: #f1f5f9; color: #cbd5e1; }
    .check-yes.on-dark { background: rgba(15,118,110,.25); color: var(--brand-mid); }
    .check-no.on-dark  { background: rgba(255,255,255,.06); color: #475569; }

    .btn-plan {
        display: block;
        text-align: center;
        padding: .8rem;
        border-radius: 10px;
        font-size: .85rem;
        font-weight: 800;
        text-decoration: none;
        transition: opacity .15s, transform .15s;
    }

    .btn-plan:hover { opacity: .88; transform: translateY(-1px); }

    .btn-plan-outline {
        border: 1.5px solid var(--brand);
        color: var(--brand);
        background: transparent;
    }

    .btn-plan-solid {
        background: var(--brand);
        color: #fff;
        box-shadow: 0 8px 18px rgba(15,118,110,.22);
    }

    /* ──────────────────────────────────────────────
       FAQ
    ────────────────────────────────────────────── */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: .65rem;
    }

    .faq-item {
        border: 1.5px solid var(--line);
        border-radius: 1.1rem;
        background: #fff;
        overflow: hidden;
        transition: border-color .15s;
    }

    .faq-item:hover { border-color: rgba(15,118,110,.2); }

    .faq-q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        font-size: .9rem;
        font-weight: 800;
        color: var(--ink);
        background: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--brand-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand);
        flex-shrink: 0;
        font-size: .8rem;
        transition: transform .2s;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }


	.faq-a {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transition: max-height 0.3s ease, opacity 0.3s ease;
		padding: 0 1.1rem; /* hilangkan padding bottom bawaan */
	}

	.faq-item.open .faq-a {
		max-height: 300px; /* berikan nilai aman sesuai panjang teks */
		opacity: 1;
		padding: 0 1.1rem 1rem; /* kembalikan padding bottom saat terbuka */
	}
  /*  .faq-a {
        display: none;
        padding: 0 1.1rem 1rem;
        font-size: .83rem;
        color: var(--muted);
        line-height: 1.7;
    }

    .faq-item.open .faq-a { display: block; }
	
	*/

    /* ──────────────────────────────────────────────
       FINAL CTA
    ────────────────────────────────────────────── */
    .cta-section {
        background: var(--navy);
        padding-block: 5rem 6rem;
    }

    .cta-section .section-title { color: #fff; }

   /* ──────────────────────────────────────────────
   FOOTER
	────────────────────────────────────────────── */
	.footer {
		padding: 3rem 0 1.5rem;
		background:
			radial-gradient(circle at 0% 0%, rgba(15,118,110,.06), transparent 32%),
			#fff;
		border-top: 1px solid var(--line);
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-logo {
		text-decoration: none;
		align-items: center;
	}

	.footer-brand {
		max-width: 380px;
	}

	.footer-brand-mark {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.footer-brand-name {
		font-size: 1.05rem;
	}

	.footer-desc {
		margin: 1rem 0 0;
		max-width: 340px;
		color: #64748B;
		font-size: .86rem;
		line-height: 1.75;
	}

	.footer-col {
		display: grid;
		gap: .65rem;
		align-content: start;
	}

	.footer-col h3 {
		margin: 0 0 .25rem;
		color: #0F172A;
		font-size: .78rem;
		font-weight: 950;
		letter-spacing: .07em;
		text-transform: uppercase;
	}

	.footer-col a {
		color: #64748B;
		font-size: .85rem;
		font-weight: 750;
		line-height: 1.4;
		text-decoration: none;
	}

	.footer-col a:hover {
		color: var(--brand);
	}

	.footer-bottom {
		display: flex;
		flex-direction: column;
		gap: .4rem;
		margin-top: 2.2rem;
		padding-top: 1.25rem;
		border-top: 1px solid #E2E8F0;
	}

	.footer-bottom p {
		margin: 0;
		color: #94A3B8;
		font-size: .78rem;
		line-height: 1.5;
	}

	@media (min-width: 760px) {
		.footer-grid {
			grid-template-columns: 1.5fr .7fr .7fr .7fr;
			align-items: start;
		}

		.footer-bottom {
			flex-direction: row;
			align-items: center;
			justify-content: space-between;
		}
	}
	
	@media(max-width:640px){
        .footer{
            padding:36px 0 24px;
        }
    
        .footer-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:24px 18px;
        }
    
        .footer-brand{
            grid-column:1 / -1;
            text-align:left;
        }
    
        .footer-desc{
            font-size:.85rem;
            line-height:1.7;
            max-width:100%;
        }
    
        .footer-col h3{
            font-size:.82rem;
            margin-bottom:10px;
        }
    
        .footer-col a{
            display:block;
            font-size:.82rem;
            padding:5px 0;
        }
    
        .footer-bottom{
            margin-top:28px;
            padding-top:18px;
            display:block;
            text-align:center;
            font-size:.78rem;
            line-height:1.6;
        }
    }

    
    /* ──────────────────────────────────────────────
       BG HELPERS
    ────────────────────────────────────────────── */
    .bg-alt { background: #f8fafc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ──────────────────────────────────────────────
   EXPLORE / JELAJAHI
────────────────────────────────────────────── */

.explore-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 48% 28% at 0% 0%, rgba(15,118,110,.10), transparent),
        radial-gradient(ellipse 36% 24% at 100% 0%, rgba(245,158,11,.10), transparent),
        linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.explore-main {
    padding: 3.2rem 0 4rem;
}

.explore-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

@media (min-width: 900px) {
    .explore-hero {
        grid-template-columns: 1fr 420px;
        gap: 2.5rem;
    }
}

.explore-title {
    margin: .8rem 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 900;
    color: var(--ink);
}

.explore-desc {
    margin: .9rem 0 0;
    max-width: 620px;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.75;
}

.explore-search {
    width: 100%;
}

.explore-search-box {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem;
    border-radius: 1.15rem;
    background: rgba(255,255,255,.92);
    border: 1.5px solid var(--line);
    box-shadow: 0 14px 36px rgba(16,24,40,.08);
}

.explore-search-icon {
    margin-left: .55rem;
    color: #94A3B8;
    flex-shrink: 0;
}

.explore-search-input {
    width: 100%;
    height: 42px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font-size: .9rem;
}

.explore-search-input::placeholder {
    color: #CBD5E1;
}

.explore-search-btn {
    height: 42px;
    padding: 0 1.15rem;
    border: 0;
    border-radius: .9rem;
    background: var(--brand);
    color: #fff;
    font-size: .84rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15,118,110,.18);
}

.explore-search-btn:hover {
    background: var(--brand-dark);
}

.explore-filter {
    display: flex;
    gap: .7rem;
    overflow-x: auto;
    padding: .3rem .05rem 1rem;
    margin-bottom: 1.2rem;
    scrollbar-width: none;
}

.explore-filter::-webkit-scrollbar {
    display: none;
}

.explore-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
    padding: .72rem .95rem;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: #475569;
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(16,24,40,.04);
}

.explore-filter-pill:hover {
    border-color: rgba(15,118,110,.28);
    color: var(--brand);
}

.explore-filter-pill.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 12px 26px rgba(15,118,110,.18);
}

.explore-result-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.explore-result-head h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--ink);
}

.explore-result-head p {
    margin: .25rem 0 0;
    font-size: .82rem;
    color: var(--muted);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 700px) {
    .explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .explore-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px){

    .explore-grid{
        display:grid !important;
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:10px !important;
    }

    .explore-card-pro{
        border-radius:16px !important;
        overflow:hidden;
    }

    .explore-cover .relative{
        height:82px !important;
    }

    .explore-card-content{
        padding:10px !important;
    }

    .explore-profile-row{
        margin-top:-28px !important;
        margin-bottom:6px !important;
    }

    .explore-avatar-pro{
        width:42px !important;
        height:42px !important;
        border-radius:14px !important;
        font-size:.78rem !important;
    }

    .explore-seller-name h3{
        font-size:.82rem !important;
        line-height:1.25 !important;
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .explore-card-content p{
        font-size:.72rem !important;
        line-height:1.35 !important;
    }

    .explore-catalog-preview{
        margin-top:8px !important;
        gap:6px !important;
    }

    .explore-catalog-item{
        padding:7px 8px !important;
        border-radius:10px !important;
    }

    .explore-catalog-item span{
        font-size:.62rem !important;
    }

    .explore-catalog-item strong{
        font-size:.7rem !important;
        line-height:1.25 !important;
        display:-webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .explore-card-footer{
        margin-top:10px !important;
        gap:8px !important;
        align-items:center !important;
    }

    .explore-meta strong{
        font-size:.82rem !important;
    }

    .explore-meta span{
        font-size:.62rem !important;
    }

    .explore-open-btn{
        padding:7px 9px !important;
        font-size:.68rem !important;
        border-radius:999px !important;
        white-space:nowrap;
    }
}

.explore-card-pro {
    position: relative;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15,23,42,.04),
        0 18px 45px rgba(15,23,42,.08);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.explore-card-pro:hover {
    transform: translateY(-4px);
    border-color: rgba(15,118,110,.24);
    box-shadow:
        0 1px 2px rgba(15,23,42,.04),
        0 26px 60px rgba(15,23,42,.12);
}

.explore-cover {
    position: relative;
    display: block;
    height: 132px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.30), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(255,255,255,.22), transparent 24%),
        linear-gradient(135deg, var(--seller-color, #0F766E), #14B8A6);
}

.explore-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .45;
}

.explore-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease;
}

.explore-card-pro:hover .explore-cover img {
    transform: scale(1.045);
}

.explore-cover-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15,23,42,.04) 0%, rgba(15,23,42,.18) 100%),
        linear-gradient(90deg, rgba(15,23,42,.16), transparent 55%);
}

.explore-pro-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #0F172A;
    color: white;
    box-shadow: 0 10px 22px rgba(15,23,42,.22);
    user-select: none;
}

.explore-pro-pill span {
    font-size: 10px;
    line-height: 1;
    letter-spacing: .06em;
    font-weight: 900;
}

.explore-card-content {
    position: relative;
    padding: 0 18px 18px;
}

.explore-profile-row {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: -34px;
}

.explore-avatar-pro {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 22px;
    border: 4px solid #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.30), transparent 25%),
        linear-gradient(135deg, var(--seller-color, #0F766E), #14B8A6);
    color: #fff;
    box-shadow:
        0 12px 28px rgba(15,23,42,.18),
        inset 0 0 0 1px rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.explore-avatar-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-avatar-pro span {
    font-size: 1.45rem;
    font-weight: 950;
    letter-spacing: -.04em;
}

.explore-profile-main {
    min-width: 0;
    padding-bottom: 7px;
}

.explore-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.explore-seller-name {
    min-width: 0;
    color: #0F172A;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.02em;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-seller-name:hover {
    color: var(--brand);
}

.explore-verified {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #0EA5E9;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(14,165,233,.24);
}

.explore-username {
    display: inline-block;
    margin-top: 2px;
    color: #64748B;
    font-size: .78rem;
    font-weight: 750;
    text-decoration: none;
}

.explore-username:hover {
    color: var(--brand);
}

.explore-bio {
    margin: 14px 0 0;
    min-height: 44px;
    color: #475569;
    font-size: .84rem;
    line-height: 1.65;
}

.explore-catalog-preview {
    display: grid;
    gap: 8px;
    margin-top: 15px;
}

.explore-catalog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 16px;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    text-decoration: none;
    transition:
        background .16s ease,
        border-color .16s ease,
        transform .16s ease;
}

.explore-catalog-item:hover {
    background: #FFFFFF;
    border-color: rgba(15,118,110,.22);
    transform: translateX(2px);
}

.explore-catalog-item div {
    min-width: 0;
}

.explore-catalog-item span {
    display: block;
    margin-bottom: 2px;
    color: var(--brand);
    font-size: .64rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.explore-catalog-item strong {
    display: block;
    min-width: 0;
    color: #1E293B;
    font-size: .8rem;
    line-height: 1.35;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-catalog-item svg {
    flex: 0 0 auto;
    color: #94A3B8;
}

.explore-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #EEF2F7;
}

.explore-meta {
    display: grid;
    gap: 1px;
}

.explore-meta strong {
    color: #0F172A;
    font-size: .95rem;
    line-height: 1;
    font-weight: 950;
}

.explore-meta span {
    color: #94A3B8;
    font-size: .72rem;
    font-weight: 750;
}

.explore-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0F172A;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15,23,42,.14);
    transition:
        background .16s ease,
        transform .16s ease,
        box-shadow .16s ease;
}

.explore-open-btn:hover {
    background: var(--brand);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15,118,110,.20);
}

@media (max-width: 640px) {
    .explore-cover {
        height: 124px;
    }

    .explore-card-content {
        padding: 0 15px 16px;
    }

    .explore-avatar-pro {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }

    .explore-profile-row {
        margin-top: -31px;
    }

    .explore-bio {
        font-size: .82rem;
    }
}

/* ──────────────────────────────────────────────
   EXPLORE COMPACT LIST
────────────────────────────────────────────── */

.explore-compact-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: end;
    margin-bottom: 1.4rem;
    padding: 1.4rem;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0% 0%, rgba(15,118,110,.10), transparent 34%),
        #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.06);
}

@media (min-width: 900px) {
    .explore-compact-hero {
        grid-template-columns: 1fr 420px;
        padding: 1.8rem;
    }
}

.explore-compact-hero h1 {
    margin: .75rem 0 0;
    color: #0F172A;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 950;
}

.explore-compact-hero p {
    margin: .7rem 0 0;
    max-width: 620px;
    color: #64748B;
    font-size: .94rem;
    line-height: 1.7;
}

.explore-compact-search {
    display: flex;
    gap: .55rem;
    padding: .5rem;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.explore-compact-search input {
    width: 100%;
    height: 42px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 .7rem;
    color: #0F172A;
    font-size: .88rem;
}

.explore-compact-search button {
    height: 42px;
    padding: 0 1rem;
    border: 0;
    border-radius: 14px;
    background: #0F766E;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    cursor: pointer;
}

.explore-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0;
}

.explore-list-head strong {
    color: #0F172A;
    font-size: .95rem;
    font-weight: 950;
}

.explore-list-head span {
    color: #64748B;
    font-size: .82rem;
}

.explore-compact-list {
    display: grid;
    gap: .85rem;
}

.explore-seller-list-card,
.explore-item-list-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow:
        0 1px 2px rgba(15,23,42,.03),
        0 14px 34px rgba(15,23,42,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.explore-seller-list-card:hover,
.explore-item-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15,118,110,.22);
    box-shadow:
        0 1px 2px rgba(15,23,42,.03),
        0 20px 44px rgba(15,23,42,.09);
}

.explore-list-avatar,
.explore-item-thumb {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 auto;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.28), transparent 25%),
        linear-gradient(135deg, #0F766E, #14B8A6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

.explore-list-avatar img,
.explore-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-list-avatar span {
    font-size: 1.35rem;
    font-weight: 950;
}

.explore-item-thumb span {
    font-size: 1.65rem;
}

.explore-list-main {
    min-width: 0;
}

.explore-list-title-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
}

.explore-list-title {
    color: #0F172A;
    font-size: .98rem;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -.015em;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-list-title:hover {
    color: #0F766E;
}

.explore-list-username {
    margin-top: .2rem;
    color: #64748B;
    font-size: .78rem;
    font-weight: 750;
}

.explore-list-main p {
    margin: .55rem 0 0;
    color: #475569;
    font-size: .82rem;
    line-height: 1.6;
}

.explore-list-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .65rem;
}

.explore-list-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 .55rem;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    color: #64748B;
    font-size: .7rem;
    font-weight: 850;
}

.explore-list-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0F172A;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
}

.explore-list-button:hover {
    background: #0F766E;
}

@media (max-width: 700px) {
    .explore-seller-list-card,
    .explore-item-list-card {
        grid-template-columns: auto 1fr;
        align-items: start;
        padding: .9rem;
    }

    .explore-list-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .explore-list-avatar,
    .explore-item-thumb {
        width: 58px;
        height: 58px;
        border-radius: 17px;
    }

    .explore-list-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* STATIC PAGES */
.static-page {
    padding: 4rem 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(15,118,110,.08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.static-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.static-header {
    text-align: center;
    margin-bottom: 2rem;
}

.static-header h1 {
    margin: .8rem 0 0;
    color: #0F172A;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 950;
}

.static-header p {
    margin: 1rem auto 0;
    max-width: 640px;
    color: #64748B;
    font-size: .96rem;
    line-height: 1.75;
}

.static-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow:
        0 1px 2px rgba(15,23,42,.04),
        0 18px 45px rgba(15,23,42,.07);
}

.static-card h2 {
    margin: 1.5rem 0 .55rem;
    color: #0F172A;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -.015em;
}

.static-card h2:first-child {
    margin-top: 0;
}

.static-card p {
    margin: .65rem 0 0;
    color: #475569;
    font-size: .9rem;
    line-height: 1.8;
}

.static-updated {
    display: inline-flex;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B !important;
    font-size: .76rem !important;
    font-weight: 800;
    margin-bottom: .75rem !important;
}

.static-note {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--brand-soft);
    border: 1px solid rgba(15,118,110,.14);
    color: #0F4F49;
    font-size: .86rem;
    line-height: 1.75;
}

.contact-list {
    display: grid;
    gap: .85rem;
}

.contact-item {
    padding: 1rem;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
}

.contact-item strong {
    display: block;
    color: #0F172A;
    font-size: .82rem;
    font-weight: 950;
    margin-bottom: .25rem;
}

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

.faq-list {
    display: grid;
    gap: .85rem;
}

.faq-static-item {
    padding: 1rem;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
}

.faq-static-item h2 {
    margin: 0;
    color: #0F172A;
    font-size: .95rem;
    font-weight: 950;
}

.faq-static-item p {
    margin: .45rem 0 0;
    color: #475569;
    font-size: .86rem;
    line-height: 1.75;
}

@media (min-width: 760px) {
    .static-card {
        padding: 2rem;
    }

    .contact-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    
    .jasera-logo-img {
        height: auto;
        width: 150px;
        display: block;
    }
    
    @media (max-width: 640px) {
        .jasera-logo-img {
            height: 32px;
        }
    }
}


.category-seo-content {
    margin: 1.25rem 0 1.5rem;
}

.category-seo-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1.25rem;
    padding: 1.25rem;
    color: #475569;
    font-size: .95rem;
    line-height: 1.8;
}

.category-seo-card p {
    margin-bottom: .85rem;
}

@media (max-width: 640px) {
    .category-seo-card {
        padding: 1rem;
        font-size: .9rem;
        line-height: 1.7;
    }
}

.category-seo-full{
    margin-top:40px;
    background:#fff;
    border-radius:20px;
    padding:32px;
    border:1px solid rgba(15,23,42,.08);
}

.category-seo-full h2{
    margin-bottom:20px;
    font-size:24px;
    font-weight:700;
    color:#0f172a;
}

.category-seo-content{
    color:#475569;
    line-height:1.9;
}

.category-seo-content p{
    margin-bottom:16px;
}

.category-faq{
    margin-top:28px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    padding:28px;
}

.category-faq-head span{
    display:inline-flex;
    font-size:11px;
    font-weight:800;
    color:#008b7a;
    background:rgba(0,139,122,.08);
    border-radius:999px;
    padding:6px 10px;
    margin-bottom:10px;
}

.category-faq-head h2{
    font-size:22px;
    font-weight:800;
    color:#0f172a;
    margin:0 0 18px;
}

.category-faq-list{
    display:grid;
    gap:10px;
}

.category-faq-item{
    border:1px solid rgba(15,23,42,.08);
    border-radius:14px;
    padding:0 16px;
    background:#f8fafc;
}

.category-faq-item summary{
    cursor:pointer;
    list-style:none;
    padding:16px 0;
    font-weight:700;
    color:#0f172a;
}

.category-faq-item summary::-webkit-details-marker{
    display:none;
}

.category-faq-item summary::after{
    content:'+';
    float:right;
    font-weight:900;
    color:#008b7a;
}

.category-faq-item[open] summary::after{
    content:'−';
}

.category-faq-item p{
    margin:0;
    padding:0 0 16px;
    color:#64748b;
    line-height:1.75;
}

@media(max-width:640px){
    .category-faq{
        padding:20px;
        border-radius:18px;
    }

    .category-faq-head h2{
        font-size:19px;
    }
}

.showcase-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
}

@media (max-width: 768px){
    #showcase .showcase-grid{
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        gap: 1rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    #showcase .showcase-card{
        min-width: 85% !important;
        max-width: 85% !important;
        flex: 0 0 85% !important;
        scroll-snap-align: start;
    }
}

.location-intro-card{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:linear-gradient(135deg,#ffffff,#f8fafc);
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:16px 18px;
    margin:18px 0 20px;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.location-intro-icon{
    width:38px;
    height:38px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(1,141,68,.08);
    flex:0 0 auto;
}

.location-intro-card strong{
    display:block;
    font-size:.98rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:4px;
}

.location-intro-card p{
    margin:0;
    font-size:.9rem;
    color:#64748b;
    line-height:1.65;
}

@media(max-width:640px){
    .location-intro-card{
        padding:14px;
        border-radius:16px;
    }

    .location-intro-icon{
        width:34px;
        height:34px;
    }
}

.explore-load-more-wrap{
    display:flex;
    justify-content:center;
    margin:32px 0 8px;
}

.explore-load-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 22px;
    border-radius:999px;
    background:#018D44;
    color:#fff;
    font-weight:800;
    font-size:.9rem;
    text-decoration:none;
    box-shadow:0 12px 28px rgba(1,141,68,.18);
}

.explore-load-more:hover{
    transform:translateY(-1px);
    box-shadow:0 16px 34px rgba(1,141,68,.24);
}

