:root {
    --dark: #1e293b;
    --darker: #0f172a;
    --purple: #7c3aed;
    --purple-hover: #6d28d9;
    --light: #f8fafc;
    --gray: #94a3b8;
    --border: #334155;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

h1, h2, h3, h4 {
    margin-top: 0;
    font-weight: 700;
}

/* HEADER */
.corporate-header {
    background-color: var(--darker);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: -0.02em;
}

nav a {
    margin-left: 2rem;
    font-size: 0.95rem;
    color: var(--gray);
}

nav a:hover {
    color: var(--purple);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--darker) 0%, #2e1065 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-sub {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.125rem;
}

/* STATS */
.stats-section {
    background-color: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SECTIONS GENERAL */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.bg-alt {
    background-color: #1a2436;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--darker);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: var(--purple);
}

.feature-card h3 {
    color: var(--purple);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* PROZESSE */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.process-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* TIMELINE */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--gray);
    margin: 0;
}

/* SOLUTIONS */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-grid img {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.solution-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-detail {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--darker);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
}

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

.form-check {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-check a {
    color: var(--purple);
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--purple);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--purple-hover);
}

/* FOOTER */
.corporate-footer {
    background-color: var(--darker);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.footer-col a:hover {
    color: var(--purple);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    color: var(--gray);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--darker);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    z-index: 9999;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-buttons button {
    flex: 1;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}

.cookie-buttons button:first-child {
    background-color: var(--purple);
    color: white;
    border: none;
}

.cookie-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid var(--gray);
    color: var(--gray);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .features-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .features-grid, .stats-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    nav a {
        margin: 0 0.5rem;
    }
}