/* ============================================================
   SahabatAPI landing premium — Mekari-style, light luxury
   Emerald + navy + gold. Only loaded on frontend layout.
   ============================================================ */
.lp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 340px at 85% -60px, rgba(16, 185, 129, 0.14), transparent 60%),
        radial-gradient(640px 320px at -100px 30%, rgba(232, 196, 104, 0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
    padding: 70px 0 60px;
}
.lp-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 991px) {
    .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #047857;
    background: #ddf3e7;
    border: 1px solid #a7e3c3;
    padding: 8px 16px;
    border-radius: 999px;
}
.lp-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}
.lp-title {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: #0a1a2f;
    margin: 18px 0 14px;
}
.lp-title span {
    background: linear-gradient(92deg, #059669, #d9a93b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-sub {
    font-size: 17px;
    line-height: 1.65;
    color: #54645b;
    max-width: 560px;
}
.lp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.lp-btn--primary {
    background: linear-gradient(120deg, #10b981, #047857);
    color: #fff;
    box-shadow: 0 16px 32px -14px rgba(16, 185, 129, 0.7);
}
.lp-btn--primary:hover { color: #fff; }
.lp-btn--ghost {
    background: #fff;
    color: #0a1a2f;
    border: 1.5px solid #e2efe7;
}
.lp-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.lp-avatars { display: flex; }
.lp-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.lp-avatars img + img { margin-left: -12px; }
.lp-trust p { margin: 0; font-size: 13.5px; color: #54645b; }
.lp-trust p strong { color: #0a1a2f; }
.lp-stars { color: #d9a93b; letter-spacing: 2px; font-size: 13px; }
.lp-visual {
    position: relative;
}
.lp-visual img.lp-shot {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #e2efe7;
    box-shadow: 0 40px 80px -40px rgba(7, 94, 84, 0.45);
}
.lp-float {
    position: absolute;
    background: #fff;
    border: 1px solid #e2efe7;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 18px 36px -18px rgba(7, 94, 84, 0.4);
    font-size: 12.5px;
    font-weight: 700;
    color: #0a1a2f;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: lpFloat 5s ease-in-out infinite;
}
.lp-float i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #ddf3e7;
    color: #047857;
    font-size: 15px;
}
.lp-float--a { top: 24px; left: -18px; }
.lp-float--b { bottom: 28px; right: -12px; animation-delay: 2.5s; }
@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@media (max-width: 575px) {
    .lp-float--a { left: 6px; }
    .lp-float--b { right: 6px; }
}
.lp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}
@media (max-width: 575px) {
    .lp-stats { grid-template-columns: 1fr; }
}
.lp-stat {
    background: #fff;
    border: 1px solid #e2efe7;
    border-radius: 18px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(7, 94, 84, 0.35);
}
.lp-stat::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #e8c468);
}
.lp-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0a1a2f;
}
.lp-stat span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
}
/* Suite band */
.lp-suite {
    padding: 30px 0 10px;
}
.lp-suite__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .lp-suite__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .lp-suite__grid { grid-template-columns: 1fr; }
}
.lp-suite__card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2efe7;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-suite__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(7, 94, 84, 0.35);
}
.lp-suite__card > i {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--sc1, #10b981), var(--sc2, #047857));
    box-shadow: 0 10px 20px -10px var(--sc1, #10b981);
}
.lp-suite__card h6 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: #0a1a2f;
}
.lp-suite__card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}
.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
}
.lp-section-head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #0a1a2f;
}
.lp-section-head p { color: #64748b; }

/* ================= HIGH-END LAYER (Mekari-class) ================= */
/* Sticky glass header */
.header__area {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e6efe9;
}
.header__area .btn--base {
    background: linear-gradient(120deg, #10b981, #047857);
    border: 0;
    box-shadow: 0 12px 26px -12px rgba(16, 185, 129, 0.8);
    font-weight: 800;
}
.header__menu ul li a {
    font-weight: 600;
    color: #334155;
}
/* Bold global section typography (public pages only) */
main h2 {
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #0a1a2f;
}
/* Primary buttons with presence */
.btn--base {
    background: linear-gradient(120deg, #10b981, #047857);
    border: 0;
    font-weight: 800;
    box-shadow: 0 14px 28px -14px rgba(16, 185, 129, 0.75);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--base:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -14px rgba(16, 185, 129, 0.85);
    color: #fff;
}
/* Dark metrics band */
.lp-band {
    background:
        radial-gradient(700px 240px at 15% 0%, rgba(16, 185, 129, 0.16), transparent 60%),
        linear-gradient(120deg, #071224 0%, #0d2240 60%, #07332a 100%);
    border-radius: 24px;
    padding: 40px 36px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    box-shadow: 0 30px 60px -30px rgba(2, 8, 20, 0.7);
}
@media (max-width: 767px) {
    .lp-band { grid-template-columns: repeat(2, 1fr); padding: 30px 22px; }
}
.lp-band__item { text-align: center; position: relative; }
.lp-band__item + .lp-band__item::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(232, 196, 104, 0.5), transparent);
}
.lp-band__item strong {
    display: block;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}
.lp-band__item strong em {
    font-style: normal;
    background: linear-gradient(92deg, #34d399, #e8c468);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-band__item span {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8fa3b8;
}
/* Stronger hero */
.lp-title {
    font-size: clamp(38px, 5.4vw, 64px);
    text-wrap: balance;
}
.lp-btn--primary {
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 20px 40px -16px rgba(16, 185, 129, 0.8);
}
.lp-badge {
    border-color: #e8c468;
    box-shadow: 0 6px 18px -8px rgba(217, 169, 59, 0.6);
}
/* Suite cards with navy spine */
.lp-suite__card {
    border-left: 4px solid #0d2240;
}
.lp-suite__card h6 {
    font-size: 16px;
    letter-spacing: -0.2px;
}
