/* ============================================================
   LP17 MEDIA - Exact match to lp17media.my.id
   ============================================================ */
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #8b5cf6;
    --brand: #7c3aed;
    --brand-dark: #6d28d9;
    --brand-light: #8b5cf6;
    --orange: #f59e0b;
    --bg-body: #f8f9fa;
    --bg-main: #fff;
    --cl-main: #1a1a2e;
    --txt-800: #1f2937;
    --txt-600: #6b7280;
    --gray: #9ca3af;
    --border: #e5e7eb;
    --neutral-25: #f3f4f6;
    --radius: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --lp-grad: linear-gradient(135deg, #7c3aed, #4f46e5);
    --lp-dark: #1a1a2e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-body); color: var(--cl-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6; overflow-x: hidden; padding-top: 56px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1280px, 94%); margin: 0 auto; }

.grad-text { color: var(--primary); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 14px;
    border: 1px solid transparent; cursor: pointer; white-space: nowrap; font-family: inherit;
    transition: all 0.3s; user-select: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost { background: #fff; color: var(--cl-main); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 12px 28px; font-size: 15px; }

/* ===== Navbar (lp17media.my.id style) ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.navbar-custom { padding: 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; border-radius: 6px; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 34px; }
.brand-name { font-weight: 700; font-size: 22px; color: var(--primary); letter-spacing: .3px; transition: font-size .3s ease; }
.site-header.scrolled .brand-name { font-size: 18px; }
.navbar-brand:hover .brand-name { color: var(--primary-dark); }

/* Navbar Menu */
.navbar-menu { display: flex; align-items: center; gap: 24px; }
.navbar-nav {
    display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    flex-wrap: nowrap; max-width: 100%;
}
.navbar-nav::-webkit-scrollbar { display: none; }
.navbar-nav a {
    display: block; padding: 8px 14px; font-size: 15px; font-weight: 500;
    color: var(--txt-800); border-radius: 8px; transition: all .25s; position: relative;
    white-space: nowrap; flex-shrink: 0;
}
.navbar-nav a::after { content: ''; position: absolute; left: 14px; bottom: 4px; width: 0; height: 2px; background: var(--primary); transition: width .3s ease; border-radius: 1px; }
.navbar-nav a:hover { color: var(--primary); background: rgba(124,58,237,0.06); }
.navbar-nav a:hover::after { width: calc(100% - 28px); }
.navbar-nav a.active { color: var(--primary); font-weight: 600; }
.navbar-nav a.active::after { width: calc(100% - 28px); }

/* Sidebar Translate */
.sidebar-translate-wrap { position: relative; }
.goog-te-banner-frame { display: none !important; }
body .goog-te-banner-frame { display: none !important; }
#goog-gt-tt { display: none !important; }
.goog-te-spinner-pos { display: none !important; }

@media (max-width: 1050px) {
    .navbar-menu { gap: 16px; }
    .navbar-nav a { padding: 8px 12px; font-size: 14px; }
    .navbar-nav a::after { left: 12px; }
    .navbar-nav a:hover::after, .navbar-nav a.active::after { width: calc(100% - 24px); }
    .search-input { width: 160px; }
    .search-input:focus { width: 200px; }
}

/* Search */
.navbar-search { display: flex; align-items: center; gap: 0; }
.search-input {
    width: 180px; padding: 8px 14px; font-size: 13px; font-family: inherit;
    border: 1px solid var(--border); border-right: none; border-radius: 8px 0 0 8px;
    background: var(--neutral-25); color: var(--cl-main); transition: all .25s;
}
.search-input:focus { outline: none; border-color: var(--primary); background: #fff; width: 220px; }
.search-input::placeholder { color: var(--gray); }
.search-btn {
    padding: 8px 14px; background: var(--primary); color: #fff; border: none;
    border-radius: 0 8px 8px 0; cursor: pointer; font-size: 13px; transition: background .25s;
}
.search-btn:hover { background: var(--primary-dark); }

/* Nav Toggle (mobile) */
.nav-toggle {
    display: none; background: transparent; border: none; border-radius: 8px;
    width: 44px; height: 40px; cursor: pointer; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px; flex-shrink: 0;
    z-index: 1002; transition: background .25s;
}
.nav-toggle:hover { background: rgba(124,58,237,0.06); }
.nav-toggle span {
    width: 24px; height: 2px; background: var(--cl-main); display: block;
    transition: all .3s ease; border-radius: 2px; position: relative;
}
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav backdrop (mobile) */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity .3s ease;
}

/* Nav close button (mobile menu) */
.nav-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1002;
}
.nav-close span {
    width: 18px;
    height: 2px;
    background: var(--cl-main);
    transition: all .2s ease;
}
.nav-close span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-close span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Page banner ===== */
.page-banner { padding: 26px 0 8px; }
.page-banner h1 { font-weight: 700; font-size: 28px; line-height: 1.25; color: var(--cl-main); display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.page-banner h1::before { content: ''; width: 4px; height: 24px; border-radius: 2px; background: var(--primary); flex-shrink: 0; }
.page-banner p { color: var(--txt-600); font-size: 14px; max-width: 720px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; color: var(--gray); font-size: 12.5px; }
.page-breadcrumb a { color: var(--gray); transition: .2s; }
.page-breadcrumb a:hover { color: var(--primary); }
.page-breadcrumb .sep { color: #ccc; }

/* ===== Layout ===== */
.page-main { padding: 26px 0 70px; }
.article-page { padding-top: 26px; }
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; align-items: start; }
.layout-main { min-width: 0; }
.layout-side { position: sticky; top: 132px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } .layout-side { position: static; } }

/* ===== Section head ===== */
.section { padding: 34px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-head h2 { font-size: 18px; font-weight: 700; color: var(--cl-main); display: flex; align-items: center; gap: 8px; margin: 0; }
.section-head h2 i { color: var(--primary); font-size: 16px; }
.section-head .see-all { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.section-head .see-all:hover { color: var(--primary-dark); }
.sec-head { margin-bottom: 22px; }
.sec-head.left { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.sec-kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.sec-title { font-weight: 700; font-size: 24px; line-height: 1.3; color: var(--cl-main); display: flex; align-items: center; gap: 10px; }
.sec-title::before { content: ''; width: 4px; height: 22px; border-radius: 2px; background: var(--primary); flex-shrink: 0; }
.sec-desc { color: var(--txt-600); font-size: 14px; margin-top: 8px; }
.sec-more { color: var(--primary); font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.sec-more:hover { color: var(--primary-dark); }

/* ===== Home: headline + terkini ===== */
.home-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 26px; align-items: stretch; }
.headline { position: relative; border-radius: 16px; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; background: #000; border: 1px solid var(--border); }
.headline > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.headline:hover > img { transform: scale(1.02); }
.headline-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.85) 100%); }
.headline-body { position: relative; z-index: 2; padding: 28px; color: #fff; }
.headline-cat { display: inline-block; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.headline-body h2 { font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; line-height: 1.3; }
.headline-body h2 a:hover { color: #c4b5fd; }
.headline-body .hm { color: #ccc; font-size: 13px; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

.terkini-panel { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 22px; display: flex; flex-direction: column; }
.terkini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.terkini-head h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.terkini-head h3::before { content: ''; width: 4px; height: 16px; background: var(--primary); border-radius: 2px; }
.terkini-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.terkini-list { display: flex; flex-direction: column; }
.terkini-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.terkini-item:last-child { border-bottom: none; }
.terkini-item .t { color: var(--primary); font-size: 12px; font-weight: 700; white-space: nowrap; padding-top: 1px; }
.terkini-item h4 { font-size: 14px; font-weight: 500; line-height: 1.4; color: var(--txt-800); }
.terkini-item h4:hover { color: var(--primary); }
.terkini-more { margin-top: auto; padding-top: 10px; text-align: right; }
.terkini-more a { color: var(--primary); font-size: 13px; font-weight: 600; }
.terkini-more a:hover { color: var(--primary-dark); }

/* ===== Trending ===== */
.trend { background: #fff; border-bottom: 1px solid var(--border); }
.trend-inner { display: flex; align-items: center; gap: 16px; height: 46px; overflow: hidden; }
.trend-label { font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--primary); flex-shrink: 0; }
.trend-track { display: flex; gap: 30px; width: max-content; animation: trendScroll 30s linear infinite; }
.trend:hover .trend-track { animation-play-state: paused; }
.trend-title { color: var(--txt-800); font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.trend-title::before { content: '#'; color: var(--gray); margin-right: 4px; }
.trend-title:hover { color: var(--primary); }
@keyframes trendScroll { to { transform: translateX(-50%); } }

/* ===== News list ===== */
.news-list { display: flex; flex-direction: column; gap: 18px; }
.news-item {
    display: grid; grid-template-columns: 190px 1fr; gap: 18px;
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    box-shadow: var(--shadow); padding: 18px; transition: .25s;
}
.news-item:hover { border-color: #c4b5fd; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.news-thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--neutral-25); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.news-item:hover .news-thumb img { transform: scale(1.04); }
.news-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.news-cat { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--primary); }
.news-body h3 { font-size: 19px; font-weight: 700; line-height: 1.35; color: var(--cl-main); }
.news-body h3 a:hover { color: var(--primary); }
.news-body p { color: var(--txt-600); font-size: 14px; }
.news-meta { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 12.5px; margin-top: auto; }
.news-meta span { display: inline-flex; align-items: center; gap: 5px; }
.news-meta svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) { .news-item { grid-template-columns: 1fr; } .news-thumb { aspect-ratio: 16/9; } }

/* ===== Kmp list ===== */
.kmp-list { display: flex; flex-direction: column; gap: 18px; }
.kmp-item {
    display: grid; grid-template-columns: 190px 1fr; gap: 18px;
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    box-shadow: var(--shadow); padding: 18px; transition: .25s;
}
.kmp-item:hover { border-color: #c4b5fd; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.kmp-item.headline-sync { border: 2px solid var(--primary); background: linear-gradient(135deg, rgba(124,58,237,0.03), rgba(79,70,229,0.03)); }
.kmp-item.headline-sync .kmp-cat { background: var(--primary); color: #fff; padding: 3px 12px; border-radius: 999px; font-size: 11px; }
.kmp-thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--neutral-25); display: block; }
.kmp-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.kmp-item:hover .kmp-thumb img { transform: scale(1.04); }
.kmp-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.kmp-cat { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--primary); }
.kmp-body h3 { font-size: 19px; font-weight: 700; line-height: 1.35; color: var(--cl-main); }
.kmp-body h3 a:hover { color: var(--primary); }
.kmp-body p { color: var(--txt-600); font-size: 14px; }
.kmp-meta { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 12.5px; margin-top: auto; flex-wrap: wrap; }
.kmp-meta span { display: inline-flex; align-items: center; gap: 5px; }
.kmp-meta svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) { .kmp-item { grid-template-columns: 1fr; gap: 14px; } .kmp-thumb { aspect-ratio: 16/9; } }

/* ===== Article ===== */
.article { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: clamp(20px, 3vw, 40px); }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--gray); font-size: 12.5px; margin-bottom: 16px; }
.article-breadcrumb a { color: var(--gray); transition: .2s; }
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb .sep { color: #ccc; }
.article-cat { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.article h1.title { font-weight: 700; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; margin-bottom: 16px; color: var(--cl-main); }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--gray); font-size: 13px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { width: 15px; height: 15px; stroke: var(--gray); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.author-avatar-sm { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--border); flex-shrink: 0; }
.author-avatar-xs { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; vertical-align: middle; }
.blog-card-meta .author { display: inline-flex; align-items: center; gap: 4px; }
.author-bio-box { background: var(--neutral-25); border-radius: 16px; padding: 22px; margin-bottom: 28px; border: 1px solid var(--border); }
.author-bio-inner { display: flex; align-items: flex-start; gap: 16px; }
.author-bio-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08); flex-shrink: 0; }
.author-bio-placeholder { display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: 28px; font-weight: 700; width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; }
.author-bio-label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; display: block; }
.author-bio-name { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--cl-main); }
.author-bio-text { font-size: 13px; color: var(--txt-600); line-height: 1.6; margin: 0; }

