/* ===================================
   XBONE.CH - Premium IT Services
   Custom Stylesheet
   =================================== */

/* CSS Variables - Fonts, Farben von Original beibehalten */
:root {
    /* Farben */
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #2d2d2d;
    --light-gray: #b0b0b0;
    --white: #f5f5f5;
    --orange: #ff6b00;
    --orange-hover: #ff8533;
    --orange-glow: rgba(255, 107, 0, 0.3);

    /* Fonts */
    --font-display: "Orbitron", sans-serif;
    --font-mono: "Share Tech Mono", monospace;
    --font-body: "Rajdhani", sans-serif;

    /* Spacing */
    --section-padding: 6rem 5%;
    --card-radius: 15px;
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

/* Alle Headlines NICHT fett - nur normal */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--orange-glow);
    }
    50% {
        box-shadow: 0 0 30px 15px var(--orange-glow);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px var(--orange-glow);
    }
    50% {
        text-shadow: 0 0 40px var(--orange), 0 0 80px var(--orange-glow);
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10vh) rotate(360deg);
    }
    100% {
        transform: translateY(-120vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* ===================================
   Navigation
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s;
    letter-spacing: 3px;
}

.logo span {
    color: var(--orange);
}

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

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

.nav-links a,
.nav-text {
    font-family: var(--font-mono);
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

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

.nav-text:hover {
    color: var(--orange);
}

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

.nav-links > li > a:hover {
    color: var(--orange);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-gray);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

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

.dropdown-menu a i {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.dropdown-menu a:hover {
    background: var(--gray);
    color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ===================================
   Hero Section - 100vh beibehalten
   =================================== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    background-size: 200% 200%;
    animation: backgroundMove 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/xbonecloudconnect.png") center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite;
    letter-spacing: 5px;
}

.hero-content h1 span {
    color: var(--orange);
}

.hero-content .tagline {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-content .experience {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 3rem;
    font-weight: 600;
}

.cta-button {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--orange);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
    animation: pulse 2.5s ease-in-out infinite;
}

.cta-button:hover {
    background: var(--orange-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--orange-glow);
}

.cta-button i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--orange);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--orange);
    border-radius: 3px;
    animation: float 1.5s ease-in-out infinite;
}

/* ===================================
   Subpage Hero - 40vh mit Hintergrundbild
   =================================== */
.subpage-hero {
    min-height: 40vh;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85)), 
                url("img/xbonedatacenter.png") center/cover no-repeat;
    position: relative;
    margin-top: 70px;
    border-bottom: 1px solid var(--gray);
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.subpage-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 3px;
}

.subpage-hero p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--light-gray);
    line-height: 1.7;
}

/* ===================================
   Section Title
   =================================== */
.section-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--orange);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding);
    background: var(--dark-gray);
    position: relative;
}

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

.service-card {
    background: var(--gray);
    padding: 3rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--gray);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--orange-glow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--orange);
    animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 1.5s;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    font-family: var(--font-body);
    color: var(--light-gray);
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "›";
    font-family: var(--font-mono);
    color: var(--orange);
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.service-badge {
    font-family: var(--font-mono);
    display: inline-block;
    background: var(--orange);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: auto;
}

.service-link {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-link:hover {
    gap: 1rem;
    text-shadow: 0 0 10px var(--orange-glow);
}

.service-link i {
    width: 18px;
    height: 18px;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--black);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.pricing-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

.pricing-card {
    background: var(--gray);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    border: 2px solid var(--gray);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
    transition: left 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--orange-glow);
}

.pricing-card.featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--gray) 0%, rgba(255, 107, 0, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price .currency {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--light-gray);
}

.price .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.price .period {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--light-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    font-family: var(--font-body);
    color: var(--light-gray);
    font-size: 1rem;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--orange);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Inline Link Style für Mail Basic Links */
.pricing-features .inline-link {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.pricing-features .inline-link:hover {
    border-bottom: 1px solid var(--orange);
    text-shadow: 0 0 10px var(--orange-glow);
}

.pricing-note {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 5px;
}

.pricing-button {
    font-family: var(--font-display);
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--orange);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-button:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.pricing-card.featured .pricing-button {
    background: var(--orange);
    color: var(--black);
}

.pricing-card.featured .pricing-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px) scale(1.05);
}

