/* ═══════════════════════════════════════════════════
   NetzRecruiter — styles.css
   ═══════════════════════════════════════════════════ */

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

:root {
    --primary: #ffffff;
    --secondary: #f8fafc;
    --accent: #2563eb;
    --accent-2: #7c3aed;
    --accent-3: #ec4899;
    --text: #1e293b;
    --text-muted: #64748b;
    --success: #10b981;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Animated Background ─────────────────────────── */
.animated-bg {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
}

.bg-gradient {
    position: absolute; width: 200%; height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%       { transform: translate(-5%, -10%) rotate(120deg); }
    66%       { transform: translate(5%, 5%) rotate(240deg); }
}

.bg-grid {
    position: absolute; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ── Navigation ──────────────────────────────────── */
nav {
    position: fixed; top: 0; width: 100%;
    padding: 1.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.logo {
    font-size: 1.8rem; font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3)); }
    50%       { filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.4)); }
}

.logo img {
    height: 25px;
    width: auto;
    display: block;
}

.nav-links { display: flex; gap: 3rem; list-style: none; }

.nav-links a {
    color: var(--text); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; padding: 0.5rem 0;
}

.nav-links a::before {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::before { width: 100%; }
.nav-links a:hover { color: var(--accent); transform: translateY(-2px); }

.nav-cta { display: flex; gap: 1rem; align-items: center; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    padding: 0.9rem 2rem; border: none; border-radius: 12px;
    font-weight: 600; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem; font-family: 'Poppins', sans-serif;
    position: relative; overflow: hidden;
}

.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; background: rgba(255, 255, 255, 0.2);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--secondary); color: var(--text);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass); border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-large { padding: 1.2rem 3rem; font-size: 1.1rem; }

/* ── Hero ────────────────────────────────────────── */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 2rem;
    position: relative; overflow: hidden;
}

.hero::after {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%; filter: blur(80px);
    animation: heroFloat 10s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1000px; text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 50px; margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-badge-dot {
    width: 8px; height: 8px; background: var(--success);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: 5rem; font-weight: 900; line-height: 1.1;
    margin-bottom: 2rem; letter-spacing: -3px;
    font-family: 'Montserrat', sans-serif;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmer 3s linear infinite; background-size: 200% auto;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 1.3rem; color: var(--text-muted);
    max-width: 700px; margin: 0 auto 3rem; line-height: 1.8; font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-cta {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-stats {
    display: flex; gap: 4rem; justify-content: center; margin-top: 5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

.stat-label { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

/* ── About Section ───────────────────────────────── */
.about-section {
    padding: 7rem 2rem 8rem;
    position: relative; overflow: hidden;
    background: var(--secondary);
}

.about-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

.about-section .glow-left {
    position: absolute; top: 30%; left: -10%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    filter: blur(60px); pointer-events: none;
}

.about-section .glow-right {
    position: absolute; bottom: 10%; right: -5%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
    filter: blur(60px); pointer-events: none;
}

.about-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    position: relative; z-index: 2;
}

.about-image-col { position: relative; }

.about-image-main {
    position: relative; border-radius: 28px; overflow: hidden;
    box-shadow: 0 40px 100px rgba(37, 99, 235, 0.18);
}

.about-image-main img {
    width: 100%; height: 580px;
    object-fit: cover; display: block;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-main:hover img { transform: scale(1.05); }

.about-image-main::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.18) 0%, rgba(124,58,237,0.12) 60%, transparent 100%);
    pointer-events: none;
}

.about-year-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 20px; padding: 1.4rem 2rem; color: #fff;
    box-shadow: 0 20px 50px rgba(37,99,235,0.35);
    display: flex; flex-direction: column; align-items: center; gap: 2px; z-index: 3;
}

.about-year-badge .year {
    font-size: 2.2rem; font-weight: 900;
    font-family: 'Montserrat', sans-serif; line-height: 1;
}

.about-year-badge .year-label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 1px; opacity: 0.85; text-transform: uppercase;
}

