/* ================================================================
   landing.css — IDM Premium Landing Page
   Semua CSS untuk plugin landing page IDM.
   Diload via page-head.php
   ================================================================ */


/* ══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS (CSS Custom Properties)
══════════════════════════════════════════════════════════════ */
:root {
    --ink:        #0a1628;
    --ink-80:     rgba(10, 22, 40, .8);
    --gold:       #c8982a;
    --gold-l:     #e8bf6a;
    --gold-d:     #9a7018;
    --gold-pale:  #fdf7ea;
    --surface:    #f6f8fc;
    --white:      #ffffff;
    --border:     #e4e9f0;
    --muted:      #7a8ba0;
    --ease:       cubic-bezier(.22, 1, .36, 1);
    --ease2:      cubic-bezier(.65, 0, .35, 1);
}


/* ══════════════════════════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #fff;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; }


/* ══════════════════════════════════════════════════════════════
   3. PROGRESS BAR & BACK-TO-TOP
══════════════════════════════════════════════════════════════ */
#read-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
    z-index: 1001;
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
}

#btt {
    position: fixed;
    bottom: 96px; right: 20px;
    z-index: 990;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    border: 1px solid var(--gold-d);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(10, 22, 40, .25);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease);
    transform: translateY(16px);
}
#btt.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#btt:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--gold);
    color: var(--ink);
}


/* ══════════════════════════════════════════════════════════════
   4. NAVBAR
══════════════════════════════════════════════════════════════ */
#main-nav {
    position: fixed; width: 100%; top: 0;
    z-index: 997;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(228, 233, 240, .7);
    transition: background .3s, box-shadow .3s;
}
#main-nav.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 32px rgba(10, 22, 40, .08);
}

.nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
}

.nav-brand-logo {
    height: 38px; padding: 0 14px;
    border-radius: 10px;
    background: var(--ink);
    display: flex; align-items: center;
    border: 1px solid rgba(200, 152, 42, .35);
}
.nav-brand-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: .85rem;
    letter-spacing: .04em;
    color: var(--gold);
}

.nav-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600; font-size: 1.15rem;
    color: var(--ink); letter-spacing: -.02em;
}

.nav-links {
    display: flex; align-items: center; gap: 1.75rem;
}

.nav-link {
    font-size: .78rem; font-weight: 600;
    letter-spacing: .09em; text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
    position: relative; padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    height: 2px; width: 0;
    background: var(--gold);
    border-radius: 2px;
    transition: width .25s var(--ease);
}
.nav-link:hover            { color: var(--gold-d); }
.nav-link:hover::after     { width: 100%; }

.nav-actions {
    display: flex; align-items: center; gap: 1rem;
}
.nav-auth-link {
    font-size: .8rem; font-weight: 600;
    color: var(--muted); transition: color .2s;
}
.nav-auth-link:hover { color: var(--gold); }

/* Desktop-only nav helpers */
@media (max-width: 1024px) {
    .nav-links,
    .nav-actions { display: none !important; }
}
@media (min-width: 1025px) {
    #mob-open { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   5. MOBILE OVERLAY + SIDEBAR
══════════════════════════════════════════════════════════════ */
#mob-overlay {
    position: fixed; inset: 0;
    z-index: 998;
    background: rgba(10, 22, 40, .6);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
}
#mob-overlay.show {
    opacity: 1; pointer-events: auto;
}

#mob-sidebar {
    position: fixed; inset-y: 0; right: 0;
    width: 288px;
    background: var(--ink);
    z-index: 999;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    display: flex; flex-direction: column;
    box-shadow: -8px 0 48px rgba(10, 22, 40, .4);
}
#mob-sidebar.open { transform: translateX(0); }

.mob-nav-link {
    display: flex; align-items: center; gap: .75rem;
    padding: .9rem 0;
    font-size: .95rem; font-weight: 500;
    color: #a0b0c0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color .2s;
}
.mob-nav-link:hover,
.mob-nav-link.active { color: var(--gold-l); }


/* ══════════════════════════════════════════════════════════════
   6. SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.sr {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-scale { transform: scale(.93) translateY(20px); }
.sr.in       { opacity: 1 !important; transform: none !important; }


/* ══════════════════════════════════════════════════════════════
   7. SECTION UTILITIES
══════════════════════════════════════════════════════════════ */
.section-wrap {
    max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}

