:root {
    --bg: #0a0c12;
    --bg-soft: #12141c;
    --bg-contrast: #1a1d27;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --accent: #ffffff;
    --radius: 14px;
    --radius-sm: 8px;
    --border: #2a2d38;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.55;
}

/* Containers */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 12, 18, 0.92);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    padding: 14px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { font-weight: 700; font-size: 1.1rem; letter-spacing: 0.1em; }

/* NAV */
.nav { display: flex; gap: 24px; }
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.nav a:hover { color: var(--accent); }

/* MOBILE NAV */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--text);
}

/* INTRO */
.section { padding: 100px 0; }
.section-title {
    font-size: 2rem; font-weight: 600;
    margin-bottom: 24px;
}
.section-title.center { text-align: center; }

.intro-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.intro-left { max-width: 600px; }
.intro-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 20px 0 20px;
}
.intro-text { max-width: 500px; color: var(--text-muted); }

.intro-actions { display: flex; gap: 16px; margin-top: 28px; }

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.btn.small { padding: 8px 16px; }

/* STATS */
.intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 180px;
}
.stat { background: var(--bg-soft); padding: 18px; border-radius: var(--radius); }
.stat-number { font-size: 1.8rem; font-weight: 600; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* PROBLEM */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.problem-col h3 { margin-bottom: 12px; }
.problem-col ul { padding-left: 18px; }

/* FRAMEWORK */
.framework {
    background: var(--bg-soft);
}
.fw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.fw-step {
    background: var(--bg-contrast);
    padding: 24px;
    border-radius: var(--radius);
}
.fw-number {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.6;
}

/* PACKAGES */
.pakete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.pkg {
    background: var(--bg-soft);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.pkg-main {
    background: #ffffff;
    color: #000;
}
.pkg-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
}
.pkg-price { font-size: 1.6rem; margin: 16px 0; }

/* PROCESS */
.prozess-list {
    border-left: 2px solid var(--border);
    margin-left: 20px;
    padding-left: 20px;
    margin-top: 40px;
}
.prozess-item { margin-bottom: 32px; }
.p-num {
    font-size: 1.2rem;
    opacity: 0.5;
}
.p-body h3 { margin-bottom: 6px; }

/* KONTAKT */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.kontakt-box {
    background: var(--bg-soft);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 20px;
}
.form { display: flex; flex-direction: column; gap: 18px; }
.form-field label { display: block; margin-bottom: 6px; color: var(--text-muted); }
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-contrast);
    color: var(--text);
}

/* FOOTER */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-links { display: flex; gap: 16px; }

/* COOKIE */
.cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-soft);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    width: 260px;
    display: none;
}
.cookie-actions { margin-top: 12px; display: flex; justify-content: space-between; }