.about-mini-card {
    position: absolute; top: 30px; right: -30px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 18px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 16px 50px rgba(37,99,235,0.13);
    display: flex; flex-direction: column; gap: 0.9rem;
    min-width: 190px; z-index: 3;
}

.mini-card-row { display: flex; align-items: center; gap: 0.75rem; }

.mini-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}

.mini-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.mini-text span   { font-size: 0.74rem; color: var(--text-muted); }

.about-text-col { display: flex; flex-direction: column; gap: 1.8rem; }

.about-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: var(--accent);
    width: fit-content; backdrop-filter: blur(10px);
}

.about-eyebrow-dot {
    width: 7px; height: 7px; background: var(--success); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.about-headline {
    font-size: clamp(2rem, 2.8vw, 2.8rem); font-weight: 800; line-height: 1.12;
    letter-spacing: -1.5px; font-family: 'Montserrat', sans-serif; color: var(--text);
}

.about-headline .hl {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.about-intro {
    font-size: 1.05rem; line-height: 1.85; color: var(--text);
    padding: 1.2rem 1.5rem; background: var(--glass);
    border: 1px solid var(--glass-border); border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0; backdrop-filter: blur(10px);
}

.about-divider {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-muted);
}

.about-divider::before, .about-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--glass-border);
}

.about-body { display: flex; flex-direction: column; gap: 1rem; }
.about-body p { font-size: 0.97rem; line-height: 1.85; color: var(--text-muted); }
.about-body p strong { color: var(--text); font-weight: 600; }

.about-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }

.about-tag {
    display: flex; align-items: center; gap: 0.45rem;
    padding: 0.55rem 1.1rem; background: var(--glass);
    border: 1px solid var(--glass-border); border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; color: var(--text);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-tag:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}

/* ── Section headers ─────────────────────────────── */
.section-title {
    text-align: center; font-size: 3.5rem; font-weight: 800;
    margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-subtitle {
    text-align: center; font-size: 1.2rem; color: var(--text-muted);
    max-width: 700px; margin: 0 auto 5rem; line-height: 1.8;
}

/* ── Partners — uniform logo grid ───────────────── */
.partners-section {
    padding: 6rem 2rem; text-align: center;
    position: relative; background: var(--primary);
}

.partners-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

.partners-title {
    font-size: 1rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-muted); margin-bottom: 4rem; font-weight: 600;
}

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

/* Every logo cell: fixed height, image fills proportionally */
.partner-logo {
    height: 110px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 1.2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}

.partner-logo::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.07), transparent);
    transition: left 0.6s;
}

.partner-logo:hover::before { left: 100%; }

.partner-logo:hover {
    transform: translateY(-5px); border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(37,99,235,0.15);
}

/* The img inside: constrained to a fixed box, object-fit keeps aspect ratio */
.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img { filter: grayscale(0%); }

/* ── Features / Services ─────────────────────────── */
.features { padding: 8rem 2rem; max-width: 1400px; margin: 0 auto; }

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

.feature-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 3rem; backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 0.8rem;
}

.feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(124,58,237,0.05) 100%);
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent); box-shadow: 0 20px 60px rgba(37,99,235,0.2);
}