.pricing-footer {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.pricing-footer p {
    font-family: var(--font-mono);
    color: var(--light-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.pricing-footer i {
    color: var(--orange);
    width: 20px;
    height: 20px;
}

/* ===================================
   Datacenters Section - DUNKLER
   =================================== */
.datacenters {
    padding: var(--section-padding);
    background: #0f0f0f;
}

.dc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dc-card {
    background: var(--gray);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray);
}

.dc-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.dc-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.dc-card:hover .dc-card-image img {
    transform: scale(1.15);
}

.dc-badge {
    font-family: var(--font-mono);
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dc-card-content {
    padding: 2rem;
}

.dc-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

.dc-location {
    font-family: var(--font-mono);
    color: var(--orange);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-location i {
    width: 16px;
    height: 16px;
}

.dc-card-content p {
    color: var(--light-gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.dc-feature {
    font-family: var(--font-mono);
    background: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--light-gray);
    transition: all 0.3s;
}

.dc-feature:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
}

/* ===================================
   Parallax Divider
   =================================== */
.parallax-divider {
    height: 350px;
    background: url("img/xboneswissness.png") center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(255, 107, 0, 0.25));
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 5%;
    max-width: 1200px;
}

.parallax-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.parallax-content h2 span {
    color: var(--orange);
}

.parallax-content p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--black);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/xbonedatacenter.png") center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.highlight-box {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: scale(1.15);
}

.highlight-item .number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    animation: glow 3s ease-in-out infinite;
}

.highlight-item:nth-child(2) .number {
    animation-delay: 1s;
}

.highlight-item:nth-child(3) .number {
    animation-delay: 2s;
}

.highlight-item .label {
    font-family: var(--font-mono);
    color: var(--light-gray);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, var(--gray) 49.5%, var(--gray) 50.5%, transparent 50.5%),
        linear-gradient(transparent 49.5%, var(--gray) 49.5%, var(--gray) 50.5%, transparent 50.5%);
    background-size: 50px 50px;
    opacity: 0.08;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 3rem;
}

.contact-terminal {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    background: var(--dark-gray);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27ca40;
}

.terminal-title {
    font-family: var(--font-mono);
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.terminal-body {
    padding: 2rem;
    font-family: var(--font-mono);
    font-size: 1rem;
}

.terminal-line {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.terminal-prompt {
    color: var(--orange);
    margin-right: 0.8rem;
    font-weight: 700;
}

.terminal-command {
    color: var(--white);
}

.terminal-output {
    color: var(--light-gray);
    padding-left: 2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.terminal-output a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.terminal-output a:hover {
    text-decoration: underline;
    text-shadow: 0 0 15px var(--orange-glow);
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--orange);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 5px;
}

.contact-card {
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark-gray) 100%);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--orange), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0.1;
}

.contact-card-inner {
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
}

.contact-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-cta {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--orange);
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-cta:hover {
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 0 40px var(--orange-glow);
    transform: translateY(-3px);
}

.contact-cta i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.contact-cta:hover i {
    transform: translateX(5px);
}

/* ===================================
   Legal Content (Impressum/Datenschutz) - EINFACH
   =================================== */
.legal-content {
    padding: var(--section-padding);
    background: var(--black);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-wrapper strong {
    color: var(--white);
    font-weight: 600;
}

.legal-wrapper a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s;
}

.legal-wrapper a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--orange-glow);
}

.legal-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.legal-wrapper ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-gray);
    font-size: 1.05rem;
}

