/* LanternPBN - Main Stylesheet v2 */
/* Font: Inter (minimalis, modern) */

:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #111114;
    --bg-card: #161619;
    --bg-card-hover: #1c1c20;
    --bg-muted: #1e1e23;
    --border: #242428;
    --border-light: #2e2e35;
    --gold: #f5a623;
    --gold-light: #ffc147;
    --gold-dark: #d4881a;
    --text-primary: #ededf0;
    --text-secondary: #8888a0;
    --text-muted: #55555f;
    --green: #22c55e;
    --teal: #14b8a6;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #a855f7;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 32px rgba(245,166,35,0.12);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-head);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: rgba(10,10,12,0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; gap: 32px;
    height: 64px;
}
.logo { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; letter-spacing: -0.04em; flex-shrink: 0; }
.logo-lantern { color: var(--gold); }
.logo-pbn { color: var(--text-primary); margin-left: 3px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
    padding: 7px 13px; border-radius: 7px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition); letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-links a.active { background: var(--bg-muted); color: var(--text-primary); }
.btn-order {
    background: var(--gold); color: #0a0a0c;
    padding: 9px 18px; border-radius: 8px;
    font-weight: 700; font-size: 0.825rem; white-space: nowrap;
    transition: var(--transition); flex-shrink: 0;
    letter-spacing: -0.01em;
}
.btn-order:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 6px; margin-left: auto; }

/* ---- MOBILE SIDEBAR ---- */
.mobile-sidebar {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,12,0.98);
    backdrop-filter: blur(24px);
    z-index: 850;
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
}
.mobile-sidebar.open { display: flex; }
.mobile-sidebar-links {
    display: flex; flex-direction: column; gap: 4px;
    flex: 1;
}
.mobile-sidebar-links a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: 10px;
    font-size: 1rem; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition);
}
.mobile-sidebar-links a:hover { color: var(--text-primary); background: var(--bg-card); }
.mobile-sidebar-links a.active {
    color: var(--gold); background: rgba(245,166,35,0.08);
    border-left: 3px solid var(--gold); padding-left: 13px;
}
.mobile-sidebar-links a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-sidebar-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-sidebar-order {
    background: var(--gold); color: #0a0a0c;
    padding: 14px 20px; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem;
    text-align: center; margin-top: 12px;
    display: block;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 9px; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); border: none; font-family: var(--font-body);
    text-decoration: none; line-height: 1; letter-spacing: -0.01em;
}
.btn-primary { background: var(--gold); color: #0a0a0c; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 13px 28px; font-size: 0.9375rem; }

/* ---- CONTAINER ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 24px; }
.section-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.section-desc { color: var(--text-secondary); max-width: 560px; font-size: 0.9rem; line-height: 1.7; }

/* ---- HERO ---- */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245,166,35,0.07) 0%, transparent 70%);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.775rem; color: var(--text-secondary); margin-bottom: 28px;
    font-weight: 500; letter-spacing: -0.01em;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1rem; color: var(--text-secondary);
    max-width: 520px; margin: 0 auto 32px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- STATS ---- */