.feature-card .feature-icon {
    font-size: 3rem; display: block; margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.feature-card h3 { font-size: 1.5rem; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.feature-card p  { color: var(--text-muted); line-height: 1.8; font-size: 1rem; flex: 1; }

.feature-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.9rem; font-weight: 600; color: var(--accent);
    text-decoration: none; margin-top: 0.5rem;
    transition: gap 0.2s ease;
}

.feature-link:hover { gap: 0.6rem; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-section { padding: 8rem 2rem; background: var(--secondary); position: relative; }
.testimonials-container { max-width: 1400px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 4rem; }

.testimonial-card {
    background: var(--primary); border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(37,99,235,0.15); }

.testimonial-quote { font-size: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 2rem; position: relative; }
.testimonial-quote::before {
    content: '"'; font-size: 5rem; font-family: 'Playfair Display', serif;
    position: absolute; top: -20px; left: -10px; color: var(--accent); opacity: 0.2; line-height: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.2rem;
}
.author-info h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.author-info p  { font-size: 0.9rem; color: var(--text-muted); }
.rating { margin-top: 1rem; color: #fbbf24; font-size: 1.2rem; }

/* ── CTA ─────────────────────────────────────────── */
.cta-section { padding: 8rem 2rem; text-align: center; position: relative; overflow: hidden; }

.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%); filter: blur(80px);
}

.cta-section h2 { font-size: 4rem; font-weight: 900; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif; letter-spacing: -2px; position: relative; z-index: 2; }
.cta-section p { font-size: 1.3rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 3rem; line-height: 1.8; position: relative; z-index: 2; }
.cta-section .btn { position: relative; z-index: 2; }

/* ── Warum NetzRecruiter ─────────────────────────── */
.warum-section {
    padding: 7rem 2rem 8rem;
    background: var(--secondary);
    position: relative; overflow: hidden;
}

.warum-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

/* subtle glow */
.warum-section::after {
    content: ''; position: absolute; top: 40%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    filter: blur(60px); pointer-events: none;
}

.warum-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.warum-header { text-align: center; margin-bottom: 4rem; }

.warum-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800;
    letter-spacing: -2px; font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.8rem;
}

.warum-subtitle {
    font-size: 1.15rem; color: var(--text-muted); line-height: 1.7;
}

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

.warum-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem;
}

.warum-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, rgba(124,58,237,0.04) 100%);
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}

.warum-card:hover::before { opacity: 1; }
.warum-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37,99,235,0.3);
    box-shadow: 0 24px 60px rgba(37,99,235,0.15);
}

/* Middle card gets a gradient accent treatment */
.warum-card--accent {
    background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, rgba(124,58,237,0.06) 100%);
    border-color: rgba(37,99,235,0.2);
}

.warum-card--accent:hover {
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(37,99,235,0.2);
}

.warum-icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    flex-shrink: 0;
}

.warum-icon { font-size: 1.8rem; line-height: 1; }

.warum-card-title {
    font-size: 1.5rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
    color: var(--text); letter-spacing: -0.5px;
}

.warum-card-text {
    font-size: 1rem; line-height: 1.8; color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────── */
footer {
    background: var(--secondary);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-simple {
    max-width: 1000px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    font-size: 1.6rem; font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.footer-logo img {
    height: 28px;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-nav {
    position: static;
    width: auto;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    animation: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center; padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted); font-size: 0.88rem;
}


/* ── Hamburger Menu ──────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger:hover { background: rgba(37, 99, 235, 0.08); }
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.35s;
    pointer-events: none;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0; margin: 0;
}
.mobile-menu ul li a {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s;
    position: relative;
}
.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu ul li a:hover { color: var(--accent); }
.mobile-menu ul li a:hover::after { width: 100%; }
.mobile-menu .mobile-cta { margin-top: 1rem; }

/* ── Scroll Animations ───────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
    .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .about-mini-card { right: 16px; top: 16px; }
    .about-year-badge { left: 16px; bottom: -16px; }
    .about-image-main img { height: 420px; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .warum-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
    .hero { padding: 2rem 1.5rem; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero p { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; padding: 0 1rem; }
    .about-section { padding: 5rem 1.5rem; }
    .about-headline { font-size: 1.8rem; }
    .about-mini-card { position: static; margin-top: 1rem; }
    .about-image-main img { height: 300px; }
    .about-year-badge { position: static; margin-top: 1rem; display: inline-flex; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 4rem 1.5rem; }
    .cta-section h2 { font-size: 2rem; }
    .warum-grid { grid-template-columns: 1fr; }
    .warum-section { padding: 5rem 1.5rem; }
    .footer-nav { gap: 0.3rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; gap: 1rem; }
    .btn-large { width: 100%; }
    .about-tags { gap: 0.5rem; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-nav a { font-size: 0.82rem; }
}


.footer-logo img {
    height: 28px;
    width: auto;
    display: block;
}
.no-map {
  pointer-events: none;
}