.sec-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-d);
}
.sec-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 2px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700; line-height: 1.12;
    letter-spacing: -.02em; color: var(--ink);
}
.sec-title em      { font-style: italic; color: var(--gold); }
.sec-title-light   { color: #fff; }

.sec-sub {
    font-size: 1rem; font-weight: 300;
    color: var(--muted); line-height: 1.7;
    max-width: 520px;
}


/* ══════════════════════════════════════════════════════════════
   8. GOLD SHIMMER TEXT
══════════════════════════════════════════════════════════════ */
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
.shimmer {
    background: linear-gradient(
        110deg,
        var(--gold-d) 0%,
        var(--gold)   30%,
        var(--gold-l) 50%,
        var(--gold)   70%,
        var(--gold-d) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}


/* ══════════════════════════════════════════════════════════════
   9. BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .875rem 1.875rem;
    border-radius: 999px;
    font-size: .875rem; font-weight: 600; letter-spacing: .03em;
    cursor: pointer; border: none;
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
    background: var(--ink); color: #fff;
    box-shadow: 0 6px 24px rgba(10, 22, 40, .22);
}
.btn-dark:hover { box-shadow: 0 12px 32px rgba(10, 22, 40, .32); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: var(--ink); font-weight: 700;
    box-shadow: 0 6px 24px rgba(200, 152, 42, .32);
}
.btn-gold:hover { box-shadow: 0 12px 36px rgba(200, 152, 42, .48); }

.btn-ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-d); }

.btn-ghost-light {
    background: rgba(255, 255, 255, .08); color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .18);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .35);
}

.btn-sm { padding: .625rem 1.25rem; font-size: .8rem; }


/* ══════════════════════════════════════════════════════════════
   10. HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 7rem 0 5rem;
    position: relative; overflow: hidden;
    background: var(--white);
}

/* Background decorative grid */
.hero-bg-grid {
    position: absolute; inset: 0;
    pointer-events: none !important;
    background-image:
        linear-gradient(rgba(200, 152, 42, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 152, 42, .06) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* Background radial orbs */
.hero-bg-radial { position: absolute; pointer-events: none !important; border-radius: 50%; }

@keyframes orb-float {
    0%,  100% { transform: translate(0, 0)      scale(1);    }
    33%        { transform: translate(20px, -30px) scale(1.04); }
    66%        { transform: translate(-15px, 20px) scale(.97); }
}
.hero-orb-1 {
    width: 600px; height: 600px; top: -100px; right: -120px;
    background: radial-gradient(circle, rgba(200, 152, 42, .12) 0%, transparent 65%);
    animation: orb-float 12s var(--ease2) infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px; bottom: 0; left: -80px;
    background: radial-gradient(circle, rgba(10, 22, 40, .06) 0%, transparent 65%);
    animation: orb-float 9s var(--ease2) infinite reverse;
}

/* Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem 1rem .4rem .4rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(10, 22, 40, .06);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
}
.hero-badge-dot {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; color: var(--ink); font-weight: 700;
}

/* Heading */
.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900; line-height: 1.06;
    letter-spacing: -.035em; color: var(--ink);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    font-weight: 300; color: var(--muted); line-height: 1.75;
    max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-sub strong { font-weight: 600; color: var(--ink); }

/* Stats */
.hero-stats {
    display: flex; justify-content: center;
    gap: 3rem; margin-bottom: 2.75rem;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; font-weight: 800;
    color: var(--ink); line-height: 1;
}
.hero-stat-label {
    font-size: .68rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin-top: .3rem;
}
.hero-stat-sep {
    width: 1px; background: var(--border); align-self: stretch;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Marquee */
.marquee-wrap {
    margin-top: 4rem; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-track {
    display: flex; gap: 1.25rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    width: 52px; height: 52px;
    border-radius: 14px; overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 14px rgba(10, 22, 40, .08);
    transition: transform .25s var(--ease);
}
.marquee-item:hover  { transform: translateY(-4px) scale(1.08); }
.marquee-item img    { width: 100%; height: 100%; object-fit: cover; }


/* ══════════════════════════════════════════════════════════════
   11. SERVICES SECTION
══════════════════════════════════════════════════════════════ */
.services-section {
    padding: 7rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 3.5rem;
}
@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; }
}

.service-card {
    border-radius: 24px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex; flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(10, 22, 40, .12);
    border-color: rgba(200, 152, 42, .3);
}

.service-card-bar {
    height: 4px; width: 100%;
    background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
}
.service-card:hover .service-card-bar { transform: scaleX(1); }

.service-card-header {
    padding: 2.25rem 2.25rem 0;
    display: flex; align-items: flex-start; gap: 1.25rem;
}

.service-icon-wrap {
    width: 64px; height: 64px; border-radius: 16px;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(10, 22, 40, .1);
}
.service-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body {
    padding: 1.5rem 2.25rem 2.25rem; flex-grow: 1;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--ink); margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.service-card p {
    font-size: .9rem; font-weight: 300;
    color: var(--muted); line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-pill {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .9rem; border-radius: 999px;
    background: var(--gold-pale);
    border: 1px solid rgba(200, 152, 42, .25);
    font-size: .72rem; font-weight: 700;
    color: var(--gold-d);
    letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 700; color: var(--gold-d);
    transition: gap .2s;
    background: none; border: none; cursor: pointer; padding: 0;
}
.service-cta:hover { gap: .7rem; }


/* ══════════════════════════════════════════════════════════════
   12. APPS SECTION
══════════════════════════════════════════════════════════════ */
.apps-section {
    padding: 7rem 0;
    background: var(--ink);
    position: relative; overflow: hidden;
}

.apps-bg-dots {
    position: absolute; inset: 0;
    pointer-events: none !important;
    opacity: .035;
    background-image: radial-gradient(rgba(200, 152, 42, 1) 1px, transparent 1px);
    background-size: 28px 28px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem; margin-top: 3.5rem;
}

.app-card {
    border-radius: 20px; overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 1.375rem;
    display: flex; flex-direction: column;
    transition: background .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s;
    position: relative;
}
.app-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 152, 42, .08), transparent);
    opacity: 0; transition: opacity .3s;
    z-index: -1; pointer-events: none;
}
.app-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(200, 152, 42, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
}
.app-card:hover::before { opacity: 1; }

.app-card-img {
    width: 60px; height: 60px;
    border-radius: 14px; object-fit: cover;
    flex-shrink: 0; margin-bottom: 1rem;
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: #fff;
    transition: transform .4s var(--ease);
}
.app-card:hover .app-card-img { transform: scale(1.07) rotate(-1deg); }

.app-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: #fff;
    margin-bottom: .5rem; line-height: 1.35;
}
.app-card p {
    font-size: .78rem; color: rgba(255, 255, 255, .5);
    line-height: 1.65; flex-grow: 1; margin-bottom: 1.25rem;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}

.app-card-actions { display: flex; flex-direction: column; gap: .625rem; margin-top: auto; }

.app-btn-play {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .55rem .875rem; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: var(--ink); font-size: .75rem; font-weight: 700;
    transition: box-shadow .2s, transform .2s var(--ease);
}
.app-btn-play:hover {
    box-shadow: 0 6px 20px rgba(200, 152, 42, .4);
    transform: translateY(-1px);
}

.app-btn-web {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .55rem .875rem; border-radius: 10px;
    background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem; font-weight: 500;
    transition: background .2s, color .2s, border-color .2s;
}
.app-btn-web:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
}


