* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important;
    -webkit-user-select: none;
    user-select: none;
}

a, button, .btn, .hamburger {
    cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, p, span, li, div, section, footer, nav, main, header {
    cursor: default !important;
}

input, textarea {
    cursor: text !important;
    -webkit-user-select: auto;
    user-select: auto;
}

:root {
    --blue: #004B93;
    --blue-dark: #002d5a;
    --blue-light: #0066CC;
    --red: #B22234;
    --red-dark: #8b1a29;
    --white: #ffffff;
    --gray-bg: #f5f7fa;
    --text: #1a1a1a;
    --text-light: #555;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAV */
nav {
    background: var(--blue-dark);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--red);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    padding: 0.6rem 0;
}

.nav-logo img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.nav-links {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
}

.nav-links.open {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 1rem 2rem;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border-left-color: rgba(178,34,52,0.5);
}

.nav-links a.active {
    color: var(--white);
    border-left-color: var(--red);
    background: rgba(255,255,255,0.08);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem 6rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    background: none;
    border: none;
    outline: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 0.75rem;
}

.hero-slogan {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.btn {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.85rem 2.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
}

.btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178,34,52,0.3);
}

/* FEATURES */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,75,147,0.1);
}

.feature-card h3 {
    color: var(--blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* PAGE CONTENT */
.page-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 3rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.page-header p {
    opacity: 0.85;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.page-header .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.page-header .wave svg {
    width: 100%;
    height: 60px;
}

.page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* PROGRAM BLOCKS */
.program-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border-left: 4px solid var(--blue);
}

.program-block h2 {
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.program-block p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* PRIORITY LIST */
.priority-list {
    counter-reset: priority;
    list-style: none;
}

.priority-item {
    counter-increment: priority;
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    background: var(--gray-bg);
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--red);
}

.priority-item::before {
    content: counter(priority);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.priority-item h3 {
    color: var(--blue);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.priority-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* NOTES */
.notes-section {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border-left: 4px solid var(--red);
}

.notes-section h2 {
    color: var(--blue);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.notes-section ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.notes-section li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* KONTAKT */
.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}

.kontakt-info a {
    color: var(--blue);
    text-decoration: none;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

/* FORMS */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #dde3ea;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
    cursor: text !important;
    -webkit-user-select: auto;
    user-select: auto;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
    cursor: pointer !important;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer !important;
    -webkit-user-select: auto;
    user-select: auto;
}

.form-checkbox label a {
    color: var(--blue);
}

/* FOOTER */
footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
}

footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .priority-item {
        padding-left: 4rem;
    }

    .form-row {
        flex-direction: column;
    }
}
