/* ═══════════════════════════════════════════
   MEDIA IT NETWORK – Premium Dark Theme
   Colors derived from logo: Navy, Cyan, Blue
   ═══════════════════════════════════════════ */

:root {
    --navy: #0C0E2B;
    --navy-light: #131640;
    --navy-mid: #1A1E50;
    --cyan: #00B4DC;
    --cyan-light: #33D4F0;
    --cyan-dim: rgba(0,180,220,0.15);
    --blue: #3C5AD2;
    --blue-light: #5A7AE8;
    --gradient: linear-gradient(135deg, var(--cyan), var(--blue));
    --white: #FFFFFF;
    --off-white: #E8EDF5;
    --gray: #8892A8;
    --gray-dark: #5A6380;
    --border: rgba(0,180,220,0.12);
    --glow: 0 0 30px rgba(0,180,220,0.15);
    --font-display: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-h: 90px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--off-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

::selection { background: rgba(0,180,220,0.3); color: var(--white); }

/* ═══════════ NAVIGATION ═══════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5%; display: flex; justify-content: space-between; align-items: center;
    height: var(--nav-h); transition: all 0.5s var(--ease);
}
nav.scrolled {
    background: rgba(12,14,43,0.92); backdrop-filter: blur(25px);
    box-shadow: 0 1px 0 var(--border); height: 70px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 68px; width: auto; transition: height 0.4s var(--ease); }
nav.scrolled .nav-logo-img { height: 46px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gray); transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 1.5px;
    background: var(--gradient); transition: all 0.4s var(--ease); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gradient) !important; color: var(--white) !important;
    padding: 0.65rem 1.8rem !important; letter-spacing: 0.15em !important;
    border: none !important; transition: all 0.4s var(--ease) !important;
    font-weight: 600 !important;
}
.nav-cta:hover { box-shadow: 0 0 25px rgba(0,180,220,0.3) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }
.menu-toggle span { width: 26px; height: 1.5px; background: var(--gray); transition: all 0.4s var(--ease); display: block; }

/* ═══════════ HERO ═══════════ */
html { scroll-behavior: smooth; }

.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: calc(var(--nav-h) + 2rem) 5% 4rem; position: relative; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0,180,220,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(60,90,210,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(0,180,220,0.03) 0%, transparent 40%);
}

.hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.04;
    background-image:
        linear-gradient(rgba(0,180,220,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,220,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hero Particles Canvas */
#heroParticles {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1.2rem; color: var(--white);
}

/* 5. Animated Gradient Shimmer Headline */
.hero h1 .accent {
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan), var(--blue));
    background-size: 300% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.85;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2.4rem; background: var(--gradient);
    color: var(--white); font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.4s var(--ease);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(0,180,220,0.3); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2.4rem; background: transparent;
    color: var(--gray); font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    border: 1px solid var(--border); cursor: pointer; transition: all 0.4s var(--ease);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ═══════════ SECTION BASICS ═══════════ */
.section { padding: 5rem 5%; }
.section-label {
    font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--cyan); }
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }

.section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.section-title .accent {
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: shimmer 6s ease-in-out infinite;
}
.section-text { font-size: 0.92rem; color: var(--gray); max-width: 600px; line-height: 1.85; }

/* ═══════════ REGIONS STRIP ═══════════ */
.regions {
    padding: 1.5rem 5%; display: flex; justify-content: center; align-items: center; gap: 2rem;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: rgba(0,180,220,0.02); flex-wrap: wrap;
}
.region-tag {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray); padding: 0.4rem 1.2rem; border: 1px solid var(--border);
    transition: all 0.3s;
}
.region-tag:hover { border-color: var(--cyan); color: var(--cyan); }

/* ═══════════ SERVICES ═══════════ */
.services-section { padding: 5rem 5%; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-text { margin: 0 auto; }

.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
}

/* 4. Glassmorphism Service Cards */
.service-card {
    background: rgba(19,22,64,0.45); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,180,220,0.08);
    padding: 2.5rem 2rem; transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card::after {
    content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,180,220,0.06), transparent 40%);
    pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,180,220,0.08), 0 0 40px rgba(0,180,220,0.04); border-color: rgba(0,180,220,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; border: 1px solid var(--border); color: var(--cyan);
    background: rgba(0,180,220,0.04); transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
    border-color: rgba(0,180,220,0.3); box-shadow: 0 0 20px rgba(0,180,220,0.1);
    background: rgba(0,180,220,0.08);
}
.service-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.75; }

/* ═══════════ STATS ═══════════ */
.stats-section {
    padding: 4rem 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    max-width: 1000px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-number {
    font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700; background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-top: 0.3rem; }

/* ═══════════ ABOUT / WARUM ═══════════ */
.about-section { padding: 5rem 5%; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    max-width: 1100px; margin: 0 auto; align-items: center;
}
.about-content .section-text { margin-bottom: 2rem; }

.about-features { display: flex; flex-direction: column; gap: 1.2rem; }
.about-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.5rem; border: 1px solid var(--border);
    background: rgba(19,22,64,0.4); transition: all 0.4s;
}
.about-feature:hover { border-color: rgba(0,180,220,0.25); }
.about-feature-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.about-feature-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.about-feature h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