/* ══════════════════════════════════════════════════════════════
   13. ARTICLES SECTION
══════════════════════════════════════════════════════════════ */
.articles-section {
    padding: 7rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem; margin-top: 3.5rem;
}
@media (max-width: 1024px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
    border-radius: 20px; overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(10, 22, 40, .1);
    border-color: rgba(200, 152, 42, .25);
}

.article-thumb {
    overflow: hidden; height: 200px; position: relative;
    background: linear-gradient(135deg, #e8ecf4, #d4dbe8);
}
.article-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s var(--ease);
}
.article-card:hover .article-thumb img { transform: scale(1.06); }
.article-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #b4bfcc; font-size: 2rem;
}

.article-body {
    padding: 1.625rem; flex-grow: 1;
    display: flex; flex-direction: column;
}
.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); line-height: 1.45;
    margin-bottom: .75rem;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.article-body p {
    font-size: .82rem; color: var(--muted); line-height: 1.7;
    flex-grow: 1; margin-bottom: 1.25rem;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}

.article-read-more {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .75rem; font-weight: 700; color: var(--gold-d);
    letter-spacing: .06em; text-transform: uppercase;
    transition: gap .2s;
}
.article-card:hover .article-read-more { gap: .6rem; }


/* ══════════════════════════════════════════════════════════════
   14. STORE SECTION
══════════════════════════════════════════════════════════════ */
.store-section {
    padding: 7rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.store-grid {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    justify-content: center; margin-top: 3.5rem;
}

.store-card {
    width: 200px; border-radius: 24px; overflow: hidden;
    border: 1px solid var(--border); background: var(--white);
    display: flex; flex-direction: column; align-items: center;
    padding: 2rem 1.5rem; gap: .875rem;
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, .12);
    border-color: rgba(200, 152, 42, .3);
}