.legal-wrapper ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 1.3rem;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--black);
    padding: 2.5rem 5%;
    border-top: 1px solid var(--gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-family: var(--font-mono);
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

footer span {
    font-family: var(--font-mono);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .dc-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-grid.two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--gray);
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        border: none;
        background: var(--gray);
        padding: 0.5rem 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-content .experience {
        font-size: 1.1rem;
    }

    .subpage-hero {
        height: auto;
        min-height: 30vh;
        padding: 3rem 5%;
    }

    .subpage-hero h1 {
        font-size: 2rem;
    }

    .subpage-hero p {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    /* Services */
    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 2rem;
    }

    .price .amount {
        font-size: 2.8rem;
    }

    /* Highlights */
    .highlight-box {
        gap: 2.5rem;
    }

    /* Parallax */
    .parallax-divider {
        background-attachment: scroll;
        height: 300px;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    .parallax-content p {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Hero Extra Small */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .subpage-hero h1 {
        font-size: 1.6rem;
    }

    /* Cards */
    .service-card,
    .dc-card-content,
    .pricing-card {
        padding: 1.5rem;
    }

    /* Terminal */
    .terminal-body {
        padding: 1.5rem;
        font-size: 0.85rem;
    }

    /* Pricing */
    .price .amount {
        font-size: 2.5rem;
    }

    .pricing-footer p {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* ===================================
   Contact Form Styles
   =================================== */
.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro p {
    font-family: var(--font-body);
    color: var(--light-gray);
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray);
    padding: 3rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Honeypot - komplett versteckt */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

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

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-group label .required {
    color: var(--orange);
}

.form-group label .optional {
    color: var(--light-gray);
    font-weight: 400;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    background: var(--dark-gray);
    color: var(--white);
    border: 2px solid var(--dark-gray);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--black);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--white);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange);
}

.form-checkbox label {
    font-family: var(--font-body);
    color: var(--light-gray);
    font-size: 1rem;
    cursor: pointer;
    margin: 0;
}

.submit-button {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--orange);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.submit-button i {
    width: 20px;
    height: 20px;
}

.form-note {
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-note i {
    color: var(--orange);
    width: 16px;
    height: 16px;
}

/* Success Message (falls per URL-Parameter übergeben) */
.success-message {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(39, 202, 64, 0.1), rgba(39, 202, 64, 0.05));
    border: 2px solid #27ca40;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1.1rem;
}

.success-message i {
    color: #27ca40;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .form-row.two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}


/* ===================================
   Success Popup Styles
   =================================== */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-popup.x-show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark-gray) 100%);
    border: 2px solid #27ca40;
    border-radius: var(--card-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(39, 202, 64, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.success-popup.x-show .success-popup-content {
    transform: scale(1) translateY(0);
}

.success-popup-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 202, 64, 0.2), transparent);
    transition: left 0.6s;
}

.success-popup.x-show .success-popup-content::before {
    left: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #27ca40;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    width: 80px;
    height: 80px;
}

.success-popup h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.success-popup p {
    font-family: var(--font-body);
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.countdown {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: #27ca40;
    background: rgba(39, 202, 64, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(39, 202, 64, 0.3);
    display: inline-block;
    animation: glow-green 2s ease-in-out infinite alternate;
}

@keyframes glow-green {
    0% {
        box-shadow: 0 0 10px rgba(39, 202, 64, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(39, 202, 64, 0.6), 0 0 40px rgba(39, 202, 64, 0.2);
    }
}

/* Footer Updates */
.footer-links {
    display: flex;
    gap: 2.5rem;
}

/* Subpage Hero - GROSS */
.subpage-hero h1 {
    text-transform: uppercase !important;
    letter-spacing: 6px;
}

/* Pricing Button Text Update */
.pricing-button {
    font-family: var(--font-display);
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--orange);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .success-popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-popup h3 {
        font-size: 1.5rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 95%);
    z-index: 1200;
    background: linear-gradient(135deg, rgba(10,10,10,0.98), rgba(30,30,30,0.98));
    border: 1px solid var(--gray);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    padding: 1.5rem 1.8rem;
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon i {
    width: 34px;
    height: 34px;
    color: var(--orange);
    flex-shrink: 0;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.cookie-text p {
    font-size: 0.98rem;
    color: var(--light-gray);
    line-height: 1.7;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--orange);
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: var(--orange-hover);
    text-shadow: 0 0 12px var(--orange-glow);
    border-bottom-style: solid;
}

.cookie-button {
    margin-left: auto;
    font-family: var(--font-display);
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
	font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 0 25px var(--orange-glow);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.cookie-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--orange-glow);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        padding: 1.2rem 1.2rem;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.75rem;
    }
}