.about-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.about-logo-large {
    max-width: 320px; opacity: 0.9; filter: drop-shadow(0 20px 60px rgba(0,180,220,0.15));
}
.about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid var(--border);
}
.about-stat .num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); }
.about-stat .lbl { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

/* ═══════════ FAQ ═══════════ */
.faq-section { padding: 5rem 5%; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }

.faq-item { border: 1px solid var(--border); background: rgba(19,22,64,0.4); overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: var(--glow); border-color: rgba(0,180,220,0.25); }

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.3rem 1.5rem; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--white);
    text-align: left; gap: 1rem;
}
.faq-question svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.5; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-question:hover { color: var(--cyan); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 1.5rem 1.3rem; font-size: 0.85rem; color: var(--gray); line-height: 1.85; }
.faq-answer a { color: var(--cyan); }

/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
    padding: 5rem 5%; text-align: center; position: relative; overflow: hidden;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: rgba(0,180,220,0.02);
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.cta-section p { font-size: 0.92rem; color: var(--gray); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════ CONTACT SECTION ═══════════ */
.contact-section { padding: 5rem 5%; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem;
    max-width: 900px; margin: 0 auto;
}
.contact-card {
    padding: 2rem; border: 1px solid var(--border); background: rgba(19,22,64,0.4);
    text-align: center; transition: all 0.4s;
}
.contact-card:hover { border-color: rgba(0,180,220,0.25); transform: translateY(-3px); }
.contact-card-icon { color: var(--cyan); margin-bottom: 1rem; }
.contact-card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.82rem; color: var(--gray); }
.contact-card a { color: var(--cyan); transition: color 0.3s; }
.contact-card a:hover { color: var(--white); }

/* ═══════════ FOOTER ═══════════ */
footer {
    padding: 3rem 5% 2rem; border-top: 1px solid var(--border);
    background: rgba(8,10,30,0.5);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    max-width: 1100px; margin: 0 auto;
}
.footer-brand { }
.footer-logo { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.78rem; color: var(--gray-dark); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.78rem; color: var(--gray-dark); transition: color 0.3s; }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.68rem; color: var(--gray-dark); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--gray-dark); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ═══════════ COOKIE BANNER ═══════════ */
.cookie-overlay {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 1.5rem 5%; background: rgba(12,14,43,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transform: translateY(100%); opacity: 0;
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
    pointer-events: none;
}
.cookie-overlay.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; max-width: 1100px; margin: 0 auto; }
.cookie-text { font-size: 0.78rem; color: var(--gray); max-width: 600px; line-height: 1.7; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* ═══════════ PAGE HEROES (sub-pages) ═══════════ */
.page-hero {
    padding: calc(var(--nav-h) + 3rem) 5% 3rem; text-align: center;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(0,180,220,0.05) 0%, transparent 50%);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3rem); font-weight: 600; color: var(--white); margin-bottom: 0.6rem; position: relative; }
.page-hero p { font-size: 0.92rem; color: var(--gray); max-width: 550px; margin: 0 auto; position: relative; }

/* ═══════════ BEWERBEN / CAREER ═══════════ */
.career-section { padding: 4rem 5%; }
.career-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.career-card {
    padding: 2.5rem 2rem; border: 1px solid var(--border);
    background: rgba(19,22,64,0.4); transition: all 0.5s;
}
.career-card:hover { border-color: rgba(0,180,220,0.25); transform: translateY(-3px); box-shadow: var(--glow); }
.career-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.career-card .tag { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.8rem; display: block; }
.career-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.2rem; }
.career-card ul { list-style: none; margin-bottom: 1.5rem; }
.career-card li { font-size: 0.78rem; color: var(--gray); padding: 0.25rem 0; padding-left: 1.2rem; position: relative; }
.career-card li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border: 1px solid var(--cyan); }

/* ═══════════ CONTACT FORM ═══════════ */
.form-section { padding: 4rem 5%; }
.form-wrap { max-width: 650px; margin: 0 auto; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.9rem 1rem; background: rgba(19,22,64,0.6);
    border: 1px solid var(--border); color: var(--white); font-family: var(--font-body);
    font-size: 0.85rem; outline: none; transition: border 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════ LEGAL PAGES ═══════════ */
.legal-section { padding: 3rem 5%; max-width: 800px; margin: 0 auto; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin: 2rem 0 0.8rem; }
.legal-section h3 { font-size: 1rem; font-weight: 600; color: var(--off-white); margin: 1.5rem 0 0.5rem; }
.legal-section p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 0.8rem; }
.legal-section ul { list-style: none; margin: 0.5rem 0 1rem 0; }
.legal-section li { font-size: 0.85rem; color: var(--gray); padding: 0.2rem 0 0.2rem 1.2rem; position: relative; }
.legal-section li::before { content: '—'; position: absolute; left: 0; color: var(--cyan); }
.legal-section a { color: var(--cyan); }