/* Author Profile Bottom */
.author-profile-box { background: linear-gradient(135deg, #f8f5ff 0%, #ede7ff 100%); border-radius: 16px; padding: 28px; margin: 32px 0; border: 1px solid #e0d4f5; }
.author-profile-inner { display: flex; align-items: flex-start; gap: 20px; }
.author-profile-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15); flex-shrink: 0; }
.author-profile-placeholder { display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: 28px; font-weight: 700; }
.author-profile-label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; display: block; }
.author-profile-name { font-size: 18px; font-weight: 700; color: var(--cl-main); margin: 0 0 10px; }
.author-profile-bio { font-size: 14px; color: var(--txt-600); line-height: 1.7; margin: 0; }
@media (max-width: 640px) { .author-profile-inner { flex-direction: column; text-align: center; align-items: center; } }
.article-cover { border-radius: 12px; overflow: hidden; margin-bottom: 22px; }
.article-cover figcaption { color: var(--gray); font-size: 12px; padding: 10px 12px; background: var(--neutral-25); text-align: center; }
.article-body { font-size: 16.5px; color: var(--txt-800); line-height: 1.8; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.article-body p { margin-bottom: 20px; }
.article-body img { border-radius: 12px; margin: 20px 0; }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 { margin: 26px 0 12px; color: var(--cl-main); }
.article-body a { color: var(--primary); }
.article-body a:hover { text-decoration: underline; }

/* share */
.share-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #fff; transition: .2s; }
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-btn svg { width: 15px; height: 15px; fill: currentColor; }
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-x { background: #1d1d1f; border: 1px solid #3a3a40; }
.share-tg { background: #229ed9; }

/* tags */
.tags-row { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.tags-row .lbl { color: var(--txt-600); font-size: 14px; font-weight: 600; }
.tag-pill { display: inline-flex; padding: 6px 14px; border-radius: 999px; background: var(--neutral-25); border: 1px solid var(--border); color: var(--txt-600); font-size: 12.5px; transition: .2s; }
.tag-pill:hover { color: var(--primary); border-color: var(--primary); }

/* related */
.related { margin-top: 30px; }
.related > h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.related > h3::before { content: ''; width: 4px; height: 16px; border-radius: 2px; background: var(--primary); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.related-card { display: flex; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; transition: .25s; align-items: center; }
.related-card:hover { border-color: #c4b5fd; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: translateY(-2px); }
.related-card img { width: 74px; height: 62px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.related-card h4 { font-size: 13.5px; font-weight: 500; line-height: 1.4; color: var(--txt-800); }
.related-card h4:hover { color: var(--primary); }

/* comments */
.comments { margin-top: 34px; }
.comments > h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.comments > h3::before { content: ''; width: 4px; height: 16px; border-radius: 2px; background: var(--primary); }
.comment-item { display: flex; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; margin-bottom: 14px; }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--neutral-25); }
.comment-avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.comment-head .nm { font-weight: 700; font-size: 14px; color: var(--cl-main); }
.comment-head .cat { font-size: 11px; color: var(--primary); font-weight: 700; letter-spacing: .5px; }
.comment-head .dt { color: var(--gray); font-size: 12px; margin-left: auto; }
.comment-body { color: var(--txt-600); font-size: 14px; }

/* comment form */
.comment-form { margin-top: 30px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.comment-form h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; color: var(--txt-600); font-size: 13px; font-weight: 500; margin-bottom: 7px; }
.input { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; color: var(--cl-main); font-size: 14px; font-family: inherit; transition: .2s; }
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }
textarea.input { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ===== Sidebar ===== */
.widget { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 20px; }
.widget-title { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--cl-main); }
.widget-title::before { content: ''; width: 4px; height: 16px; border-radius: 2px; background: var(--primary); }
.pop-list { display: flex; flex-direction: column; }
.pop-item { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.pop-item:last-child { border-bottom: none; }
.pop-rank { font-weight: 700; font-size: 26px; color: #d1d5db; flex-shrink: 0; }
.pop-item img { width: 66px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.pop-item h4 { font-size: 13.5px; font-weight: 500; line-height: 1.4; color: var(--txt-800); }
.pop-item h4:hover { color: var(--primary); }
.pop-item p { color: var(--gray); font-size: 11.5px; margin-top: 2px; }
.pop-item p { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pop-item .author-avatar-xs { width: 18px; height: 18px; border: 1px solid var(--border); }
.search-form { display: flex; gap: 8px; }
.search-form .input { flex: 1; }
.cat-list { display: flex; flex-direction: column; }
.cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 10px; border-radius: 8px; color: var(--txt-800); font-size: 14px; font-weight: 500; transition: .2s; border-bottom: 1px solid var(--neutral-25); }
.cat-list a:hover { color: var(--primary); padding-left: 14px; }
.cat-list a .arrow { color: var(--gray); }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 14px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.75)); opacity: 0; transition: .25s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 500; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(0,0,0,.9); padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(900px, 94vw); max-height: 82vh; border-radius: 12px; }
.lightbox .cap { color: #ccc; text-align: center; margin-top: 14px; font-size: 14px; }
.lightbox .close { position: absolute; top: 20px; right: 24px; width: 42px; height: 42px; border-radius: 50%; background: #2a2a2a; border: 1px solid #4a4a4a; color: #fff; font-size: 20px; cursor: pointer; }

/* Rich / Iklan */
.rich { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: clamp(20px, 3vw, 36px); color: var(--txt-800); font-size: 15.5px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.rich p { margin-bottom: 16px; }
.rich table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.rich table td, .rich table th { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }
.rich table th { background: var(--neutral-25); color: var(--cl-main); }
.rich h1, .rich h2, .rich h3, .rich h4 { color: var(--cl-main); margin: 22px 0 12px; }
.rich a { color: var(--primary); }

/* Instagram */
.insta-feed { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: clamp(18px, 3vw, 30px); }
.insta-feed iframe, .insta-feed blockquote { max-width: 100%; }
.insta-feed .em { color: var(--gray); font-size: 14px; }

/* Empty */
.empty { text-align: center; padding: 50px 20px; color: var(--gray); background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.empty .icon { font-size: 40px; margin-bottom: 12px; }

/* Ad strip */
.ad-strip { padding: 10px 0 60px; }
.ad-strip .container { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 22px; display: flex; gap: 26px; flex-wrap: wrap; align-items: center; justify-content: center; }
.ad-logo img { height: 44px; width: auto; opacity: .8; transition: .2s; }
.ad-logo:hover img { opacity: 1; }

/* ===== Footer (kampasnews.com style) ===== */
.footer-section { background: #1a1a2e; color: #fff; margin-top: 80px; }
.footer-top { padding: 60px 0 40px; }
.footer-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.footer-item { }
.footer-header { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #fff; position: relative; padding-bottom: 12px; }
.footer-header::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-content { }
.footer-content .desc { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 16px; }
.contact-list li { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.contact-list li i { color: var(--primary); width: 16px; text-align: center; flex-shrink: 0; }
.contact-list a { color: rgba(255,255,255,0.85); transition: .2s; }
.contact-list a:hover { color: var(--primary); }
.footer-social { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; }
.footer-social li a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); font-size: 16px; transition: .3s; }
.footer-social li a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-post-list { list-style: none; padding: 0; margin: 0; }
.footer-post-list li { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-post-list li img { width: 70px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.footer-post-list .post-title { font-size: 13px; font-weight: 600; line-height: 1.5; margin: 0; }
.footer-post-list .post-title a { color: rgba(255,255,255,0.85); transition: .2s; }
.footer-post-list .post-title a:hover { color: var(--primary); }
.footer-post-list .post-title span { display: block; font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 400; margin-top: 4px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.comment-list .icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; flex-shrink: 0; }
.comment-content { }
.comment-author { font-size: 13px; font-weight: 600; margin: 0; }
.comment-author a { color: rgba(255,255,255,0.85); }
.comment-author a:hover { color: var(--primary); }
.comment-author span { color: rgba(255,255,255,0.5); font-weight: 400; margin: 0 4px; }
.comment-list .comment { font-size: 12px; color: rgba(255,255,255,0.55); }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-wrap { display: flex; align-items: center; justify-content: space-between; }
.footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-logo .brand-text { font-size: 20px; font-weight: 700; color: #fff; }
.footer-menu-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; }
.footer-menu-list a { color: rgba(255,255,255,0.6); font-size: 14px; transition: .2s; }
.footer-menu-list a:hover { color: #fff; }

.copyright-area { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.copyright-wrap { display: flex; align-items: center; justify-content: space-between; }
.copyright-wrap p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }
.copyright-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.copyright-menu a { color: rgba(255,255,255,0.5); font-size: 13px; transition: .2s; }
.copyright-menu a:hover { color: #fff; }

@media (max-width: 768px) { .footer-grid-3 { grid-template-columns: 1fr; } .footer-bottom-wrap, .copyright-wrap { flex-direction: column; gap: 12px; text-align: center; } }

/* ===== Animations ===== */
[data-anim] { opacity: 0; transition: opacity .6s ease, transform .6s ease; }
[data-anim="fade-up"] { transform: translateY(24px); }
[data-anim="fade-down"] { transform: translateY(-24px); }
[data-anim="fade-right"] { transform: translateX(-24px); }
[data-anim="fade-left"] { transform: translateX(24px); }
[data-anim="zoom-in"] { transform: scale(0.92); }
[data-anim="zoom-in"].in,
[data-anim="fade-up"].in,
[data-anim="fade-down"].in,
[data-anim="fade-right"].in,
[data-anim="fade-left"].in { opacity: 1; transform: none; }

/* Hero Animations */
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes heroZoomIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes heroBadgePop { from { opacity: 0; transform: scale(0.7) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes heroCardSlide { from { opacity: 0; transform: translateX(60px) rotate(2deg); } to { opacity: 1; transform: translateX(0) rotate(0); } }
@keyframes heroPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); } 50% { box-shadow: 0 0 0 12px rgba(124,58,237,0); } }
@keyframes heroGlow { 0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.3); } 50% { text-shadow: 0 0 40px rgba(255,255,255,0.6); } }
@keyframes heroBtnShine { 0% { left: -100%; } 100% { left: 200%; } }

.hero-text h1 { animation: heroFadeUp .8s ease both; }
.hero-text h1 span { animation: heroGlow 3s ease-in-out infinite; }
.hero-text p { animation: heroFadeUp .8s ease .2s both; }
.hero-badge { animation: heroBadgePop .6s ease both; }
.hero-badge:nth-child(1) { animation-delay: .3s; }
.hero-badge:nth-child(2) { animation-delay: .45s; }
.hero-badge:nth-child(3) { animation-delay: .6s; }
.hero-cta { animation: heroFadeUp .8s ease .7s both; }
.hero-card { animation: heroCardSlide 1s ease .4s both; position: relative; overflow: hidden; }
.hero-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: heroBtnShine 4s ease-in-out infinite; }
.hero .btn-primary { animation: heroPulse 2s ease-in-out infinite; }
.hero .btn-primary:hover { animation: none; }

/* ===== Blog Section (kampasnews.com style) ===== */
.blog-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 2px solid var(--border); padding-bottom: 12px; }
.blog-section-title { font-size: 20px; font-weight: 700; color: var(--cl-main); margin: 0; }
.blog-section-title span { background: var(--neutral-25); padding: 4px 14px; border-radius: 4px; display: inline-block; }
.blog-section-more { color: var(--primary); font-size: 13px; font-weight: 600; white-space: nowrap; }
.blog-section-more:hover { color: var(--primary-dark); }

.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .3s; }
.blog-card:hover { border-color: #c4b5fd; box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-thumb { overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 180px; object-fit: cover; transition: .4s; display: block; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-content { padding: 14px; }
.blog-card-title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--cl-main); margin-bottom: 8px; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { color: var(--txt-600); font-size: 13px; line-height: 1.55; margin-bottom: 8px; }
.card-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; transition: .2s; }
.card-badge:hover { opacity: .85; color: #fff; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--gray); font-size: 12px; list-style: none; padding: 0; margin: 0; }
.blog-card-meta li { display: inline-flex; align-items: center; gap: 5px; }
.blog-card-meta .author { display: inline-flex; align-items: center; gap: 4px; }
.blog-card-meta .author img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.blog-card-meta .author span { color: var(--txt-800); font-weight: 500; }

/* Blog Avatar Wrap (kampasnews.com style) */
.blog-avatar-wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 50px; }
.blog-avatar-col { display: flex; flex-direction: column; gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .3s; }
.post-card:hover { border-color: #c4b5fd; box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.post-card .post-thumb { overflow: hidden; }
.post-card .post-thumb img { width: 100%; height: 180px; object-fit: cover; transition: .4s; display: block; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-card .post-content { padding: 14px; }
.post-card .title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--cl-main); margin-bottom: 8px; }
.post-card .title a:hover { color: var(--primary); }
.post-card .post-list { display: flex; flex-wrap: wrap; gap: 12px; color: var(--gray); font-size: 12px; list-style: none; padding: 0; margin: 0; }
.post-card .post-list li { display: inline-flex; align-items: center; gap: 5px; }
.post-card .post-list .author { display: inline-flex; align-items: center; gap: 4px; }
.post-card .post-list .author img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.post-card .post-list .author span { color: var(--txt-800); font-weight: 500; }
.post-card .card-btn { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; transition: .2s; }
.post-card .card-btn:hover { opacity: .85; color: #fff; }
.post-card .excerpt { color: var(--txt-600); font-size: 13px; line-height: 1.55; margin-bottom: 8px; }
.mb-50 { margin-bottom: 50px; }

.blog-card-horizontal { display: grid; grid-template-columns: 200px 1fr; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .3s; align-items: center; }
.blog-card-horizontal:hover { border-color: #c4b5fd; box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-horizontal .blog-card-thumb img { height: 140px; }
.blog-card-horizontal .blog-card-content { padding: 14px 14px 14px 0; }
.blog-card-top { margin-bottom: 16px; }
.blog-card-top .blog-card-thumb img { height: 220px; }

.blog-list-stack { display: flex; flex-direction: column; gap: 14px; }
.blog-list-stack .blog-card-horizontal .blog-card-thumb img { height: 100px; }

.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .home-grid { grid-template-columns: 1fr; }
    .blog-avatar-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    body { padding-top: 60px; }
    .nav-toggle { display: flex; }
    .navbar-menu {
        display: none; position: fixed; top: 0; left: 0; width: 280px; max-width: calc(100vw - 20px);
        height: 100vh; background: #fff; box-shadow: 2px 0 10px rgba(0,0,0,.15);
        z-index: 1001; padding: 70px 20px 30px; overflow-y: auto; flex-direction: column;
        align-items: stretch; gap: 20px;
    }
    .navbar-menu.open { display: flex; }
    .nav-backdrop.open { display: block; }
    .navbar-nav { flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; flex: 1 1 0; min-height: 0; }
    .navbar-nav a { padding: 14px 16px; border-radius: 0; border-bottom: 1px solid #e5e7eb; font-size: 15px; }
    .navbar-nav a::after { display: none; }
    .navbar-nav a:hover, .navbar-nav a.active { background: rgba(124,58,237,0.06); }
    .navbar-search { width: 100%; margin-top: 10px; }
    .search-input { width: 100%; padding: 10px 14px; font-size: 14px; }
    .search-btn { padding: 10px 14px; font-size: 14px; }
    .nav-close { display: flex; }
    .section { padding: 26px 0; }
    .page-main { padding: 20px 0 50px; }
    .headline { min-height: 320px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .trend-inner { height: 40px; } .brand-logo { height: 26px; } .brand-name { font-size: 16px; } }

/* ============================================================
   LANDING SECTIONS - Exact match to lp17media.my.id
   ============================================================ */

/* Hero */
.hero {
    background: linear-gradient(135deg, #7c3aed, #4f46e5, #8b5cf6, #6d28d9);
    background-size: 250% 250%; animation: gradientMove 12s ease infinite;
    color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,255,255,0.06); border-radius: 50%; animation: float 8s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; animation: floatReverse 7s ease-in-out infinite; }
@keyframes gradientMove { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes floatReverse { 0%,100%{transform:translateY(-18px)} 50%{transform:translateY(0)} }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center; }
.hero-text { cursor: pointer; z-index: 2; position: relative; }
.hero-text h1 { font-weight: 700; font-size: clamp(28px, 4vw, 48px); line-height: 1.2; margin-bottom: 20px; color: #fff; }
.hero-text h1 span {
    background: linear-gradient(90deg, #fff 0%, #e9d5ff 20%, #fff 40%);
    background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; animation: shimmer 3s linear infinite;
}
.typewriter-wrap { display: inline; }
.typewriter { display: inline; -webkit-text-fill-color: #fff; background: none; -webkit-background-clip: unset; background-clip: unset; animation: none; }
.typewriter-cursor { display: inline-block; color: #fff; font-weight: 300; animation: blink .7s step-end infinite; margin-left: 2px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }

.hero-text p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 500px; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.hero-badge svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.85); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 3; }
.hero .btn-primary { background: #fff; color: var(--primary); cursor: pointer; pointer-events: auto; }
.hero .btn-primary:hover { background: #e9d5ff; }
.hero .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; cursor: pointer; pointer-events: auto; }
.hero .btn-outline:hover { background: #fff; color: var(--primary); }
.hero-card { display: block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 18px; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: .3s; box-shadow: 0 24px 60px -20px rgba(0,0,0,.55); z-index: 2; position: relative; }
.hero-card:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-6px); }
.hero-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-card-cat { display: inline-block; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin: 18px 18px 0; }
.hero-card h3 { font-weight: 600; font-size: 17px; line-height: 1.4; padding: 10px 18px 6px; color: #fff; }
.hero-card-meta { display: block; color: rgba(255,255,255,0.75); font-size: 12.5px; padding: 0 18px 18px; }

/* Equalizer */
.equalizer { display: inline-flex; align-items: flex-end; gap: 5px; height: 42px; margin-top: 24px; }
.equalizer span { width: 6px; height: 100%; border-radius: 4px; background: rgba(255,255,255,0.85); transform-origin: bottom; animation: equalizer 1.1s ease-in-out infinite; }
.equalizer span:nth-child(1){animation-delay:0s} .equalizer span:nth-child(2){animation-delay:.15s} .equalizer span:nth-child(3){animation-delay:.3s} .equalizer span:nth-child(4){animation-delay:.45s} .equalizer span:nth-child(5){animation-delay:.6s} .equalizer span:nth-child(6){animation-delay:.75s} .equalizer span:nth-child(7){animation-delay:.9s}
@keyframes equalizer { 0%,100%{transform:scaleY(.25)} 50%{transform:scaleY(1)} }

/* Marquee */
.marquee { background: rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.15); overflow: hidden; padding: 14px 0; margin-top: 24px; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marqueeX 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-weight: 600; font-size: 14px; }
.marquee-item .tick { color: #c4b5fd; font-size: 16px; }
.marquee-item:hover { color: #fff; }
@keyframes marqueeX { to { transform: translateX(-50%); } }

/* Features */
.features { padding: 80px 0; background: #f8f9fa; }
.sec-head { text-align: center; margin-bottom: 50px; }
.sec-head .sec-title { justify-content: center; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
    background: #fff; border-radius: 16px; padding: 30px; text-align: center;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid #e5e7eb; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 40px rgba(124,58,237,0.16); border-color: rgba(124,58,237,0.3); }
.feature-card .icon, .feature-card .feature-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; background: rgba(124,58,237,0.1); color: var(--primary); }
.feature-card:hover .icon i, .feature-card:hover .feature-icon i { animation: float 1.5s ease-in-out infinite; }
.feature-card .feature-num { font-weight: 800; font-size: 34px; color: var(--cl-main); line-height: 1; margin-bottom: 8px; }
.feature-card h3 { font-weight: 600; font-size: 18px; color: var(--cl-main); margin-bottom: 8px; }
.feature-card p { color: #6b7280; font-size: 14px; }

/* Categories */
.categories { padding: 80px 0; background: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.cat-card {
    display: flex; align-items: center; gap: 18px; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 16px; padding: 22px 24px;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.35s ease;
}
.cat-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 40px rgba(124,58,237,0.16); border-color: rgba(124,58,237,0.3); }
.cat-badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; font-weight: 700; font-size: 20px; color: #fff; }
.cat-card h3 { font-size: 17px; font-weight: 600; color: var(--cl-main); }
.cat-card p { color: #6b7280; font-size: 13px; }
.cat-arrow { margin-left: auto; color: var(--gray); font-size: 18px; transition: .3s; }
.cat-card:hover .cat-arrow { color: var(--primary); transform: translateX(4px); }

/* Stats band */
.stats-band {
    padding: 80px 0; background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff;
    position: relative; overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; position: relative; }
.stat { text-align: center; }
.stat-num { font-weight: 700; font-size: clamp(36px, 5vw, 48px); color: #fff; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 400; }

/* Partners */
.partners { padding: 80px 0; background: #f8f9fa; }
.partner-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; align-items: center; }
.partner-box {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 18px 26px; display: flex; align-items: center; gap: 12px;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.35s ease;
}
.partner-box:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 40px rgba(124,58,237,0.16); }
.partner-box img { height: 40px; width: auto; border-radius: 6px; }
.partner-box span { color: #374151; font-weight: 600; font-size: 15px; }

/* CTA band */
.cta-band { padding: 80px 0; text-align: center; background: #fff; }
.cta-band h2 { font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); color: #1a1a2e; margin-bottom: 16px; }
.cta-band p { color: #6b7280; font-size: 15.5px; max-width: 640px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-outline { color: var(--primary); border-color: var(--primary); }
.cta-band .btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 22px; animation: float 2.5s ease-in-out infinite; z-index: 2; }

/* Mobile hero */
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-card { max-width: 520px; } .hero { padding: 64px 16px 48px; } .hero-text h1 { font-size: 30px; } .stats-band .stat-num { font-size: 32px; } }

/* --- About social --- */
.about-social { text-align: center; margin: 40px 0 20px; }
.about-social .about-social-title { font-size: 1.3rem; margin-bottom: 15px; }
.about-social ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 15px; }
.about-social ul li a { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; font-size: 22px; text-decoration: none; transition: transform .3s; }
.about-social ul li a:hover { transform: translateY(-3px); }
.about-social .sos-fb { background: #3b5998; }
.about-social .sos-tw { background: #1da1f2; }
.about-social .sos-ig { background: #e4405f; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-area { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img img { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); object-fit: cover; }
.about-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.about-title { font-size: 36px; font-weight: 700; color: var(--cl-main); margin-bottom: 16px; line-height: 1.2; }
.about-brand { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 16px; display: block; }
.about-text { font-size: 15.5px; color: var(--txt-600); line-height: 1.8; }
.about-text p { margin-bottom: 14px; }
.about-text strong { color: var(--cl-main); }

/* team */
.team-area { padding: 60px 0; background: #f8f9fa; }
.text-center { text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.team-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; transition: .3s; }
.team-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.team-thumb { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.team-thumb img { width: 100%; height: 100%; object-fit: cover; }
.team-social { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(124,58,237,0.78); opacity: 0; transition: .3s; }
.team-item:hover .team-social { opacity: 1; }
.team-social ul { display: flex; gap: 10px; }
.team-social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--primary); transition: .3s; }
.team-social a:hover { color: #f59e0b; transform: translateY(-3px); }
.team-social svg { width: 16px; height: 16px; fill: currentColor; }
.team-content { padding: 18px 14px; text-align: center; }
.team-content .title { font-size: 18px; font-weight: 700; color: var(--cl-main); margin-bottom: 4px; }
.team-content span { color: var(--txt-600); font-size: 13px; }
@media (max-width: 992px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr; } .about-title { font-size: 28px; } }

/* ============================================================
   KNEWS LISTING
   ============================================================ */
.knews-head { margin-bottom: 24px; }
.knews-title-page { font-size: 30px; font-weight: 700; color: var(--cl-main); }
.knews-sub { color: var(--txt-600); font-size: 14.5px; margin-top: 6px; }
.knews-list { display: flex; flex-direction: column; gap: 24px; }
.knews-item { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 24px; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: var(--shadow); padding: 20px; transition: .25s; align-items: start; }
.knews-item:hover { border-color: #c4b5fd; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.knews-thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; background: var(--neutral-25); display: block; }
.knews-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.knews-item:hover .knews-thumb img { transform: scale(1.05); }
.knews-content { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.knews-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.knews-cat { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #fff; }
.knews-title { font-size: 21px; font-weight: 700; line-height: 1.32; color: var(--cl-main); }
.knews-title a:hover { color: var(--primary); }
.knews-meta { display: flex; align-items: center; gap: 16px; color: var(--gray); font-size: 12.5px; flex-wrap: wrap; }
.knews-meta span { display: inline-flex; align-items: center; gap: 6px; }
.knews-meta svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.knews-excerpt { color: var(--txt-600); font-size: 14px; line-height: 1.65; }
.knews-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; color: var(--primary); font-size: 14px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.knews-more:hover { color: var(--primary-dark); }
.knews-arrow { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; transition: .3s; }
.knews-more:hover .knews-arrow { transform: translateX(5px); }
.knews-arrow svg { width: 14px; height: 14px; }
@media (max-width: 640px) { .knews-item { grid-template-columns: 1fr; gap: 14px; } .knews-title { font-size: 18px; } }
@media (max-width: 768px) { .blog-grid-3 { grid-template-columns: 1fr 1fr; } .blog-card-horizontal { grid-template-columns: 140px 1fr; } .blog-card-top .blog-card-thumb img { height: 180px; } }
@media (max-width: 480px) { .blog-grid-3 { grid-template-columns: 1fr; } .blog-card-horizontal { grid-template-columns: 100px 1fr; } .blog-card-horizontal .blog-card-thumb img { height: 80px; } }

/* ============================================================
   RESPONSIVE COMPLETE - Mobile & PC
   ============================================================ */

/* --- Footer: 2 columns on tablet --- */
@media (max-width: 980px) and (min-width: 769px) {
    .footer-grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid-3 .footer-item:last-child { grid-column: span 2; }
}

/* --- Footer: 1 column on mobile --- */
@media (max-width: 768px) {
    .footer-grid-3 { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 40px 0 30px; }
    .footer-bottom-wrap { flex-direction: column; gap: 12px; text-align: center; }
    .copyright-wrap { flex-direction: column; gap: 10px; text-align: center; }
    .footer-menu-list { justify-content: center; }
    .copyright-menu { justify-content: center; }
    .footer-post-list li img { width: 56px; height: 48px; }
    .comment-list .icon { width: 32px; height: 32px; font-size: 14px; }
}

/* --- About social: stack on very small screens --- */
@media (max-width: 400px) {
    .about-social ul { flex-direction: column; align-items: center; gap: 12px; }
    .about-social ul li a { width: 44px; height: 44px; font-size: 18px; }
}

/* --- Blog avatar wrap: 1 column on phone --- */
@media (max-width: 640px) {
    .blog-avatar-wrap { grid-template-columns: 1fr; gap: 18px; }
    .blog-card-horizontal { grid-template-columns: 120px 1fr; }
    .blog-card-horizontal .blog-card-thumb img { height: 90px; }
    .blog-card-horizontal .blog-card-content { padding: 12px; }
}

/* --- Hero: better mobile --- */
@media (max-width: 640px) {
    .hero { padding: 50px 16px 36px; }
    .hero-inner { gap: 24px; }
    .hero-text h1 { font-size: 24px; }
    .hero-text p { font-size: 15px; }
    .hero-badges { gap: 14px; }
    .hero-badge { font-size: 12px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { padding: 10px 18px; font-size: 13px; }
    .hero-card { max-width: 100%; }
    .hero-card h3 { font-size: 15px; padding: 12px 14px 4px; }
    .hero-card-cat { margin: 12px 14px 0; font-size: 10px; }
    .hero-card-meta { padding: 0 14px 14px; font-size: 11px; }
    .equalizer { height: 32px; margin-top: 16px; }
    .equalizer span { width: 4px; }
    .marquee { padding: 10px 0; margin-top: 16px; }
    .marquee-item { font-size: 12px; gap: 6px; }
}

/* --- Navbar mobile improvements --- */
@media (max-width: 640px) {
    .navbar-inner { padding: 10px 0; }
    .brand-logo { height: 30px; }
    .brand-name { font-size: 15px; }
    .site-header.scrolled .brand-logo { height: 26px; }
    .site-header.scrolled .brand-name { font-size: 14px; }
    .nav-toggle { width: 36px; height: 36px; }
    .nav-toggle span { width: 18px; }
    .navbar-menu { width: 260px; padding: 60px 16px 24px; }
    .search-input { font-size: 14px; padding: 10px 12px; }
    .search-btn { padding: 10px 12px; font-size: 14px; }
}

/* --- Page banner mobile --- */
@media (max-width: 640px) {
    .page-banner { padding: 18px 0 6px; }
    .page-banner h1 { font-size: 22px; }
    .page-banner h1::before { height: 18px; }
    .page-banner p { font-size: 13px; }
    .page-breadcrumb { font-size: 11px; }
}

/* --- Section / layout mobile --- */
@media (max-width: 640px) {
    .page-main { padding: 16px 0 40px; }
    .section { padding: 20px 0; }
    .section-head h2 { font-size: 16px; }
    .sec-head { margin-bottom: 16px; }
    .sec-title { font-size: 20px; }
    .sec-title::before { height: 18px; }
    .container { width: min(1280px, 96%); }
}

/* --- News / Kmp items mobile --- */
@media (max-width: 480px) {
    .news-item { padding: 14px; gap: 12px; }
    .news-body h3 { font-size: 16px; }
    .news-meta { font-size: 11px; gap: 8px; }
    .kmp-item { padding: 14px; gap: 12px; }
    .kmp-body h3 { font-size: 16px; }
    .kmp-meta { font-size: 11px; gap: 8px; }
}

/* --- Headline mobile --- */
@media (max-width: 640px) {
    .headline { min-height: 260px; border-radius: 12px; }
    .headline-body { padding: 18px; }
    .headline-body h2 { font-size: 18px; }
    .headline-body .hm { font-size: 11px; gap: 8px; }
    .terkini-panel { padding: 16px; border-radius: 12px; }
    .terkini-head h3 { font-size: 15px; }
    .terkini-item h4 { font-size: 13px; }
    .terkini-item .t { font-size: 11px; }
}

/* --- Article page mobile --- */
@media (max-width: 640px) {
    .article { padding: 16px; border-radius: 12px; }
    .article h1.title { font-size: 22px; }
    .article-meta { gap: 10px; font-size: 12px; padding-bottom: 14px; margin-bottom: 16px; }
    .article-body { font-size: 15px; line-height: 1.7; }
    .article-body img { border-radius: 8px; margin: 14px 0; }
    .share-row { gap: 6px; }
    .share-btn { padding: 6px 12px; font-size: 12px; }
    .tags-row { gap: 6px; }
    .tag-pill { padding: 5px 10px; font-size: 11px; }
    .related-grid { grid-template-columns: 1fr; }
    .related-card { padding: 10px; }
    .related-card img { width: 60px; height: 50px; }
    .related-card h4 { font-size: 12.5px; }
}

/* --- Comments mobile --- */
@media (max-width: 640px) {
    .comment-item { flex-direction: column; gap: 10px; padding: 14px; }
    .comment-avatar { width: 40px; height: 40px; }
    .comment-head { gap: 6px; }
    .comment-head .nm { font-size: 13px; }
    .comment-head .dt { margin-left: 0; font-size: 11px; }
    .comment-form { padding: 18px; }
    .comment-form h3 { font-size: 16px; }
}

/* --- Author bio mobile --- */
@media (max-width: 640px) {
    .author-bio-box { padding: 16px; border-radius: 12px; margin-bottom: 20px; }
    .author-bio-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .author-bio-avatar { width: 64px; height: 64px; }
    .author-bio-placeholder { width: 64px; height: 64px; font-size: 22px; }
    .author-profile-box { padding: 18px; border-radius: 12px; margin: 20px 0; }
    .author-profile-avatar { width: 64px; height: 64px; }
    .author-profile-name { font-size: 16px; }
    .author-profile-bio { font-size: 13px; }
}

/* ===== Mobile Sidebar Toggle ===== */
.sidebar-btn-group {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 14px;
    z-index: 1003;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.sidebar-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sidebar-marketplace-btn,
.sidebar-translate-btn { background: rgba(255, 255, 255, 0.95); }
.sidebar-marketplace-btn:hover,
.sidebar-translate-btn:hover { background: var(--primary); }
.sidebar-marketplace-btn i,
.sidebar-translate-btn i { color: var(--cl-main); font-size: 18px; transition: color 0.3s; }
.sidebar-marketplace-btn:hover i,
.sidebar-translate-btn:hover i { color: #fff; }
.sidebar-toggle:hover { background: var(--primary); }
.sidebar-toggle i { color: var(--cl-main); font-size: 18px; transition: color 0.3s; }
.sidebar-toggle:hover i { color: #fff; }
.sidebar-toggle.open i { display: none; }
.sidebar-toggle.open::after {
    content: '\00d7';
    font-size: 24px;
    font-weight: 400;
    color: var(--cl-main);
}
.sidebar-toggle.open:hover::after { color: #fff; }

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 16px;
    z-index: 1003;
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float i { color: #fff; font-size: 22px; }
.whatsapp-float:hover { background: #1ebe57; transform: scale(1.05); }

@media (max-width: 980px) {
    body.nav-open .sidebar-btn-group { display: none; }
    body.sidebar-open .nav-toggle { display: none; }
    .sidebar-btn-group { display: flex; }
    body.sidebar-open .sidebar-btn-group { display: flex; }

    .layout-side {
        position: fixed !important;
        top: 0;
        right: 0;
        width: 320px;
        max-width: calc(100vw - 16px);
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1002;
        padding: 72px 16px 30px;
        margin: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    }
    .layout-side.open { transform: translateX(0); }
    .sidebar-backdrop.open { display: block; }

    .layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sidebar-btn-group { bottom: 18px; right: 14px; gap: 7px; }
    .sidebar-toggle { width: 44px; height: 44px; border-radius: 12px; }
    .sidebar-toggle i { font-size: 18px; }
}
@media (max-width: 640px) {
    .sidebar-btn-group { bottom: 16px; right: 12px; gap: 6px; }
    .sidebar-toggle { width: 42px; height: 42px; border-radius: 11px; }
    .sidebar-toggle i { font-size: 17px; }
    .layout-side { padding-top: 70px; }
    .widget { padding: 16px; border-radius: 12px; }
    .widget-title { font-size: 15px; margin-bottom: 12px; }
    .pop-item { gap: 10px; padding: 10px 0; }
    .pop-item img { width: 54px; height: 44px; }
    .pop-item h4 { font-size: 12.5px; }
    .pop-rank { font-size: 22px; }
}
@media (max-width: 480px) {
    .sidebar-btn-group { bottom: 14px; right: 11px; gap: 6px; }
    .sidebar-toggle { width: 40px; height: 40px; border-radius: 10px; }
    .sidebar-toggle i { font-size: 16px; }
    .whatsapp-float { bottom: 14px; left: 11px; width: 40px; height: 40px; border-radius: 10px; }
    .whatsapp-float i { font-size: 20px; }
}
@media (max-width: 380px) {
    .sidebar-btn-group { bottom: 12px; right: 10px; gap: 5px; }
    .sidebar-toggle { width: 38px; height: 38px; border-radius: 10px; }
    .sidebar-toggle i { font-size: 15px; }
    .whatsapp-float { bottom: 12px; left: 10px; width: 38px; height: 38px; border-radius: 10px; }
    .whatsapp-float i { font-size: 19px; }
}

/* --- Gallery mobile --- */
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-item { border-radius: 10px; }
    .gallery-overlay { padding: 10px; }
    .gallery-overlay span { font-size: 11px; }
}

/* --- Ad strip mobile --- */
@media (max-width: 640px) {
    .ad-strip { padding: 8px 0 40px; }
    .ad-strip .container { padding: 14px; gap: 14px; }
    .ad-logo img { height: 32px; }
}

/* --- Features / Categories mobile --- */
@media (max-width: 640px) {
    .features { padding: 40px 0; }
    .categories { padding: 40px 0; }
    .stats-band { padding: 40px 0; }
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 14px; }
    .feature-card { padding: 20px; }
    .feature-card h3 { font-size: 16px; }
    .cat-card { padding: 16px; gap: 14px; }
    .cat-card h3 { font-size: 15px; }
    .cat-badge { width: 44px; height: 44px; font-size: 16px; border-radius: 10px; }
    .cta-band { padding: 40px 0; }
    .cta-band h2 { font-size: 22px; }
    .cta-band p { font-size: 14px; }
    .partners { padding: 40px 0; }
    .partner-box { padding: 14px 18px; }
    .partner-box img { height: 30px; }
    .partner-box span { font-size: 13px; }
}

/* --- Form mobile --- */
@media (max-width: 640px) {
    .form-grid { gap: 12px; }
    .field label { font-size: 12px; }
    .input { padding: 10px 12px; font-size: 13px; }
}

/* --- Trending mobile --- */
@media (max-width: 640px) {
    .trend-inner { gap: 10px; height: 36px; }
    .trend-label { font-size: 12px; }
    .trend-title { font-size: 12px; }
}

/* --- Knews page mobile --- */
@media (max-width: 640px) {
    .knews-head { margin-bottom: 16px; }
    .knews-title-page { font-size: 22px; }
    .knews-list { gap: 16px; }
    .knews-item { padding: 14px; gap: 14px; }
    .knews-thumb { aspect-ratio: 16/9; }
    .knews-excerpt { font-size: 13px; }
    .knews-more { font-size: 12px; }
}

/* --- Instagram page mobile --- */
@media (max-width: 640px) {
    .insta-feed { padding: 14px; border-radius: 12px; }
    .insta-feed iframe, .insta-feed blockquote { max-height: 400px; }
}

/* --- Empty state mobile --- */
@media (max-width: 640px) {
    .empty { padding: 30px 16px; }
    .empty .icon { font-size: 32px; }
}

/* --- Scroll indicator mobile --- */
@media (max-width: 640px) {
    .scroll-indicator { bottom: 16px; font-size: 18px; }
}

/* --- Button mobile --- */
@media (max-width: 480px) {
    .btn { padding: 8px 16px; font-size: 13px; }
    .btn-lg { padding: 10px 20px; font-size: 14px; }
    .btn-sm { padding: 5px 10px; font-size: 12px; }
}

/* --- Lightbox mobile --- */
@media (max-width: 640px) {
    .lightbox { padding: 12px; }
    .lightbox img { max-height: 70vh; border-radius: 8px; }
    .lightbox .close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 16px; }
}

/* --- Contact page mobile --- */
@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* --- Blog grid 3: 1 column on small phones --- */
@media (max-width: 480px) {
    .blog-grid-3 { grid-template-columns: 1fr; }
}

/* --- General overflow fix for mobile --- */
@media (max-width: 767px) {
    body { overflow-x: hidden; }
}