.stats-section { padding: 0 24px 70px; }
.stats-grid {
    max-width: 900px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: grid; grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.stat-item {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
    font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; color: var(--gold); margin-bottom: 6px;
    letter-spacing: -0.04em; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ---- ABOUT ---- */
.about-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px;
}
.about-feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px;
}
.about-feature-card svg { color: var(--gold); margin-bottom: 10px; width: 20px; height: 20px; }
.about-feature-card h4 { font-size: 0.875rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.about-feature-card p { font-size: 0.78rem; color: var(--text-muted); }
.about-visual {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
}
.about-visual-stat {
    background: var(--bg-muted); border-radius: var(--radius);
    padding: 20px; display: flex; align-items: center; gap: 16px;
}
.about-visual-stat-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(245,166,35,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-visual-stat-icon svg { color: var(--gold); width: 18px; height: 18px; }
.about-visual-stat-value { font-size: 1.25rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.about-visual-stat-label { font-size: 0.775rem; color: var(--text-muted); margin-top: 2px; }

/* ---- PRODUCT CARDS ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); cursor: pointer;
}
.product-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card-img {
    position: relative; height: 140px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
}
.product-card-img-deco {
    position: absolute; width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
    right: -40px; top: -40px;
}
.product-card-img-deco2 {
    position: absolute; width: 100px; height: 100px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
    left: -20px; bottom: -30px;
}
.product-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(245,166,35,0.95); color: #0a0a0c;
    border-radius: 6px; padding: 4px 9px;
    display: flex; flex-direction: column; align-items: flex-end;
}
.product-card-badge span { font-size: 0.65rem; font-weight: 700; line-height: 1.4; }
.product-card-title-area {
    position: absolute; bottom: 12px; left: 14px; right: 100px;
}
.product-card-title-area h3 {
    font-size: 0.875rem; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.2;
}
.product-card-title-area span { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-body { padding: 16px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag {
    font-size: 0.7rem; font-weight: 600; color: var(--text-secondary);
    background: var(--bg-muted); border: 1px solid var(--border);
    padding: 3px 9px; border-radius: 100px;
}
.product-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.product-price span { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; margin-left: 2px; }
.btn-order-product {
    background: var(--gold); color: #0a0a0c;
    padding: 8px 16px; border-radius: 7px;
    font-weight: 700; font-size: 0.78rem;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: var(--font-body);
}
.btn-order-product:hover { background: var(--gold-light); }

/* ---- ORDER POPUP MODAL ---- */
.popup-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
    align-items: flex-end; justify-content: center;
}
.popup-overlay.open { display: flex; }
@media (min-width: 600px) {
    .popup-overlay { align-items: center; }
}
.popup-modal {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%; max-width: 480px; max-height: 90vh;
    overflow-y: auto; position: relative;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 600px) {
    .popup-modal { border-radius: var(--radius-xl); max-height: 85vh; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.popup-header {
    padding: 22px 22px 18px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    position: relative; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.popup-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.1); border: none;
    color: rgba(255,255,255,0.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.popup-product-name {
    font-size: 1.3rem; font-weight: 800; color: #fff;
    letter-spacing: -0.03em; text-transform: uppercase;
    margin-bottom: 0;
}
.popup-subtitle-label {
    font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 6px;
}
.popup-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 18px; }
.popup-price-box {
    background: var(--bg-muted); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.popup-price-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.popup-price-value { font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: -0.04em; }
.popup-price-meta { font-size: 0.7rem; color: var(--text-muted); }
.popup-section-label {
    font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.popup-desc-box {
    background: var(--bg-muted); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px;
    font-size: 0.825rem; color: var(--text-secondary); line-height: 1.6;
}
/* Quantity Stepper */
.qty-stepper {
    display: flex; align-items: center;
    background: var(--bg-muted); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.qty-btn {
    width: 48px; height: 48px; background: var(--bg-card);
    border: none; color: var(--text-primary); cursor: pointer;
    font-size: 1.1rem; font-weight: 700; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qty-btn:hover { background: var(--border); color: var(--gold); }
.qty-display {
    flex: 1; text-align: center; font-size: 1.1rem; font-weight: 700;
    color: var(--text-primary); letter-spacing: -0.02em;
}
.qty-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }
/* Dripfeed selector */
.dripfeed-options { display: flex; flex-wrap: wrap; gap: 8px; }
.dripfeed-btn {
    padding: 8px 16px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--bg-muted);
    color: var(--text-secondary); font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.dripfeed-btn.active, .dripfeed-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.08); }
/* Form fields */
.popup-input {
    width: 100%; background: var(--bg-muted); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 14px;
    color: var(--text-primary); font-family: var(--font-body); font-size: 0.875rem;
    transition: var(--transition);
}
.popup-input:focus { outline: none; border-color: var(--gold); }
.popup-input::placeholder { color: var(--text-muted); }
/* Total */
.popup-total-box {
    background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius); padding: 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.popup-total-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.popup-total-value { font-size: 1.4rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
/* Order buttons */
.popup-actions-label { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-bottom: 10px; }
.popup-order-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 16px; border-radius: 9px;
    background: #25D366; color: #fff;
    font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.btn-wa:hover { background: #20b858; transform: translateY(-1px); }
.btn-tg {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 16px; border-radius: 9px;
    background: #229ED9; color: #fff;
    font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.btn-tg:hover { background: #1a8cc0; transform: translateY(-1px); }

/* ---- PACKAGES ---- */
.packages-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.package-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 26px;
    position: relative; transition: var(--transition);
}
.package-card.popular {
    border-color: var(--gold); background: linear-gradient(135deg, var(--bg-card), rgba(245,166,35,0.04));
}
.package-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.package-popular-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #0a0a0c;
    font-size: 0.65rem; font-weight: 800; padding: 3px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.package-name { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; }
.package-price { font-size: 2rem; font-weight: 800; color: var(--gold); letter-spacing: -0.04em; margin-bottom: 4px; }
.package-price-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; }
.package-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.package-stat-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.package-stat-row .lbl { color: var(--text-muted); }
.package-stat-row .val { font-weight: 700; color: var(--text-primary); }
.package-divider { height: 1px; background: var(--border); margin: 16px 0; }
.package-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.package-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-secondary); }
.package-feature svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.package-order-btns { display: flex; flex-direction: column; gap: 8px; }
.btn-package {
    padding: 10px; border-radius: 8px; text-align: center;
    font-weight: 700; font-size: 0.8rem; cursor: pointer; border: none;
    transition: var(--transition); font-family: var(--font-body);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-package-wa { background: #25D366; color: #fff; }
.btn-package-wa:hover { background: #20b858; }
.btn-package-tg { background: #229ED9; color: #fff; }
.btn-package-tg:hover { background: #1a8cc0; }

/* ---- COMPARISON TABLE ---- */
.comparison-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.comparison-table th { background: var(--bg-muted); padding: 12px 16px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 700; }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--green); font-size: 0.9rem; }
.comparison-table .cross { color: var(--red); font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; background: none; border: none; color: var(--text-primary);
    font-size: 0.875rem; font-weight: 600; cursor: pointer; gap: 12px;
    font-family: var(--font-body); text-align: left; letter-spacing: -0.01em;
}
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 18px 16px; font-size: 0.825rem; color: var(--text-muted); line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }

/* ---- BL TYPE CARDS ---- */
.bl-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; max-width: 1100px; margin: 0 auto; }
.bl-type-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.bl-type-card h4 { font-size: 0.875rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.bl-type-card p { font-size: 0.775rem; color: var(--text-muted); line-height: 1.55; }

/* ---- TOOLS ---- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: var(--transition); }
.tool-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.tool-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.tool-badge { background: rgba(245,166,35,0.1); color: var(--gold); font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; }
.tool-card h3 { font-size: 1.05rem; letter-spacing: -0.02em; }
.tool-card .tool-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.tool-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.tool-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.tool-feature { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-secondary); }
.tool-feature svg { color: var(--gold); width: 13px; height: 13px; flex-shrink: 0; }
.tool-footer { display: flex; align-items: center; justify-content: space-between; }
.tool-price { font-size: 1.15rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.tool-price span { font-size: 0.7rem; color: var(--text-muted); margin-left: 2px; }
.tool-slots { font-size: 0.7rem; color: var(--text-muted); }

/* ---- WHY SECTION ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.why-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { color: var(--gold); width: 18px; height: 18px; }
.why-card h4 { font-size: 0.9rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.why-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; text-align: center; text-decoration: none; transition: var(--transition); display: block; }
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.contact-card-icon.wa { background: rgba(37,211,102,0.12); }
.contact-card-icon.tg { background: rgba(34,158,217,0.12); }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.78rem; color: var(--text-muted); }
.contact-form-wrap { max-width: 600px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.form-input {
    width: 100%; background: var(--bg-muted); border: 1px solid var(--border);
    border-radius: 9px; padding: 11px 14px; color: var(--text-primary);
    font-family: var(--font-body); font-size: 0.875rem; transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
.form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---- FOOTER ---- */
.footer { border-top: 1px solid var(--border); padding: 36px 24px; }
.footer-container { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-desc { font-size: 0.775rem; color: var(--text-muted); max-width: 260px; line-height: 1.55; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ---- FLOAT CHAT ---- */
.float-chat {
    position: fixed; bottom: 24px; right: 24px; z-index: 800;
    width: 50px; height: 50px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
}
.float-chat:hover { background: #20b558; transform: translateY(-2px) scale(1.05); }

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 110px 24px 50px; text-align: center;
    background: radial-gradient(ellipse 60% 40% at 50% -5%, rgba(245,166,35,0.06) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); margin-bottom: 14px; letter-spacing: -0.04em; }
.page-hero p { font-size: 0.9rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }

/* ---- AGED DOMAIN ---- */
.aged-domain-coming { text-align: center; padding: 80px 24px; }
.aged-domain-coming h2 { font-size: 2rem; margin-bottom: 12px; letter-spacing: -0.03em; }
.aged-domain-coming p { color: var(--text-secondary); margin-bottom: 28px; font-size: 0.875rem; }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.d-flex { display: flex; } .align-center { align-items: center; } .flex-wrap { flex-wrap: wrap; }

/* ---- ADMIN PANEL ---- */
.admin-body { background: var(--bg-primary); min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border);
    height: 58px; display: flex; align-items: center; padding: 0 20px; gap: 16px;
}
.admin-topbar .logo { font-size: 0.95rem; }
.admin-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.admin-topbar-right a { font-size: 0.78rem; color: var(--text-secondary); }
.admin-sidebar {
    position: fixed; top: 58px; left: 0; bottom: 0;
    width: 210px; background: var(--bg-secondary);
    border-right: 1px solid var(--border); padding: 14px 10px;
    overflow-y: auto; z-index: 700; transition: transform 0.3s ease;
}
.sidebar-section { margin-bottom: 22px; }
.sidebar-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; padding: 0 8px; margin-bottom: 6px; font-weight: 700; }
.sidebar-link {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 10px; border-radius: 7px; font-size: 0.82rem;
    color: var(--text-secondary); transition: var(--transition); margin-bottom: 2px;
}
.sidebar-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.sidebar-link:hover { color: var(--text-primary); background: var(--bg-card); }
.sidebar-link.active { color: var(--gold); background: rgba(245,166,35,0.08); }
.admin-main { margin-left: 210px; margin-top: 58px; padding: 26px; min-height: calc(100vh - 58px); flex: 1; }
.admin-page-title { font-size: 1.35rem; margin-bottom: 22px; letter-spacing: -0.02em; }
.admin-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th { padding: 9px 13px; text-align: left; background: var(--bg-muted); color: var(--text-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 11px 13px; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-card); }
.admin-table .product-name { color: var(--text-primary); font-weight: 600; font-size: 0.875rem; }
.admin-table .price-col { color: var(--gold); font-weight: 700; }
.admin-badge { font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.badge-active { background: rgba(34,197,94,0.12); color: var(--green); }
.badge-inactive { background: rgba(239,68,68,0.1); color: var(--red); }
.action-btns { display: flex; gap: 6px; }
.btn-edit { padding: 5px 11px; background: var(--bg-muted); border: 1px solid var(--border); border-radius: 6px; font-size: 0.72rem; color: var(--text-secondary); cursor: pointer; transition: var(--transition); font-family: var(--font-body); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.btn-edit:hover { border-color: var(--gold); color: var(--gold); }
.btn-delete { padding: 5px 11px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.18); border-radius: 6px; font-size: 0.72rem; color: var(--red); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-delete:hover { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); }
.admin-top-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.admin-stat { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.admin-stat-value { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; letter-spacing: -0.03em; }
.admin-stat-label { font-size: 0.75rem; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.admin-form .form-group { margin-bottom: 16px; }
.admin-form .form-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 7px; }
.admin-form .form-input { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 9px; padding: 10px 13px; color: var(--text-primary); font-family: var(--font-body); font-size: 0.85rem; transition: var(--transition); }
.admin-form .form-input:focus { outline: none; border-color: var(--gold); }
.admin-form select.form-input { appearance: none; cursor: pointer; }
.form-actions { display: flex; gap: 10px; padding-top: 8px; }
.alert { padding: 11px 14px; border-radius: 9px; font-size: 0.85rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.alert svg { width: 17px; height: 17px; flex-shrink: 0; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.22); color: var(--green); }
.alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.22); color: var(--red); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-primary); padding: 24px; }
.login-box { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 38px; width: 100%; max-width: 380px; }
.login-title { font-size: 1.4rem; margin-bottom: 6px; letter-spacing: -0.03em; }
.login-sub { font-size: 0.825rem; color: var(--text-muted); margin-bottom: 26px; }
.sidebar-mobile-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text-primary); padding: 6px; border-radius: 7px; cursor: pointer; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .admin-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-order { display: none; }
    .nav-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .bl-type-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 18px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .sidebar-mobile-toggle { display: flex; }
    .float-chat { bottom: 18px; right: 18px; }
    section { padding: 56px 18px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; gap: 12px; }
    .product-card-img { height: 110px; }
    .product-card-title-area h3 { font-size: 0.72rem; }
    .product-card-body { padding: 10px; }
    .product-price { font-size: 0.95rem; }
    .btn-order-product { padding: 6px 10px; font-size: 0.7rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
    .form-btns { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .admin-table th:nth-child(3), .admin-table td:nth-child(3) { display: none; }
    .popup-order-btns { grid-template-columns: 1fr; }
}

/* ---- TOOLS CARD (fix) ---- */
.tools-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.tools-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.tools-card-header {
    padding: 24px; display: flex; align-items: flex-start; justify-content: space-between;
}
.tools-card-header h3 { font-size: 1.1rem; color: #fff; letter-spacing: -0.02em; margin-bottom: 4px; }
.tools-card-header p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.tools-card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.tools-features { display: flex; flex-direction: column; gap: 7px; }
.tools-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-secondary); }
.tools-feature svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.tools-avail { display: flex; }
.slot-badge {
    background: rgba(34,197,94,0.1); color: var(--green);
    border: 1px solid rgba(34,197,94,0.2);
    font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.tools-price { font-size: 1.2rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.tools-price small { font-size: 0.72rem; color: var(--text-muted); margin-left: 2px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- CONTACT CHANNEL (fix) ---- */
.contact-channels { display: flex; flex-direction: column; gap: 10px; }
.contact-channel {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 16px;
    transition: var(--transition); text-decoration: none;
}
.contact-channel:hover { border-color: var(--border-light); transform: translateX(2px); }
.contact-channel-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-channel-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-channel-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-top: 2px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.form-title { font-size: 1.05rem; margin-bottom: 18px; letter-spacing: -0.02em; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
textarea.form-input { resize: vertical; min-height: 100px; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #20b858; }
.btn-tg { background: #229ED9; color: #fff; }
.btn-tg:hover { background: #1a8cc0; }

/* ---- PACKAGE POPULAR BADGE (fix) ---- */
.popular-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #0a0a0c;
    font-size: 0.65rem; font-weight: 800; padding: 3px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
    .contact-form { margin-top: 8px; }
}
@media (max-width: 480px) {
    .product-card-img { height: 120px; }
    .product-card-body { padding: 14px; }
}