:root {
    --bg: #07080c; --surface: rgba(255, 255, 255, 0.025); --surface-hover: rgba(255, 255, 255, 0.05);
    --card-bg: rgba(15, 17, 26, 0.65); --text: #f4f4f5; --muted: #a1a1aa; --soft: #71717a;
    --border: rgba(255, 255, 255, 0.08); --border-glow: rgba(214, 189, 122, 0.35);
    --accent: #d6bd7a; --accent-light: #f0e4be; --radius-xl: 22px; --radius-lg: 16px; --radius-md: 12px; --max-w: 1000px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; background: var(--bg); color: var(--text);
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    line-height: 1.55; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max-w), calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(7, 8, 12, 0.92);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.header-inner { min-height: 70px; padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name strong { font-size: 1.05rem; font-weight: 800; color: #fff; display: block; }
.brand-name span { color: var(--soft); font-size: 0.75rem; display: block; }
.phone-block { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.phone-block a { font-weight: 800; font-size: 0.95rem; color: #fff; }
.phone-block span { color: var(--soft); font-size: 0.7rem; }
.btn {
    height: 44px; padding: 0 20px; border-radius: 9999px; font-weight: 700; font-size: 0.88rem;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, #f0e4be 0%, #d6bd7a 100%); color: #07080c; }
.btn-ghost { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.btn-wa { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); color: #4ade80; }
.btn-tg { background: rgba(56, 189, 248, 0.15); border: 1px solid rgba(56, 189, 248, 0.4); color: #38bdf8; }
.badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 9999px;
    background: rgba(214, 189, 122, 0.08); border: 1px solid rgba(214, 189, 122, 0.22);
    color: var(--accent); font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.page-hero { padding: 45px 0 35px; text-align: center; }
.breadcrumbs { font-size: 0.8rem; color: var(--soft); margin-bottom: 16px; }
.breadcrumbs a:hover { color: var(--accent); }
.page-title {
    font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.15;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.72) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 12px 0;
}
.page-lead { color: var(--muted); font-size: 1rem; max-width: 720px; margin: 0 auto 24px; }
.content-card {
    background: var(--card-bg); border: 1px solid var(--border-glow); border-radius: var(--radius-xl);
    padding: 32px; backdrop-filter: blur(20px); margin-bottom: 30px;
}
.price-tag {
    font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 12px 0; display: inline-block;
}
.specs-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
.specs-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.specs-table td:first-child { color: var(--soft); width: 45%; }
.specs-table td:last-child { font-weight: 700; color: #fff; }
.cta-box {
    background: linear-gradient(135deg, rgba(214, 189, 122, 0.08) 0%, rgba(56, 189, 248, 0.05) 100%);
    border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 24px; text-align: center; margin-top: 24px;
}
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.site-footer { padding: 32px 0; border-top: 1px solid var(--border); color: var(--soft); font-size: 0.85rem; text-align: center; margin-top: 40px; }
@media (max-width: 640px) {
    .phone-block { display: none !important; }
    .content-card { padding: 20px 16px; }
    .cta-buttons .btn { width: 100%; }
}
