/**
 * MP Media Website - Main Stylesheet
 * Apple Glassmorphism + Neon Design
 */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Akzentfarben */
    --cyan: #00f0ff;
    --magenta: #ff00aa;
    --purple: #7b2fff;
    --gold: #ffd700;
    --success: #00ff64;

    /* Hintergründe */
    --bg-dark: #050508;
    --bg-card: #0a0a0f;
    --bg-glass: rgba(15, 15, 25, 0.4);

    /* Text */
    --text: #f0f0f5;
    --text-muted: #6a6a8a;

    /* Glow-Effekte */
    --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.4);
    --glow-magenta: 0 0 40px rgba(255, 0, 170, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 240, 255, 0.06);
    top: -200px;
    right: -200px;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 170, 0.04);
    bottom: -150px;
    left: -150px;
}

.bg-orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(123, 47, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

nav.transparent {
    background: transparent;
    border-bottom: none;
}

nav.scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
}

.nav-logo {
    height: 55px;
    transition: all 0.3s;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}

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

.nav-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-back:hover {
    opacity: 0.7;
}

.nav-back i {
    width: 18px;
    height: 18px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

/* Page Transition */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, backdrop-filter 0.5s;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(20px);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--magenta);
    color: var(--magenta);
    box-shadow: var(--glow-magenta);
    transform: translateY(-4px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 240, 255, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--cyan);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding: 140px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 3px;
}

/* Coming Soon Box */
.coming-soon {
    text-align: center;
    padding: 100px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-icon i {
    width: 40px;
    height: 40px;
    color: var(--cyan);
}

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

.coming-soon h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.coming-soon .btn {
    margin-top: 20px;
}

/* ================================================
   HOMEPAGE - Full Screen Sections
   ================================================ */

/* Scroll Snap Container */
.home-scroll-snap {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

/* Full Screen Sections */
.section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 80px 50px;
}

/* Scroll Navigation */
.scroll-nav {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 0;
    align-items: center;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 240, 255, 0.08);
    backdrop-filter: blur(10px);
    margin: 0 10px;
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.scroll-arrow i {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
    transition: all 0.3s;
}

.scroll-arrow:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    width: 0;
    margin: 0;
    transform: scale(0);
}

/* Section Dots */
.section-dots {
    position: fixed;
    top: 50%;
    right: 50px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    justify-content: center;
    width: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: transparent;
    padding: 0;
}

.dot::before {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.dot:hover::before {
    opacity: 1;
    right: 20px;
}

.dot:hover {
    border-color: var(--cyan);
    transform: scale(1.3);
}

.dot.active {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* ================================================
   HERO SECTION
   ================================================ */

#hero {
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInRight 1s 0.8s forwards;
    position: relative;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.3)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.hero-logo {
    width: 180px;
    margin-bottom: 30px;
    animation: heroFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.3));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.02); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    animation: slideIn 1s forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.3s; color: var(--cyan); }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; color: var(--text); }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; color: var(--magenta); }

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

.cursor {
    color: var(--cyan);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

/* ================================================
   STATS SECTION
   ================================================ */

#stats {
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
}

.stats-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
}

.stats-trust {
    margin-top: 50px;
    padding: 15px 30px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.target-groups {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.target-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.target-badge i {
    width: 16px;
    height: 16px;
    color: var(--cyan);
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.service-card {
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 240, 255, 0.1);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
    border-radius: 16px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.service-icon i {
    width: 30px;
    height: 30px;
    color: var(--cyan);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ================================================
   TECH STACK SECTION
   ================================================ */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 700px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    border-radius: 16px;
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.8);
    text-align: center;
}

.tech-item.visible {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-10px) scale(1.05);
}

.tech-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition: all 0.4s;
}

.tech-item:hover .tech-icon {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.tech-icon i {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.tech-item:hover .tech-icon i {
    color: var(--cyan);
}

.tech-name {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

/* ================================================
   CONTACT SECTION (Homepage)
   ================================================ */

#contact {
    text-align: center;
}

.contact-box {
    max-width: 600px;
    padding: 50px;
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    position: relative;
}

.contact-box::before,
.contact-box::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    pointer-events: none;
    transition: all 0.4s;
}

.contact-box::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 30px 0 0 0;
}

.contact-box::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 30px 0;
}

.contact-box:hover::before,
.contact-box:hover::after {
    border-color: var(--cyan);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-phone,
.contact-email {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--cyan);
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
}

.contact-phone i,
.contact-email i {
    width: 18px;
    height: 18px;
}

.contact-phone:hover,
.contact-email:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.contact-btn {
    margin-top: 25px;
}

/* Footer in Contact Section */
.footer-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-info .footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
}

.footer-info .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.footer-info .footer-links a::before {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s;
}

.footer-info .footer-links a:hover {
    color: var(--cyan);
}

.footer-info .footer-links a:hover::before {
    transform: translateX(4px);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Main Content - mehr Platz rechts für Section-Dots */
    main {
        padding: 120px 20px 60px;
        padding-right: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    /* Kontaktkarte Footer-Links bleiben horizontal */
    .footer-info .footer-links {
        flex-direction: row;
        gap: 20px;
    }

    /* Homepage Sections - mehr Platz rechts für Section-Dots */
    .section {
        padding: 60px 20px 60px 20px;
        padding-right: 40px;
    }

    /* Section Navigation */
    .section-dots {
        right: 10px;
        left: auto;
        top: 50%;
        padding: 0;
        background: transparent;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .scroll-nav {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow i {
        width: 20px;
        height: 20px;
    }

    /* Hero Mobile - Foto UNTER Text und zentriert */
    section#hero.section {
        justify-content: flex-start;
        padding-top: 120px !important;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero-logo {
        width: 120px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-image-wrapper img {
        width: 200px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 14px 30px;
        font-size: 11px;
    }

    /* Stats Mobile */
    .stats-grid {
        gap: 25px;
    }

    .stat-value {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .stats-trust {
        font-size: 12px;
        padding: 12px 20px;
        text-align: center;
    }

    .target-groups {
        gap: 10px;
    }

    .target-badge {
        padding: 8px 15px;
        font-size: 11px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    /* Tech Grid Mobile */
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .tech-item {
        padding: 15px 8px;
        gap: 10px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .tech-icon i {
        width: 24px;
        height: 24px;
    }

    .tech-name {
        font-size: 10px;
        line-height: 1.2;
    }

    /* Contact Mobile */
    .contact-box {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }

    .contact-phone,
    .contact-email {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
