

:root {
    --bg:       #0A0908;
    --bg-card:  #141209;
    --border:   #2A2618;
    --gold:     #C9A84C;
    --gold-l:   #E2C06A;
    --text:     #F5F0E8;
    --muted:    #A89060;
    --dim:      #6A5A38;
    --green:    #2EAB7A;
    --yellow:   #D4920A;
    --red:      #D94040;
    --purple:   #8B7FE0;
    --radius:   8px;
    --radius-lg:14px;
    --max:      1200px;
    --font:     Georgia, 'Times New Roman', serif;
    --ui:       system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--ui); line-height: 1.6; }

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,9,8,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--border); background: rgba(10,9,8,0.95); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font); font-size: 18px; color: var(--text); }
.nav-logo em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gold) !important; color: var(--bg) !important; padding: 7px 18px; border-radius: var(--radius); font-weight: 600; font-size: 13px !important; transition: background 0.15s !important; }
.nav-cta:hover { background: var(--gold-l) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: 0.2s; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 16px; gap: 12px; border-top: 1px solid var(--border); background: rgba(10,9,8,0.98); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; color: var(--muted); text-decoration: none; padding: 6px 0; }

.hero {
    min-height: 100vh; padding: 100px 24px 60px;
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.08); padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-inner h1 { font-family: var(--font); font-size: clamp(36px, 5vw, 58px); font-weight: 700; line-height: 1.15; margin: 0 0 20px; color: var(--text); }
.hero-inner h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.7; margin: 0 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--bg); padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 15px; text-decoration: none; transition: background 0.15s, transform 0.1s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--muted); padding: 12px 24px; border-radius: var(--radius); font-size: 15px; text-decoration: none; border: 1px solid var(--border); transition: background 0.15s, color 0.15s; }
.btn-secondary:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.hero-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 20px; font-weight: 700; color: var(--gold); font-family: var(--font); }
.hero-stat span { font-size: 11px; color: var(--dim); letter-spacing: 0.5px; text-transform: uppercase; }
.hero-stat-div { width: 1px; height: 32px; background: var(--border); }

.hero-preview { display: flex; justify-content: center; }
.preview-window {
    width: 100%; max-width: 480px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.preview-bar { background: #1A1810; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.preview-dots { display: flex; gap: 5px; }
.dot-r,.dot-y,.dot-g { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #D94040; } .dot-y { background: #D4920A; } .dot-g { background: #2EAB7A; }
.preview-url { font-size: 11px; color: var(--dim); font-family: monospace; flex: 1; text-align: center; }
.preview-content { padding: 14px; }
.preview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ph-logo { font-family: var(--font); font-size: 14px; color: var(--text); }
.ph-logo em { font-style: normal; color: var(--gold); }
.ph-title { font-size: 12px; color: var(--muted); }
.ph-admin { font-size: 10px; border: 1px solid var(--border); color: var(--dim); padding: 2px 8px; border-radius: 4px; }
.preview-stats { display: flex; gap: 8px; margin-bottom: 12px; }
.ps-card { flex: 1; background: #1A1810; border: 1px solid var(--border); border-radius: 6px; padding: 8px; text-align: center; }
.ps-card strong { display: block; font-size: 18px; font-weight: 700; color: var(--text); }
.ps-card span { font-size: 9px; color: var(--dim); text-transform: uppercase; }
.ps-card.green { border-color: #2EAB7A55; } .ps-card.green strong { color: var(--green); }
.ps-card.yellow { border-color: #D4920A55; } .ps-card.yellow strong { color: var(--yellow); }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.pg-box { padding: 8px 4px; border-radius: 6px; border: 1px solid; text-align: center; font-size: 10px; font-weight: 600; line-height: 1.4; }
.pg-box small { font-weight: 400; color: inherit; opacity: 0.7; font-size: 9px; }
.pg-box.av { background: #0A2E1E; border-color: #2EAB7A55; color: var(--green); }
.pg-box.so { background: #2A1E04; border-color: #D4920A55; color: var(--yellow); }
.pg-box.un { background: #220A0A; border-color: #D9404055; color: var(--red); }
.pg-box.re { background: #130F2A; border-color: #8B7FE055; color: var(--purple); }

.section-inner { max-width: var(--max); margin: 0 auto; padding: 80px 24px; }
.section-label { font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-inner h2 { font-family: var(--font); font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin: 0 0 14px; color: var(--text); }
.section-sub { font-size: 16px; color: var(--muted); margin: 0 0 48px; max-width: 560px; }

.features { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-2px); }
.feature-icon { width: 42px; height: 42px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.icon-grid::after  { content: "⊞"; color: var(--gold); }
.icon-clock::after { content: "◷"; color: var(--gold); }
.icon-price::after { content: "€"; color: var(--gold); font-weight: 700; }
.icon-mail::after  { content: "✉"; color: var(--gold); }
.icon-admin::after { content: "⊙"; color: var(--gold); }
.icon-design::after{ content: "◈"; color: var(--gold); }
.icon-lock::after  { content: "⚿"; color: var(--gold); }
.icon-mobile::after{ content: "▤"; color: var(--gold); }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: start; margin-bottom: 32px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.step-num { font-family: var(--font); font-size: 36px; font-weight: 700; color: rgba(201,168,76,0.25); line-height: 1; margin-bottom: 12px; }
.step-content h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 8px; }
.step-content p { font-size: 14px; color: var(--muted); margin: 0 0 12px; line-height: 1.6; }
.step-link { font-size: 13px; color: var(--gold); text-decoration: none; }
.step-link:hover { text-decoration: underline; }
.step-arrow { font-size: 24px; color: var(--dim); padding-top: 40px; }
.code-block { display: flex; align-items: center; background: #0A0908; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 12px; gap: 8px; margin-top: 8px; }
.code-block code { font-family: 'Courier New', monospace; font-size: 12px; color: var(--gold); flex: 1; word-break: break-all; }
.copy-btn { background: none; border: 1px solid var(--border); color: var(--dim); border-radius: 4px; padding: 4px 8px; cursor: pointer; font-size: 14px; flex-shrink: 0; transition: color 0.15s, border-color 0.15s; }
.copy-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.install-note { background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 14px 18px; font-size: 13px; color: var(--muted); line-height: 1.6; }

.pricing { background: var(--bg-card); border-top: 1px solid var(--border); }
.pricing-cards { display: flex; justify-content: center; margin-bottom: 24px; }
.pricing-card { background: var(--bg); border: 2px solid rgba(201,168,76,0.4); border-radius: var(--radius-lg); padding: 36px; max-width: 420px; width: 100%; }
.pricing-name { font-family: var(--font); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.price-shop { display: block; font-size: 16px; color: var(--gold); text-decoration: none; font-weight: 600; margin-bottom: 24px; }
.price-shop:hover { text-decoration: underline; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.pricing-note { text-align: center; font-size: 13px; color: var(--dim); }

.footer { border-top: 1px solid var(--border); padding: 28px 24px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 16px; color: var(--text); text-decoration: none; }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--dim); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--dim); }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 80px; }
    .hero-preview { order: -1; }
    .steps { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-stats { gap: 14px; }
    .hero-stat-div { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}