.store-icon {
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.store-card-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1rem; color: var(--ink);
}
.store-card-handle { font-size: .75rem; color: var(--muted); text-align: center; }


/* ══════════════════════════════════════════════════════════════
   15. WEBMASTER TOOLS SECTION
══════════════════════════════════════════════════════════════ */
.wmt-section {
    padding: 7rem 0;
    background: var(--ink);
    position: relative; overflow: hidden;
}

.wmt-bg {
    position: absolute; inset: 0;
    pointer-events: none !important;
    opacity: .04;
    background-image:
        linear-gradient(rgba(200, 152, 42, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 152, 42, 1) 1px, transparent 1px);
    background-size: 48px 48px;
}

.wmt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 900px) { .wmt-grid { grid-template-columns: 1fr; gap: 3rem; } }

.wmt-features { display: flex; flex-direction: column; gap: .875rem; margin: 2rem 0 2.5rem; }
.wmt-feature {
    display: flex; align-items: center; gap: .875rem;
    padding: .875rem 1.25rem; border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    font-size: .875rem; color: rgba(255, 255, 255, .8);
    transition: background .2s, border-color .2s;
}
.wmt-feature:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(200, 152, 42, .25);
}
.wmt-feature-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(200, 152, 42, .3), rgba(200, 152, 42, .15));
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: var(--gold-l); flex-shrink: 0;
}

/* Terminal window */
.terminal-window {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
}
.terminal-titlebar {
    background: #1a2744; height: 44px;
    display: flex; align-items: center;
    padding: 0 1.25rem; gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.terminal-dots { display: flex; gap: 7px; }
.terminal-dot  { width: 11px; height: 11px; border-radius: 50%; }
.terminal-url {
    flex: 1; text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem; color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
}
.terminal-body {
    background: #0d1626;
    padding: 1.5rem 1.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem; line-height: 1.9;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.caret {
    display: inline-block;
    width: 8px; height: 1.1em;
    background: #fff;
    animation: blink 1s step-end infinite;
    vertical-align: middle; margin-left: 2px;
}


/* ══════════════════════════════════════════════════════════════
   16. SOCIAL MEDIA SECTION
══════════════════════════════════════════════════════════════ */
.social-section {
    padding: 7rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem; margin-top: 3.5rem;
    max-width: 800px; margin-left: auto; margin-right: auto;
}
@media (max-width: 640px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }

.social-card {
    display: flex; flex-direction: column; align-items: center; gap: .625rem;
    padding: 1.25rem .75rem; border-radius: 16px;
    background: var(--white); border: 1px solid var(--border);
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
    text-decoration: none; cursor: pointer;
}
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, .1);
}

.social-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; background: rgba(10, 22, 40, .04);
    transition: transform .25s var(--ease);
}
.social-card:hover .social-icon-wrap { transform: scale(1.15); }
.social-card-label { font-size: .7rem; font-weight: 600; color: var(--muted); text-align: center; }

