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

:root {
    --primary-navy: #001C40;
    --primary-turquoise: #00B5C8;
    --accent-coral: #FF6B6B;
    --accent-coral-hover: #ff5252;
    --text-dark: #1C1F2A;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-gradient-start: #E0F2FE;
    --bg-gradient-end: #FFFFFF;
    --success-green: #4CAF50;
    --error-red: #f44336;
    --admin-dark: #0A2540;
    --admin-cyan: #1DB3C8;
    --admin-cyan-hover: #17a1b5;
    --navy-dark: #001C40;
    --violet: #8B5CF6;
    --violet-hover: #7C3AED;
    --amber: #F59E0B;
    --amber-hover: #D97706;
    --emerald: #10B981;
    --emerald-hover: #059669;
    --bg-ice: #E3EEF5;
    --text-on-dark: #FFFFFF;
}

/* Skip Navigation Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-turquoise);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-coral);
    outline-offset: 2px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
}

h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.2; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.3; }
h3 { font-size: clamp(24px, 3vw, 32px); line-height: 1.4; }

.accent {
    color: var(--primary-turquoise);
}

.number-accent {
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    color: var(--primary-turquoise);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(0, 28, 64, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 28, 64, 0.06);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-center {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-center a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-turquoise);
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: var(--primary-turquoise);
}

.nav-center a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 181, 200, 0.1);
    color: var(--primary-turquoise);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 181, 200, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero p {
    font-size: 20px;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent-coral);
    color: white;
    border: 2px solid var(--accent-coral);
}

.cta-button.primary:hover {
    background: var(--accent-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.cta-button.outline:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 28, 64, 0.2);
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 181, 200, 0.3);
    border: 5px solid var(--primary-turquoise);
    margin: 0 auto;
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(0, 181, 200, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-highlight {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-turquoise);
    margin-top: 2rem;
}

/* Fokus Section */
.fokus {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.fokus-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fokus h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.fokus-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.fokus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.fokus-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 28, 64, 0.08);
}

.fokus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--accent-coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fokus-card:hover::before {
    transform: scaleX(1);
}

.fokus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 181, 200, 0.15);
}

.fokus-number {
    font-size: 56px;
    font-family: 'Space Grotesk', monospace;
    color: var(--primary-turquoise);
    opacity: 0.15;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
}

.fokus-card h3 {
    color: var(--primary-navy);
    font-size: 24px;
    margin-bottom: 1rem;
}

.fokus-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    position: relative;
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--accent-coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 12px 12px 0 0;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover,
.service-item:focus {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 181, 200, 0.15);
    outline: none;
}

.service-item:focus-visible {
    outline: 3px solid var(--primary-turquoise);
    outline-offset: 2px;
}

/* Contact Section */
.contact {
    padding: 3rem 5% 4rem;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(32px, 4vw, 40px);
}

.contact > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 50px rgba(0, 28, 64, 0.1);
}

.form-group {
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 181, 200, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    padding: 0.85rem 2.5rem;
    background: var(--accent-coral);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0rem;
}

.submit-button:hover {
    background: var(--accent-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#formMessage {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

/* Form Select Dropdown */
.form-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 181, 200, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-light);
    font-size: 13px;
}

/* Honeypot (hidden anti-spam field) */
.honeypot {
    display: none !important;
    position: absolute;
    left: -9999px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet/Laptop Responsive */
@media (max-width: 1439px) {
    .fokus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        border-left: 1px solid rgba(0, 28, 64, 0.1);
        transition: right 0.3s;
        align-items: flex-start;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 28, 64, 0.1);
    }

    .nav-center.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        padding: 0;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
    }

    .hero {
        padding: 6rem 5% 4rem;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
}

/* Footer */
.site-footer {
    background: #003857;
    color: #C3C1C3;
    padding: 40px 16px 28px;
    border-top: 1px solid #016387;
    position: relative;
    width: 100%;
}

.site-footer .footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.site-footer .footer-brand .brand.speck {
    color: #003857;
    background: #C3C1C3;
    padding: 0 6px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-footer .footer-brand .brand.trum {
    color: #1CA0BF;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.site-footer .footer-claim {
    color: #C3C1C3;
    font-size: 14px;
    margin-top: 6px;
    opacity: .9;
}

.site-footer .footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer .footer-legal a,
.site-footer .footer-legal .cookie-btn {
    color: #C3C1C3;
    text-decoration: none;
    font-size: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.site-footer .footer-legal a:hover,
.site-footer .footer-legal .cookie-btn:hover {
    color: #1CA0BF;
}

.site-footer .footer-legal .dot {
    opacity: .6;
}

.site-footer .footer-bottom {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #C3C1C3;
    opacity: .9;
}

@media(max-width:600px) {
    .site-footer .footer-top {
        gap: 20px;
    }
}

/* Legal Pages */
.legal-page {max-width:800px;margin:0 auto;padding:60px 20px;font-family:'Inter',sans-serif;line-height:1.8;}
.legal-page h1 {color:#003857;margin-bottom:24px;font-size:36px;}
.legal-page h2 {color:#016387;margin-top:32px;margin-bottom:16px;font-size:24px;}
.legal-page p {margin-bottom:16px;color:#424145;}
.legal-page ul {margin-left:20px;margin-bottom:16px;}
.legal-page ul li {margin-bottom:8px;color:#424145;}