/* ═══════════ SEO TEXT ═══════════ */
.seo-section { padding: 4rem 5%; max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border); }
.seo-section h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.seo-section p { font-size: 0.85rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 1rem; }
.seo-section strong { color: var(--gray); }

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* 8. Staggered Reveal for grids */
.services-grid .service-card.reveal.visible,
.career-grid .career-card.reveal.visible { opacity: 1; transform: translateY(0); }
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

/* 9. Page Loader */
.page-loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--navy); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1.5rem;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader img { width: 90px; height: auto; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-bar { width: 120px; height: 2px; background: rgba(0,180,220,0.15); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0; background: var(--gradient); border-radius: 2px; animation: loaderFill 1.2s var(--ease) forwards; }
@keyframes loaderPulse { 0%, 100% { opacity: 0.4; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1); } }
@keyframes loaderFill { 0% { width: 0; } 100% { width: 100%; } }

/* 6. Process Timeline */
.process-section { padding: 5rem 5%; }
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    max-width: 1000px; margin: 0 auto; position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
    opacity: 0.3;
}
.process-step {
    text-align: center; padding: 0 1rem; position: relative;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.25s; }
.process-step:nth-child(3) { transition-delay: 0.4s; }
.process-step:nth-child(4) { transition-delay: 0.55s; }

.process-number {
    width: 72px; height: 72px; margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
    color: var(--cyan); border: 1px solid rgba(0,180,220,0.2);
    background: rgba(0,180,220,0.04); backdrop-filter: blur(10px);
    border-radius: 50%; position: relative; z-index: 1;
    transition: all 0.5s var(--ease);
}
.process-step:hover .process-number {
    border-color: var(--cyan); box-shadow: 0 0 30px rgba(0,180,220,0.15);
    background: rgba(0,180,220,0.1); transform: scale(1.08);
}
.process-step h4 {
    font-family: var(--font-display); font-size: 0.95rem;
    font-weight: 600; color: var(--white); margin-bottom: 0.4rem;
}
.process-step p { font-size: 0.75rem; color: var(--gray); line-height: 1.7; }

/* ═══════════ TELEKOM PARTNER ═══════════ */
.telekom-section { padding: 4rem 8%; border-top: 1px solid var(--border); }
.telekom-wrap {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; gap: 3rem;
}
.telekom-text { flex: 1; }
.telekom-logo-link {
    flex-shrink: 0; padding: 2rem 2.5rem;
    background: #fff; border-radius: 12px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    display: flex; align-items: center; justify-content: center;
}
.telekom-logo-link:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,180,220,0.12); }
.telekom-logo-img { width: 220px; height: auto; display: block; }

@media (max-width: 768px) {
    .telekom-wrap { flex-direction: column; text-align: center; gap: 2rem; }
    .telekom-text .section-label { text-align: center; margin-left: auto; margin-right: auto; }
    .telekom-text .section-title { text-align: center; }
    .telekom-text p { text-align: center; }
    .telekom-text .btn-primary { width: 100%; max-width: 280px; margin: 0 auto; justify-content: center; }
    .telekom-logo-link { padding: 1.5rem 2rem; }
    .telekom-logo-img { width: 180px; }
}

/* ═══════════ ACCESSIBILITY ═══════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════ DIVIDER LINE ═══════════ */
.divider { width: 60px; height: 1px; background: var(--gradient); margin: 0 auto 2rem; }

/* ═══════════ FORM SELECT STYLING ═══════════ */
.form-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238892A8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ═══════════ SMOOTH PAGE TRANSITIONS ═══════════ */
.hero-content .reveal { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.4s; }

/* ═══════════ SUBTLE GLOW ON BUTTONS ═══════════ */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }

/* ═══════════ RESPONSIVE ═══════════ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .process-grid::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { order: -1; }
    .about-logo-large { max-width: 200px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --nav-h: 65px; }

    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: rgba(12,14,43,0.98); backdrop-filter: blur(30px);
        flex-direction: column; padding: 6rem 2rem 2rem; gap: 1.5rem;
        transition: right 0.5s var(--ease); border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 0.85rem; letter-spacing: 0.22em; }
    .nav-cta { width: 100%; justify-content: center; }

    .hero { min-height: auto; padding: calc(var(--nav-h) + 3rem) 6% 3rem; }
    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .hero p { font-size: 0.88rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }

    .regions { gap: 0.5rem; padding: 1rem 3%; }
    .region-tag { font-size: 0.55rem; padding: 0.3rem 0.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }

    .stats-section { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    .faq-question { padding: 1rem 1.2rem; font-size: 0.84rem; }
    .faq-answer p { padding: 0 1.2rem 1rem; }

    .cta-buttons { flex-direction: column; align-items: center; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }

    .page-hero { padding: calc(var(--nav-h) + 2rem) 6% 2rem; }
    .page-hero h1 { font-size: 1.6rem; }

    .career-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-grid::before { display: none; }
    .process-number { width: 56px; height: 56px; font-size: 1.1rem; }

    .page-loader img { width: 60px; }
    .loader-bar { width: 80px; }
}

@media (max-width: 400px) {
    .hero-badge { font-size: 0.55rem; padding: 0.4rem 1rem; }
    .stat-number { font-size: 2rem; }
}