.email-cta-box {
    margin: 3.5rem auto 0; max-width: 520px;
    display: flex; align-items: center; gap: 1.25rem;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 1.5rem 2rem;
    box-shadow: 0 4px 24px rgba(10, 22, 40, .06);
    flex-wrap: wrap;
}
.email-cta-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--ink); flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   17. FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-top { padding: 4.5rem 0 3.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col-title {
    font-size: .68rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.125rem;
}

.footer-link {
    display: block; font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    padding: .3rem 0; transition: color .2s;
}
.footer-link:hover { color: rgba(255, 255, 255, .85); }

.footer-brand-desc {
    font-size: .83rem; color: rgba(255, 255, 255, .35);
    line-height: 1.7; max-width: 240px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 1.375rem 0;
}


/* ══════════════════════════════════════════════════════════════
   18. LANGUAGE SWITCHER
══════════════════════════════════════════════════════════════ */
.footer-lang { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-lang span {
    font-size: 11px; color: rgba(255, 255, 255, .4);
    text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.footer-lang button {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    padding: 5px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 600;
    cursor: pointer; transition: all .2s;
}
.footer-lang button:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.footer-lang button.active {
    background: var(--gold);
    border-color: var(--gold-l);
    color: var(--ink);
}

/* Sembunyikan elemen UI bawaan Google Translate */
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-menu-frame.skiptranslate,
.skiptranslate,
#goog-gt-tt { display: none !important; }
body { top: 0 !important; }
#google_translate_element { display: none; }


/* ══════════════════════════════════════════════════════════════
   19. CHAT WIDGET
══════════════════════════════════════════════════════════════ */
#cw-wrap {
    position: fixed; bottom: 20px; right: 20px;
    display: flex; flex-direction: column; align-items: flex-end;
    gap: 10px; z-index: 90;
}
#cw-wrap * { box-sizing: border-box; }

#cw-panel {
    width: 300px; background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(.85) translateY(10px);
    opacity: 0; pointer-events: none;
    transition: transform .25s cubic-bezier(.34, 1.4, .64, 1), opacity .2s ease;
    max-height: 420px;
}
#cw-panel.cw-open {
    transform: scale(1) translateY(0);
    opacity: 1; pointer-events: all;
}

.cw-head {
    padding: 12px 14px;
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--ink) 0%, #1a2744 100%);
}
.cw-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--ink); flex-shrink: 0;
}
.cw-title { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.2; }
.cw-sub   { color: rgba(255, 255, 255, .5); font-size: 10px; margin-top: 1px; }
.cw-online {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; margin-left: auto; flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, .3);
}
.cw-close {
    margin-left: 6px; background: none; border: none;
    cursor: pointer; color: rgba(255, 255, 255, .5);
    font-size: 16px; line-height: 1; padding: 0;
}
.cw-close:hover { color: #fff; }

.cw-tabs { display: flex; border-bottom: 1px solid #f0f0f0; }
.cw-tab {
    flex: 1; padding: 9px 0; border: none; background: none;
    cursor: pointer; font-size: 11px; font-weight: 500; color: #999;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    transition: all .15s;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.cw-tab:hover { color: #555; background: #fafafa; }
.cw-tab svg   { width: 18px; height: 18px; }

.cw-tab.cw-t-wa.cw-active { color: #25D366; border-bottom-color: #25D366; }
.cw-tab.cw-t-tg.cw-active { color: #2AABEE; border-bottom-color: #2AABEE; }
.cw-tab.cw-t-ms.cw-active { color: #0866FF; border-bottom-color: #0866FF; }

.cw-body   { padding: 14px; }
.cw-bubble {
    background: #f5f5f5; border-radius: 12px 12px 12px 3px;
    padding: 9px 11px; font-size: 12px; color: #333;
    line-height: 1.55; margin-bottom: 6px;
}
.cw-time   { font-size: 10px; color: #bbb; margin-bottom: 12px; }
.cw-qlist  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.cw-q {
    padding: 7px 10px; border-radius: 8px;
    border: 1px solid #e8e8e8; font-size: 11px; color: #555;
    background: #fff; cursor: pointer; text-align: left;
    font-family: inherit; transition: all .15s;
}
.cw-q:hover { border-color: #ccc; background: #f9f9f9; color: #222; }

.cw-btn {
    width: 100%; padding: 10px; border-radius: 10px; border: none;
    cursor: pointer; font-size: 12px; font-weight: 600;
    font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    color: #fff; transition: filter .15s;
}
.cw-btn:hover { filter: brightness(.9); }
.cw-btn-wa { background: #25D366; }
.cw-btn-tg { background: #2AABEE; }
.cw-btn-ms { background: #0866FF; }

.cw-foot {
    text-align: center; font-size: 10px; color: #ccc;
    padding: 8px 14px 12px; border-top: 1px solid #f5f5f5;
}
.cw-hidden { display: none !important; }

#cw-fab {
    width: 52px; height: 52px; border-radius: 50%; border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    box-shadow: 0 4px 16px rgba(200, 152, 42, .45);
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
}
#cw-fab:hover { transform: scale(1.1); }
#cw-fab svg   { width: 24px; height: 24px; transition: transform .2s; }

.cw-badge {
    position: absolute; top: -3px; right: -3px;
    width: 17px; height: 17px; border-radius: 50%;
    background: #e24b4a; color: #fff;
    font-size: 9px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #f0f2f5;
}