@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
    --bg-dark: #0A0B0D;
    --bg-card: #13151B;
    --accent-gold: #C5A059;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(197, 160, 89, 0.3);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background-color: var(--bg-dark); color: var(--text-primary); font-family: var(--font-main); overflow-x: hidden; }
body { background-color: var(--bg-dark); color: var(--text-primary); line-height: 1.6; }

.custom-cursor { width: 12px; height: 12px; background: var(--accent-gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
.cursor-follower { width: 40px; height: 40px; border: 1px solid var(--border-gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: transform 0.2s ease-out; }

.navbar { position: fixed; top: 0; width: 100%; padding: 24px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(10, 11, 13, 0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.logo-icon { width: 36px; height: 36px; background: var(--accent-gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 900; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; text-transform: uppercase; }
.nav-links a.active, .nav-links a:hover { color: var(--accent-gold); }
.nav-btn { padding: 10px 24px; border: 1px solid var(--accent-gold); border-radius: 30px; color: var(--accent-gold) !important; }

.hero { min-height: 100vh; padding: 160px 5% 80px; display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 60%); }
.hero-tag { padding: 6px 16px; background: rgba(197, 160, 89, 0.1); border: 1px solid var(--border-gold); border-radius: 20px; color: var(--accent-gold); font-size: 13px; font-weight: 600; width: fit-content; margin-bottom: 24px; text-transform: uppercase; }
.hero-title { font-size: clamp(40px, 6vw, 76px); font-weight: 800; line-height: 1.1; max-width: 900px; margin-bottom: 24px; }
.hero-title span { color: var(--accent-gold); font-family: var(--font-serif); font-style: italic; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 650px; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 20px; }
.btn-primary { padding: 16px 36px; background: var(--accent-gold); color: #000; font-weight: 700; border-radius: 30px; text-decoration: none; }
.btn-secondary { padding: 16px 36px; border: 1px solid var(--border-color); color: #fff; font-weight: 600; border-radius: 30px; text-decoration: none; }

.hero-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.metric-card h3 { font-size: 38px; color: var(--accent-gold); }
.metric-card p { color: var(--text-secondary); font-size: 14px; }

section { padding: 120px 5%; }
.section-header { margin-bottom: 60px; }
.section-label { color: var(--accent-gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.section-title { font-size: 36px; font-weight: 700; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: 0.4s; }
.product-card:hover { transform: translateY(-8px); border-color: var(--border-gold); }
.product-img-wrapper { height: 260px; position: relative; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 16px; right: 16px; padding: 4px 12px; background: rgba(0,0,0,0.8); border: 1px solid var(--border-gold); border-radius: 20px; color: var(--accent-gold); font-size: 11px; }
.product-content { padding: 24px; }
.product-title { font-size: 20px; margin-bottom: 8px; }
.product-desc { color: var(--text-secondary); font-size: 14px; }

.configurator-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.config-preview { height: 350px; background: #0A0B0D; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.door-model { width: 180px; height: 280px; background: #2D221E; border-radius: 8px; position: relative; transition: 0.4s; border: 3px solid #111; }
.door-handle { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 10px; height: 50px; background: var(--accent-gold); border-radius: 2px; transition: 0.4s; }
.config-controls { display: flex; flex-direction: column; gap: 20px; }
.control-group label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--text-secondary); }
.option-btns { display: flex; gap: 10px; }
.opt-btn { padding: 10px 16px; background: #1A1D26; border: 1px solid var(--border-color); border-radius: 8px; color: #fff; cursor: pointer; }
.opt-btn.active { border-color: var(--accent-gold); color: var(--accent-gold); }

footer { padding: 40px 5%; border-top: 1px solid var(--border-color); text-align: center; color: var(--text-secondary); font-size: 14px; }